Skip to content

Commit

Permalink
🐈 v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
emsk committed Feb 26, 2017
1 parent 69b4d79 commit 24a20ea
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 8 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions bin/pack-all.sh
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion bin/pack-mac.sh
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion bin/pack-win.sh
Original file line number Diff line number Diff line change
@@ -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
Binary file modified examples/notification_osx_10.10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added examples/notification_win_10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed examples/notification_win_7.png
Binary file not shown.
Binary file removed examples/notification_win_8.1.png
Binary file not shown.
Binary file modified examples/redmine_notifier_settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 24a20ea

Please sign in to comment.