Skip to content

Commit

Permalink
Adds new end-of-break sound
Browse files Browse the repository at this point in the history
  • Loading branch information
hovancik committed Nov 4, 2023
1 parent a941426 commit 862c53d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- start at login for Windows Store version (not sure whether successfuly)

### Added
- new end-of-the-break sound
- both left and right click on tray opens menu (Windows)
- double click on tray opens Preferences (Windows)
- adds Vietnamese translations
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,7 @@ Sounds used in this application are listed [here](http://freesound.org/people/ho
- `wind chime` by [GnoteSoundz](http://freesound.org/people/GnoteSoundz/), available under the [Creative Commons 0 License](http://creativecommons.org/publicdomain/zero/1.0/).
- `tic toc` by [magundah14](http://freesound.org/people/magundah14/), available under the [Creative Commons 0 License](http://creativecommons.org/publicdomain/zero/1.0/).
- `silence` by [parcodeisuoni](http://freesound.org/people/parcodeisuoni/), available under the [Attribution License](http://creativecommons.org/licenses/by/3.0/).
- `reverence` by Seemant Chandra

#### Fonts credits
This app uses [Noto Sans](https://fonts.google.com/specimen/Noto+Sans) fonts licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0).
Expand Down
Binary file added app/audio/reverie.wav
Binary file not shown.
6 changes: 3 additions & 3 deletions app/css/preferences.css
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,14 @@ body[dir=rtl] .theme > :nth-child(10) {
text-align: left
}

.theme > :nth-child(16) {
.theme > :nth-child(17) {
grid-column: 1/2;
grid-row: 14/17;
padding: 0 16px;
text-align: right;
}

body[dir=rtl] .theme > :nth-child(16) {
body[dir=rtl] .theme > :nth-child(17) {
text-align: left
}

Expand Down Expand Up @@ -305,7 +305,7 @@ body[dir=rtl] .about > :nth-child(1) > div > span {
'Noto Sans CJK KR Light',
'Noto Sans Devanagari Light',
'Noto Sans Gujarati Light', 'Noto Sans Gurmukhi Light',
'Noto Sans JP Light', 'Noto Sans Hebrew Light';
'Noto Sans JP Light', 'Noto Sans Hebrew Light';
font-size: 20px;
line-height: 30px;
}
Expand Down
1 change: 1 addition & 0 deletions app/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
"crystalGlass": "Crystal glass",
"windChime": "Wind chime",
"ticToc": "Tic toc",
"reverie": "Reverie",
"menubarIcon": "Menubar icon:",
"colour": "Colour",
"monochrome": "Monochrome",
Expand Down
5 changes: 5 additions & 0 deletions app/preferences.html
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,11 @@
<label data-i18next="preferences.theme.ticToc" for="ticToc"></label>
<img src="images/preferences/speaker.png" data-has-dark-version alt="Play sound">
</div>
<div class="sounds">
<input type="radio" value="reverie" name="audio" id="reverie">
<label data-i18next="preferences.theme.reverie" for="reverie"></label>
<img src="images/preferences/speaker.png" data-has-dark-version alt="Play sound">
</div>
<div>
<hr>
</div>
Expand Down

0 comments on commit 862c53d

Please sign in to comment.