Skip to content

Commit

Permalink
notification style setting recommendation
Browse files Browse the repository at this point in the history
  • Loading branch information
probablykasper committed May 7, 2023
1 parent eb53fca commit e5202a8
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## Next
- Fix macOS notification style setting recommendation not showing

## 1.2.1 - 2023 May 7
- Fix notifications permission request
- Add code signing
Expand All @@ -8,7 +11,7 @@
- Start minimized
- Show only `Done` button on macOS
- Request notifications permission on startup
- Show notification style setting recommendation
- Show macOS notification style setting recommendation
- Fix title/description update resetting when clicking the text fields
- Fix `Escape` shortcut not hiding the window properly

Expand Down
12 changes: 12 additions & 0 deletions src-tauri/Cargo.lock

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

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.28", features = ["macros", "time"] }
chrono = "0.4"
tauri = { version = "1.2", features = ["devtools", "dialog-message", "macos-private-api", "notification-all", "shell-open", "system-tray", "window-hide"] }
tauri = { version = "1.2", features = ["devtools", "dialog-message", "macos-private-api", "notification-all", "os-all", "shell-open", "system-tray", "window-hide"] }
async-cron-scheduler = "1.0"
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
nanoid = "0.4"
Expand Down
3 changes: 3 additions & 0 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@
"shell": {
"open": true
},
"os": {
"all": true
},
"window": {
"hide": true
}
Expand Down

0 comments on commit e5202a8

Please sign in to comment.