mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-19 01:06:36 +00:00
v1.1.0
Signed-off-by: Juan Cruz Viotti <jv@jviotti.com>
This commit is contained in:
parent
a19b0e028f
commit
1563a2392d
38
CHANGELOG.md
38
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
|
||||
|
7
Makefile
7
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)
|
||||
|
||||
|
2
npm-shrinkwrap.json
generated
2
npm-shrinkwrap.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "etcher",
|
||||
"version": "1.0.0",
|
||||
"version": "1.1.0",
|
||||
"dependencies": {
|
||||
"@types/angular": {
|
||||
"version": "1.6.17",
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "etcher",
|
||||
"displayName": "Etcher",
|
||||
"version": "1.0.0",
|
||||
"version": "1.1.0",
|
||||
"packageType": "local",
|
||||
"updates": {
|
||||
"enabled": true,
|
||||
|
BIN
screenshot.png
BIN
screenshot.png
Binary file not shown.
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 101 KiB |
Loading…
x
Reference in New Issue
Block a user