Skip to content

Commit 3834435

Browse files
authored
Merge pull request #230 from hovancik/release/0.16.0
Release 0.16.0
2 parents 60fe08e + f210363 commit 3834435

File tree

6 files changed

+1619
-1853
lines changed

6 files changed

+1619
-1853
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
8+
9+
## [0.16.0] - 2018-03-17
810
### Added
911
- Russian translations for interface
1012

1113
### Changed
1214
- upper limit of microbreak duration set to 60 seconds
15+
- download link from github's releases to hovancik.net/stretchly/downloads
1316

1417
### Fixed
1518
- notifications not working on latest Windows 10
@@ -211,8 +214,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
211214
- resume/pause functionality for reminder
212215
- scripts for creating installers for OS X, Windows, Linux
213216

214-
[Unreleased]: https://github.com/hovancik/stretchly/compare/v0.15.0...HEAD
215-
[0.14.0]: https://github.com/hovancik/stretchly/compare/v0.13.0...v0.15.0
217+
[Unreleased]: https://github.com/hovancik/stretchly/compare/v0.16.0...HEAD
218+
[0.15.0]: https://github.com/hovancik/stretchly/compare/v0.15.0...v0.16.0
219+
[0.14.0]: https://github.com/hovancik/stretchly/compare/v0.14.0...v0.15.0
216220
[0.13.0]: https://github.com/hovancik/stretchly/compare/v0.13.0...v0.14.0
217221
[0.13.0]: https://github.com/hovancik/stretchly/compare/v0.12.0...v0.13.0
218222
[0.12.0]: https://github.com/hovancik/stretchly/compare/v0.11.0...v0.12.0

app/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stretchly",
3-
"version": "0.15.0",
3+
"version": "0.16.0",
44
"description": "break time reminder app",
55
"main": "main.js",
66
"repository": {
@@ -21,7 +21,7 @@
2121
"homepage": "https://hovancik.net/stretchly",
2222
"dependencies": {
2323
"@paulcbetts/system-idle-time": "^1.0.4",
24-
"i18next": "^10.4.1",
24+
"i18next": "^10.5.1",
2525
"i18next-node-fs-backend": "^1.0.0"
2626
}
2727
}

app/process.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ function notifyNewVersion () {
3636
let notification = new Notification('stretchly', {
3737
body: i18next.t('process.newVersionAvailable')
3838
})
39-
notification.onclick = () => shell.openExternal('https://github.com/hovancik/stretchly/releases')
39+
notification.onclick = () => shell.openExternal('https://hovancik.net/stretchly/downloads')
4040
}

0 commit comments

Comments
 (0)