diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e3aa2c015..dd2160df11 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.14 - 2016-09-12 + +### Features + +- Allow archive images to configure a certain amount of bytes to be zeroed out from the beginning of the drive when using bmaps. +- Make the "Need help?" link dynamically open the image support url. +- Add `.bmap` support. + +### Fixes + +- Don't clear the drive selection if clicking the "Retry" button. +- Fix "`modal.dismiss` is not a function" exception. +- Prevent `ENOSPC` if the drive capacity is equal to the image size. +- Prevent failed validation due to drive getting auto-mounted in GNU/Linux. +- Fix incorrect estimated entry sizes in certain ZIP archives. +- Show device id if device doesn't have an assigned drive letter in Windows. +- Fix `blkid: command not found` error in certain GNU/Linux distributions. + +### Misc + +- Upgrade `etcher-image-stream` to v4.3.0. +- Upgrade `drivelist` to v3.3.0. +- Improve speed when retrieving archive image metadata. +- Improve image full file name modal tooltip. + ## v1.0.0-beta.13 - 2016-08-05 ### Features diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 2debc640e2..346ed56e4a 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "etcher", - "version": "1.0.0-beta.13", + "version": "1.0.0-beta.14", "dependencies": { "abbrev": { "version": "1.0.9", @@ -4777,11 +4777,6 @@ "from": "sudo-prompt@6.1.0", "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-6.1.0.tgz" }, - "sumchecker": { - "version": "1.1.0", - "from": "sumchecker@>=1.1.0 <2.0.0", - "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-1.1.0.tgz" - }, "supports-color": { "version": "2.0.0", "from": "supports-color@>=2.0.0 <3.0.0", diff --git a/package.json b/package.json index 62dfa7c192..059c5c61ad 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "etcher", "displayName": "Etcher", - "version": "1.0.0-beta.13", + "version": "1.0.0-beta.14", "main": "lib/start.js", "description": "An image flasher with support for Windows, OS X and GNU/Linux.", "homepage": "https://github.com/resin-io/etcher", @@ -45,7 +45,7 @@ "builder": { "win": { "title": "Etcher", - "version": "v1.0.0-beta.13", + "version": "v1.0.0-beta.14", "publisher": "Resin.io", "icon": "assets/icon.ico", "verbosity": 1 diff --git a/screenshot.png b/screenshot.png index 2258a67f09..e669a47ef6 100644 Binary files a/screenshot.png and b/screenshot.png differ