Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.13.0] - 2017-12-20
### Added
- icons for app windows
- possibility to have interface translated
Expand Down Expand Up @@ -169,7 +171,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- resume/pause functionality for reminder
- scripts for creating installers for OS X, Windows, Linux

[Unreleased]: https://github.com/hovancik/stretchly/compare/v0.12.0...HEAD
[Unreleased]: https://github.com/hovancik/stretchly/compare/v0.13.0...HEAD
[0.13.0]: https://github.com/hovancik/stretchly/compare/v0.12.0...v0.13.0
[0.12.0]: https://github.com/hovancik/stretchly/compare/v0.11.0...v0.12.0
[0.11.0]: https://github.com/hovancik/stretchly/compare/v0.10.0...v0.11.0
[0.10.0]: https://github.com/hovancik/stretchly/compare/v0.9.0...v0.10.0
Expand Down
12 changes: 8 additions & 4 deletions app/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,18 @@ function startI18next () {
if (err) {
console.log(err.stack)
}
updateToolTip()
appIcon.setContextMenu(getTrayMenu())
if (appIcon) {
updateToolTip()
appIcon.setContextMenu(getTrayMenu())
}
})
}

i18next.on('languageChanged', function (lng) {
updateToolTip()
appIcon.setContextMenu(getTrayMenu())
if (appIcon) {
updateToolTip()
appIcon.setContextMenu(getTrayMenu())
}
})

function startPowerMonitoring () {
Expand Down
8 changes: 4 additions & 4 deletions app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stretchly",
"version": "0.12.0",
"version": "0.13.0",
"description": "break time reminder app",
"main": "main.js",
"repository": {
Expand All @@ -21,7 +21,7 @@
"homepage": "https://hovancik.net/stretchly",
"dependencies": {
"@paulcbetts/system-idle-time": "^1.0.4",
"i18next": "^10.0.7",
"i18next": "^10.2.1",
"i18next-node-fs-backend": "^1.0.0"
}
}
Loading