-
Notifications
You must be signed in to change notification settings - Fork 567
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OS Notifications #7399
base: master
Are you sure you want to change the base?
OS Notifications #7399
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Damnnnn, so the current blocker for this is that the application needs to be in the Cargo nightly toolchain, in order to access the experimental feature Tauri notifications have a transitive dependency that breaks on the Cargo nightly toolchain... This kind of sucks |
This is the dependency's issue about breaking on nightly h4llow3En/mac-notification-sys#64 |
Next thing to try: basharovV/musicat#69 (comment) Apparently we might be able to forgo the experimental Windows utils for that package. |
Go back to overriding the version of the Rust toolchain to be the stable one. This means that there are two adaptions to make: 1. Don't use the experimental `checked_signed_diff`method for safe u32 subtraction 2. Update the hash snapshots
Create a module that exposes an utility for sending OS application notifications from the frontend. **Disclaimer**: macOS users need to enable notifications for the Terminal application in order to get the notifications to work while on development.
378652c
to
4b914a8
Compare
OS Notifications Module:
Rust Toolchain Stabilization:
checked_signed_diff
method for safe u32 subtraction.Note: macOS users must enable notifications for the Terminal application during development to receive notifications.