Skip to content

Commit 64f80a0

Browse files
authored
Release 0.19.0 (#358)
1 parent 41f2cde commit 64f80a0

13 files changed

+647
-3843
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.19.0] - 2019-02-10
810
### Changed
911
- upper limit of microbreak duration set to 900 seconds (15 minutes)
1012
- Italian translations updated
@@ -266,7 +268,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
266268
- resume/pause functionality for reminder
267269
- scripts for creating installers for OS X, Windows, Linux
268270

269-
[Unreleased]: https://github.com/hovancik/stretchly/compare/v0.18.0...HEAD
271+
[Unreleased]: https://github.com/hovancik/stretchly/compare/v0.19.0...HEAD
272+
[0.19.0]: https://github.com/hovancik/stretchly/compare/v0.18.0...v0.19.0
270273
[0.18.0]: https://github.com/hovancik/stretchly/compare/v0.17.0...v0.18.0
271274
[0.17.0]: https://github.com/hovancik/stretchly/compare/v0.16.0...v0.17.0
272275
[0.16.0]: https://github.com/hovancik/stretchly/compare/v0.15.0...v0.16.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Every 30 minutes, it displays a window containing an idea for a longer 5 minute
1717

1818
<img src="https://raw.githubusercontent.com/hovancik/stretchly/master/stretchly-break.png" height="340">
1919

20-
The user gets notified 30 seconds before each break to be able to prepare to pause the work.
20+
User gets notified 30 seconds before break (and 10 seconds before microbreak) to be able to prepare to pause the work.
2121

2222
<img src="https://raw.githubusercontent.com/hovancik/stretchly/master/stretchly-notification.png" height="90">
2323

@@ -55,7 +55,7 @@ Microbreaks and breaks can be customized:
5555
- you can set the break window to be fullscreen
5656
- you can disable (micro)break ideas
5757
- you can disable pre-(micro)break notifications
58-
- you can disable (micro)break notification sounds
58+
- you can disable notification sounds
5959
- you can disable monitoring of system idle time for natural breaks (when user leaves and after return idle time is greater then break duration, *stretchly* will reset breaks)
6060
- you can disable monitoring of DND (Do Not Disturb) mode on MacOS and Windows (breaks are not shown in DND mode)
6161
- you can disable the display of breaks on all of your monitors

app/images/tutorial/settings-1.png

-31.7 KB
Loading

app/images/tutorial/settings-2.png

-34.5 KB
Loading

app/images/tutorial/settings-3.png

-19.5 KB
Loading

app/locales/sk.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
"monitorIdleTime": "monitorovať neaktívny čas pre prirodzené prestávky",
105105
"monitorDnd": "monitorovať režim Nerušiť",
106106
"showOnAllScreens": "prestávky na každej obrazovke",
107-
"silentNotifications": "silent notifications",
107+
"silentNotifications": "tiché notifikácie",
108108
"useMonochromeTrayIcon": "použiť monochromatickú ikonu",
109109
"language": "jazyk",
110110
"resetToDefaults": "obnoviť pôvodné nastavenia"

app/package-lock.json

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

app/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stretchly",
3-
"version": "0.18.0",
3+
"version": "0.19.0",
44
"description": "break time reminder app",
55
"main": "main.js",
66
"repository": {
@@ -21,10 +21,10 @@
2121
"homepage": "https://hovancik.net/stretchly",
2222
"dependencies": {
2323
"@meetfranz/electron-notification-state": "^1.0.0",
24-
"@paulcbetts/system-idle-time": "^1.0.4",
25-
"i18next": "^11.9.1",
26-
"i18next-node-fs-backend": "^2.1.0",
27-
"moment": "^2.22.2"
24+
"@paulcbetts/system-idle-time": "^1.0.5",
25+
"i18next": "^14.1.1",
26+
"i18next-node-fs-backend": "^2.1.1",
27+
"moment": "^2.24.0"
2828
},
2929
"devDependencies": {}
3030
}

0 commit comments

Comments
 (0)