diff --git a/CHANGELOG.md b/CHANGELOG.md index fd64507..4ac062f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Change Log +## 0.7.0 (2016-09-10) + +### Production + +* Enable to store a lot of settings +* Change timing of clearing sub notification +* Update animated GIF of Windows installer +* Fix whitespace in the settings window title +* Fix redundant save message +* Change CSS properties in alphabetical order +* Update to Electron 1.3.5 +* Update notie dependency to 3.9.4 +* Update node-notifier dependency to ^4.6.1 + +### Development + +* Add version to suffix of installer filename +* Update electron-prebuilt dependency to 1.3.5 +* Update electron-builder dependency to ~6.6.1 +* Update spectron dependency to ~3.3.0 +* Update mocha dependency to ^3.0.2 +* Update eslint dependency to ^3.5.0 +* Update csslint dependency to ^1.0.2 +* Update textlint dependency to ^7.1.1 + ## 0.6.0 (2016-07-10) ### Production diff --git a/app/package.json b/app/package.json index ea351dc..5c32af7 100644 --- a/app/package.json +++ b/app/package.json @@ -1,7 +1,7 @@ { "name": "redmine-notifier", "productName": "Redmine Notifier", - "version": "0.6.0", + "version": "0.7.0", "description": "Redmine Notifier", "main": "main.js", "repository": { diff --git a/bin/pack-mac.sh b/bin/pack-mac.sh index ca1f1e8..211dc18 100755 --- a/bin/pack-mac.sh +++ b/bin/pack-mac.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash cd $(dirname $0)/.. $(npm bin)/build --mac --x64 -mv './dist/mac/Redmine Notifier-0.6.0.dmg' ./dist/mac/RedmineNotifierSetup-0.6.0.dmg +mv './dist/mac/Redmine Notifier-0.7.0.dmg' ./dist/mac/RedmineNotifierSetup-0.7.0.dmg diff --git a/bin/pack-win.sh b/bin/pack-win.sh index b2613c6..1bea7d7 100755 --- a/bin/pack-win.sh +++ b/bin/pack-win.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash cd $(dirname $0)/.. $(npm bin)/build --win --x64 -mv './dist/win/Redmine Notifier Setup 0.6.0.exe' ./dist/win/RedmineNotifierSetup-0.6.0.exe +mv './dist/win/Redmine Notifier Setup 0.7.0.exe' ./dist/win/RedmineNotifierSetup-0.7.0.exe diff --git a/examples/redmine_notifier_settings.png b/examples/redmine_notifier_settings.png index 3a6fdf9..505b838 100644 Binary files a/examples/redmine_notifier_settings.png and b/examples/redmine_notifier_settings.png differ diff --git a/package.json b/package.json index 2e13b1e..26062a2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "redmine-notifier", - "version": "0.6.0", + "version": "0.7.0", "scripts": { "start": "electron ./app/main.js", "prepare": "./bin/prepare.sh",