diff --git a/CHANGELOG.md b/CHANGELOG.md index 5137f4c537..4b1ddae2a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ 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.17 - 2016-11-28 + +### Fixes + +- Fix command line arguments not interpreted correctly when running the CLI with a custom named NodeJS binary. +- Wrap drive names and descriptions in the drive selector widget. +- Allow the user to press ESC to cancel a modal dialog. +- Fix "Can't set the flashing state when not flashing" error. +- Fix writing process remaining alive after the GUI is closed. +- Check available permissions in the CLI early on. +- Fix `this.log is not a function` error when clicking "flash again". +- Fix duplicate drives in Windows. +- Fix drive scanning exceptions on GNU/Linux systems with `net.ifnames` enabled. +- Fix `0x80131700` error when scanning drives on Windows. +- Fix internal SDCard drive descriptions. +- Fix unmount issues in GNU/Linux and OS Xwhen paths contain spaces. +- Fix "Not Enough Space" error when flashing unaligned images. +- Fix `at least one volume could not be unmounted` error in OS X. + ## v1.0.0-beta.16 - 2016-10-28 ### Features diff --git a/package.json b/package.json index e2e52a47e7..6c693d47b9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "etcher", "displayName": "Etcher", - "version": "1.0.0-beta.16", + "version": "1.0.0-beta.17", "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.", @@ -48,7 +48,7 @@ "builder": { "win": { "title": "Etcher", - "version": "v1.0.0-beta.16", + "version": "v1.0.0-beta.17", "publisher": "Resin.io", "icon": "assets/icon.ico", "verbosity": 1 diff --git a/screenshot.png b/screenshot.png index 44b2d87d83..a84fdedf1a 100644 Binary files a/screenshot.png and b/screenshot.png differ