-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: customize notification sounds (#127)
* refactor: split frontend code * feat: add custom sound buttons * feat: choose file * feat: add Tauri select dialog * chore: use same port for dialog * chore: save custom audio path * fix: don't block when playing sound * chore: update dependencies * chore: update elm deps * fix: styling * fix: update pomodoro state with config * feat: add custom sounds * fix: don't reset state at every update * feat: save all audio files * refactor: sound choice view
- Loading branch information
Showing
25 changed files
with
1,883 additions
and
1,130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,26 @@ | ||
{ | ||
"type": "application", | ||
"source-directories": [ | ||
"src-elm" | ||
], | ||
"elm-version": "0.19.1", | ||
"dependencies": { | ||
"direct": { | ||
"NoRedInk/elm-json-decode-pipeline": "1.0.1", | ||
"elm/browser": "1.0.2", | ||
"elm/core": "1.0.3", | ||
"elm/html": "1.0.0", | ||
"elm/json": "1.1.3", | ||
"elm/svg": "1.0.1", | ||
"rtfeldman/elm-hex": "1.0.0" | ||
}, | ||
"indirect": { | ||
"elm/time": "1.0.0", | ||
"elm/url": "1.0.0", | ||
"elm/virtual-dom": "1.0.3" | ||
} | ||
"type": "application", | ||
"source-directories": ["src-elm"], | ||
"elm-version": "0.19.1", | ||
"dependencies": { | ||
"direct": { | ||
"NoRedInk/elm-json-decode-pipeline": "1.0.1", | ||
"elm/browser": "1.0.2", | ||
"elm/core": "1.0.3", | ||
"elm/html": "1.0.0", | ||
"elm/json": "1.1.3", | ||
"elm/svg": "1.0.1", | ||
"rtfeldman/elm-hex": "1.0.0" | ||
}, | ||
"test-dependencies": { | ||
"direct": {}, | ||
"indirect": {} | ||
"indirect": { | ||
"elm/bytes": "1.0.8", | ||
"elm/time": "1.0.0", | ||
"elm/url": "1.0.0", | ||
"elm/virtual-dom": "1.0.3" | ||
} | ||
}, | ||
"test-dependencies": { | ||
"direct": {}, | ||
"indirect": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.