diff --git a/CHANGELOG.md b/CHANGELOG.md index ed031a4..3e2fa34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Change Log +## 0.8.0 (2017-02-26) + +### Production + +* Fix bug that closed issues are not fetched +* Fix bug that more than 25 issues are not fetched at once +* Remove small terminal icon in main notification for macOS +* Change icon in main notification for Windows +* Add `About Redmine Notifier` menu +* Change style of text fields +* Change app ID +* Update to Electron 1.4.15 +* Update notie dependency to 3.9.5 +* Update node-notifier dependency to 5.0.2 + +### Development + +* Add `postinstall` task +* Add `clean` task +* Remove redundant `build` task +* Use yarn instead of npm +* Use ava instead of mocha, chai, and chai-as-promised +* Use xo instead of eslint +* Use stylelint instead of csslint +* Update electron-builder dependency to 14.4.0 +* Update spectron dependency to ~3.4.0 +* Update textlint dependency to ^7.2.2 +* Update to Node.js 6 on Travis CI + ## 0.7.1 (2016-09-11) ### Production diff --git a/README.md b/README.md index 6740202..209ac9f 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,7 @@ The number of issues that were updated after previous fetch is shown in parenthe Also, the subject is shown only about the latest issue. ![Notification Mac 10.10](examples/notification_osx_10.10.png?raw=true) -![Notification Win 8.1](examples/notification_win_8.1.png?raw=true) -![Notification Win 7](examples/notification_win_7.png?raw=true) +![Notification Win 10](examples/notification_win_10.png?raw=true) ## Sub Notifications diff --git a/app/package.json b/app/package.json index c3c7df1..7b60327 100644 --- a/app/package.json +++ b/app/package.json @@ -1,7 +1,7 @@ { "name": "redmine-notifier", "productName": "Redmine Notifier", - "version": "0.7.1", + "version": "0.8.0", "description": "Redmine Notifier", "main": "main.js", "repository": { diff --git a/bin/pack-all.sh b/bin/pack-all.sh index bdf9ee1..d3d0418 100755 --- a/bin/pack-all.sh +++ b/bin/pack-all.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash cd $(dirname $0)/.. $(yarn bin)/build --mac --win --x64 -mv './dist/mac/Redmine Notifier-0.7.1.dmg' ./dist/mac/RedmineNotifierSetup-0.7.1.dmg -mv './dist/win/Redmine Notifier Setup 0.7.1.exe' ./dist/win/RedmineNotifierSetup-0.7.1.exe +mv './dist/mac/Redmine Notifier-0.8.0.dmg' ./dist/mac/RedmineNotifierSetup-0.8.0.dmg +mv './dist/win/Redmine Notifier Setup 0.8.0.exe' ./dist/win/RedmineNotifierSetup-0.8.0.exe diff --git a/bin/pack-mac.sh b/bin/pack-mac.sh index 7d8cbf6..9362008 100755 --- a/bin/pack-mac.sh +++ b/bin/pack-mac.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash cd $(dirname $0)/.. $(yarn bin)/build --mac --x64 -mv './dist/mac/Redmine Notifier-0.7.1.dmg' ./dist/mac/RedmineNotifierSetup-0.7.1.dmg +mv './dist/mac/Redmine Notifier-0.8.0.dmg' ./dist/mac/RedmineNotifierSetup-0.8.0.dmg diff --git a/bin/pack-win.sh b/bin/pack-win.sh index ff11aef..da58f60 100755 --- a/bin/pack-win.sh +++ b/bin/pack-win.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash cd $(dirname $0)/.. $(yarn bin)/build --win --x64 -mv './dist/win/Redmine Notifier Setup 0.7.1.exe' ./dist/win/RedmineNotifierSetup-0.7.1.exe +mv './dist/win/Redmine Notifier Setup 0.8.0.exe' ./dist/win/RedmineNotifierSetup-0.8.0.exe diff --git a/examples/notification_osx_10.10.png b/examples/notification_osx_10.10.png index ee67e81..3775f3d 100644 Binary files a/examples/notification_osx_10.10.png and b/examples/notification_osx_10.10.png differ diff --git a/examples/notification_win_10.png b/examples/notification_win_10.png new file mode 100644 index 0000000..53a5475 Binary files /dev/null and b/examples/notification_win_10.png differ diff --git a/examples/notification_win_7.png b/examples/notification_win_7.png deleted file mode 100644 index fac6a57..0000000 Binary files a/examples/notification_win_7.png and /dev/null differ diff --git a/examples/notification_win_8.1.png b/examples/notification_win_8.1.png deleted file mode 100644 index e2565c0..0000000 Binary files a/examples/notification_win_8.1.png and /dev/null differ diff --git a/examples/redmine_notifier_settings.png b/examples/redmine_notifier_settings.png index 505b838..b243172 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 f7e759b..394b900 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "redmine-notifier", - "version": "0.7.1", + "version": "0.8.0", "scripts": { "start": "electron ./app/main.js", "clean": "./bin/clean.sh",