diff --git a/CHANGELOG.md b/CHANGELOG.md index c2e1f6bc36..652e58cc20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,31 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [v1.0.0-beta.10] - 2016-06-27 + +### Added + +- Add support for `dsk` images. +- Add documentation for the Etcher CLI. +- Add a GitHub issue template. + +### Changed + +- Only elevate the writer process instead of the whole application. +- Fix an error that prevented an AppImage from being directly ran as `root`. +- Open DevTools in "undocked" mode by default. +- Make Etcher CLI `--robot` option output parseable JSON strings. +- Ensure we pass the correct argument types to `electron.dialog.showErrorBox()`. +- Make sure a drive is instantly deselected if its not available anymore. +- Don't re-check for updates when navigating back to the main screen. +- Emit window progress even when not on the main screen. +- Improve aliasing of the striped progress button. +- Fix `EPERM` errors on Windows. + +### Removed + +- Remove application wide elevation. + ## [v1.0.0-beta.9] - 2016-06-20 ### Changed @@ -162,6 +187,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Fix broken state when going to settings from the success screen. - Fix `Cannot read property 'length' of undefined` frequent issue. +[v1.0.0-beta.10]: https://github.com/resin-io/etcher/compare/v1.0.0-beta.9...v1.0.0-beta.10 [v1.0.0-beta.9]: https://github.com/resin-io/etcher/compare/v1.0.0-beta.8...v1.0.0-beta.9 [v1.0.0-beta.8]: https://github.com/resin-io/etcher/compare/v1.0.0-beta.7...v1.0.0-beta.8 [v1.0.0-beta.7]: https://github.com/resin-io/etcher/compare/v1.0.0-beta.6...v1.0.0-beta.7 diff --git a/package.json b/package.json index b1a23f8994..8dac9cb299 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "etcher", "displayName": "Etcher", - "version": "1.0.0-beta.9", + "version": "1.0.0-beta.10", "main": "lib/start.js", "description": "An image flasher with support for Windows, OS X and GNU/Linux.", "homepage": "https://github.com/resin-io/etcher", @@ -43,7 +43,7 @@ "builder": { "win": { "title": "Etcher", - "version": "v1.0.0-beta.9", + "version": "v1.0.0-beta.10", "publisher": "Resin.io", "icon": "assets/icon.ico", "verbosity": 1 diff --git a/screenshot.png b/screenshot.png index 1f6f02d1b4..b8263c24f8 100644 Binary files a/screenshot.png and b/screenshot.png differ