Skip to content

Commit 2e161f9

Browse files
authored
Merge pull request #1392 from hovancik/release
Release 1.15
2 parents 841b98d + 0bb9fe2 commit 2e161f9

File tree

11 files changed

+39
-19
lines changed

11 files changed

+39
-19
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ body:
1313
label: Version
1414
description: We only support the latest version. Find your version number at `Preferences` - `About`.
1515
options:
16-
- label: I'm using version 1.14.1
16+
- label: I'm using version 1.15.0
1717
required: false
1818
- type: checkboxes
1919
id: known-issues

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ body:
1313
label: Version
1414
description: We only support the latest version. Find your version number at `Preferences` - `About`.
1515
options:
16-
- label: I'm using version 1.14.1
16+
- label: I'm using version 1.15.0
1717
required: false
1818
- type: checkboxes
1919
id: open-requests

.github/workflows/arm-build.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ jobs:
1313
runs-on: buildjet-2vcpu-ubuntu-2204-arm
1414
steps:
1515
- uses: actions/checkout@v3
16-
- uses: actions/setup-python@v4
17-
with:
18-
python-version: '3.11'
1916
- uses: actions/setup-node@v3
2017
with:
2118
node-version: '18.17.1'

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
with:
2626
node-version: '18.17.1'
2727
- run: npm install npm@9 -g
28-
- run: npm install npm -g
2928
- run: npm install
3029
- run: node_modules/.bin/electron-builder build
3130
env:

.github/workflows/snap-build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,10 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v3
14-
- uses: actions/setup-python@v4
15-
with:
16-
python-version: '3.11'
1714
- uses: actions/setup-node@v3
1815
with:
1916
node-version: '18.17.1'
20-
- run: npm install -g npm
17+
- run: npm install -g npm@9
2118
- run: npm install
2219
- run: node_modules/.bin/electron-builder --linux snap --publish=never
2320
env:

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +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-
### Fixed
9-
- start at login for Windows Store version (not sure whether successfuly)
108

9+
## [1.15.0] - 2023-11-11
1110
### Added
1211
- new end-of-the-break sound
1312
- both left and right click on tray opens menu (Windows)
@@ -20,6 +19,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2019
## Changed
2120
- updated many translations
2221

22+
### Fixed
23+
- improve Do Not Disturb detection
24+
- start at login for Windows Store version (not sure whether successfully)
25+
2326
## [1.14.1] - 2023-06-04
2427
### Added
2528
- advanced option to not show menubar (tray) icon
@@ -728,7 +731,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
728731
- resume/pause functionality for reminder
729732
- scripts for creating installers for OS X, Windows, Linux
730733

731-
[Unreleased]: https://github.com/hovancik/stretchly/compare/v1.14.1...HEAD
734+
[Unreleased]: https://github.com/hovancik/stretchly/compare/v1.15.0...HEAD
735+
[1.15.0]: https://github.com/hovancik/stretchly/compare/v1.14.1...v1.15.0
732736
[1.14.1]: https://github.com/hovancik/stretchly/compare/v1.14.0...v1.14.1
733737
[1.14.0]: https://github.com/hovancik/stretchly/compare/v1.13.1...v1.14.0
734738
[1.13.1]: https://github.com/hovancik/stretchly/compare/v1.13.0...v1.13.1

app/package-lock.json

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

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Stretchly",
3-
"version": "1.14.1",
3+
"version": "1.15.0",
44
"description": "The break time reminder app",
55
"main": "main.js",
66
"repository": {

net.hovancik.Stretchly.metainfo.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,29 @@
3636
</screenshot>
3737
</screenshots>
3838
<releases>
39+
<release version="1.15.0" date="2023-11-11">
40+
<description>
41+
<p>Added</p>
42+
<ul>
43+
<li>new end-of-the-break sound</li>
44+
<li>both left and right click on tray opens menu (Windows)</li>
45+
<li>double click on tray opens Preferences (Windows)</li>
46+
<li>Vietnamese translations</li>
47+
<li>reset breaks shortcut (advanced option)</li>
48+
<li>skip to the next break shortcut (advanced option)</li>
49+
<li>respect Do Not Disturb on Linux distros (KDE, XFCE, GNOME)</li>
50+
</ul>
51+
<p>Fixed</p>
52+
<ul>
53+
<li>improve Do Not Disturb detection</li>
54+
<li>start at login for Windows Store version (not sure whether successfuly)</li>
55+
</ul>
56+
<p>Changed</p>
57+
<ul>
58+
<li>updated many translations</li>
59+
</ul>
60+
</description>
61+
</release>
3962
<release version="1.14.1" date="2023-06-04">
4063
<description>
4164
<p>Added</p>

package-lock.json

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

0 commit comments

Comments
 (0)