Skip to content

Commit 4f028a0

Browse files
authored
Merge pull request #162 from hovancik/release/0.13.0
Release 0.13.0
2 parents e87dfa7 + 808de12 commit 4f028a0

File tree

6 files changed

+1041
-1257
lines changed

6 files changed

+1041
-1257
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ 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.13.0] - 2017-12-20
810
### Added
911
- icons for app windows
1012
- possibility to have interface translated
@@ -169,7 +171,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
169171
- resume/pause functionality for reminder
170172
- scripts for creating installers for OS X, Windows, Linux
171173

172-
[Unreleased]: https://github.com/hovancik/stretchly/compare/v0.12.0...HEAD
174+
[Unreleased]: https://github.com/hovancik/stretchly/compare/v0.13.0...HEAD
175+
[0.13.0]: https://github.com/hovancik/stretchly/compare/v0.12.0...v0.13.0
173176
[0.12.0]: https://github.com/hovancik/stretchly/compare/v0.11.0...v0.12.0
174177
[0.11.0]: https://github.com/hovancik/stretchly/compare/v0.10.0...v0.11.0
175178
[0.10.0]: https://github.com/hovancik/stretchly/compare/v0.9.0...v0.10.0

app/main.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,18 @@ function startI18next () {
6363
if (err) {
6464
console.log(err.stack)
6565
}
66-
updateToolTip()
67-
appIcon.setContextMenu(getTrayMenu())
66+
if (appIcon) {
67+
updateToolTip()
68+
appIcon.setContextMenu(getTrayMenu())
69+
}
6870
})
6971
}
7072

7173
i18next.on('languageChanged', function (lng) {
72-
updateToolTip()
73-
appIcon.setContextMenu(getTrayMenu())
74+
if (appIcon) {
75+
updateToolTip()
76+
appIcon.setContextMenu(getTrayMenu())
77+
}
7478
})
7579

7680
function startPowerMonitoring () {

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.12.0",
3+
"version": "0.13.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.0.7",
24+
"i18next": "^10.2.1",
2525
"i18next-node-fs-backend": "^1.0.0"
2626
}
2727
}

0 commit comments

Comments
 (0)