diff --git a/CHANGELOG.md b/CHANGELOG.md index 37c59ed3..f3794f7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,35 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## v1.0.0-rc.1 - 2017-04-10 + +### Features + +- Add the un-truncated drive description to the selected drive step tooltip. +- Prevent flashing an image that is larger than the drive with the CLI. + +### Fixes + +- Prevent progress button percentage to exceed 100%. +- Don't print stack traces by default in the CLI. +- Prevent blank application when sending SIGINT on GNU/Linux and macOS. +- Fix unmounting freezing in macOS. +- Fix GNU/Linux udev error when `net.ifnames` is set. +- Fix `ENOSPC` image alignment errors. +- Fix errors when unplugging drives exactly when the drive scanning scripts are running. +- Fix several unmount related issues in all platforms. +- Fix "rawr i'm a dinosaur" bzip2 error. + +### Misc + +- Make errors more user friendly throughout the application. +- Don't report "invalid archive" errors to TrackJS. +- Stop drive scanning loop if an error occurs. +- Don't include user paths in Mixpanel analytics events. +- Provide a user friendly error message when no polkit authentication agent is available on the system. +- Show friendly drive name instead of device name in the main screen. +- Start reporting errors to Sentry instead of to TrackJS. + ## v1.0.0-beta.19 - 2017-02-24 ### Features diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index b925071f..6dd946d2 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "etcher", - "version": "1.0.0-beta.19", + "version": "1.0.0-rc.1", "dependencies": { "abbrev": { "version": "1.1.0", diff --git a/package.json b/package.json index 520a8ad4..c0441619 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "etcher", "displayName": "Etcher", - "version": "1.0.0-beta.19", + "version": "1.0.0-rc.1", "main": "lib/start.js", "description": "Flash OS images to SD cards & USB drives, safely and easily.", "productDescription": "Etcher is a powerful OS image flasher built with web technologies to ensure flashing an SDCard or USB drive is a pleasant and safe experience. It protects you from accidentally writing to your hard-drives, ensures every byte of data was written correctly and much more.", @@ -51,7 +51,7 @@ "builder": { "win": { "title": "Etcher", - "version": "v1.0.0-beta.19", + "version": "v1.0.0-rc.1", "publisher": "Resin.io", "icon": "assets/icon.ico", "verbosity": 1 diff --git a/screenshot.png b/screenshot.png index e8ee1856..cb9f8da1 100644 Binary files a/screenshot.png and b/screenshot.png differ