diff --git a/CHANGELOG.md b/CHANGELOG.md index ff9e18b9..d3b8adcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,44 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## v1.1.0 - 2017-07-20 + +### Features + +- Add image name, drive name, and icon to OS notifications +- Add support for `.sdcard` images +- Start publishing RPM packages +- Generate single-binary portable installers on Windows +- Show friendlier error dialogs when opening an image results in an error +- Generate one-click Windows NSIS installers +- Show the application version in the WebView banners +- Show a warning message if the selected image has no partition table +- Make use of `pkg` to package the Etcher CLI +- Send anonymous analytics about package types +- Minor style improvements to the fallback success page banner +- Turn the update notifier modal into a native dialog + +### Fixes + +- Fix "You don't have access to this resource" error at startup when behind a firewall +- Fix `UNABLE_TO_VERIFY_LEAF_SIGNATURE` error at startup when behind a proxy +- Reset webview after navigating away from the success screen +- Fix occasional increased CPU usage because of perl regular expression in macOS +- Don't install to `C:\Program Files (x86)` on 64-bit Windows systems +- Fix "file is not accessible" error when flashing an image that lives inside a directory whose name is UTF-16 encoded on Windows. +- Fix various interrelated Windows `.bat` spawning issues +- Fix 0.0 GB Windows drive detection issues +- Cleanup drive detection temporary scripts in GNU/Linux and macOS +- Ensure no analytics events are sent if error reporting is disabled +- Retry various times on `EAGAIN` when spawning drive scanning scripts +- Don't break up size numbers in the drive selector + +### Misc + +- Remove "Advanced" settings subtitle +- Remove support for the `ETCHER_DISABLE_UPDATES` environment variable +- Swap speed and time below the flashing progress bar + ## v1.0.0 - 2017-05-12 ### Features diff --git a/Makefile b/Makefile index 4865be75..c51f15f2 100644 --- a/Makefile +++ b/Makefile @@ -201,9 +201,6 @@ define execute-command endef -CHANGELOG.md: - $(NPX) versionist - $(BUILD_DIRECTORY): mkdir $@ @@ -358,12 +355,16 @@ TARGETS = \ sanity-checks \ clean \ distclean \ + changelog \ package-electron \ package-cli \ cli-develop \ installers-all \ electron-develop +changelog: + $(NPX) versionist + package-electron: TARGET_ARCH=$(TARGET_ARCH) $(NPX) build --dir $(ELECTRON_BUILDER_OPTIONS) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index bc05073a..4eb96046 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "etcher", - "version": "1.0.0", + "version": "1.1.0", "dependencies": { "@types/angular": { "version": "1.6.17", diff --git a/package.json b/package.json index ddc6609c..722bcc35 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "etcher", "displayName": "Etcher", - "version": "1.0.0", + "version": "1.1.0", "packageType": "local", "updates": { "enabled": true, diff --git a/screenshot.png b/screenshot.png index 23a3853f..945e18a3 100644 Binary files a/screenshot.png and b/screenshot.png differ