mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-07-14 16:37:22 +02:00
build: Update pnpm to v9 (#1309)
* build: Update pnpm to v9 * update actions * remove last actions-rs usage * clippy * clippy again * revert default feature
This commit is contained in:
@@ -48,7 +48,7 @@ pub enum Hint {
|
||||
/// * <https://developer.gnome.org/notification-spec/#categories>
|
||||
Category(String),
|
||||
|
||||
/// Name of the DesktopEntry representing the calling application. In case of "firefox.desktop"
|
||||
/// Name of the `DesktopEntry` representing the calling application. In case of "firefox.desktop"
|
||||
/// use "firefox". May be used to retrieve the correct icon.
|
||||
DesktopEntry(String),
|
||||
|
||||
@@ -91,7 +91,7 @@ pub enum Hint {
|
||||
/// A custom numerical (integer) hint
|
||||
CustomInt(String, i32),
|
||||
|
||||
/// Only used by this NotificationServer implementation
|
||||
/// Only used by this `NotificationServer` implementation
|
||||
Invalid // TODO find a better solution to this
|
||||
}
|
||||
|
||||
@@ -154,7 +154,7 @@ fn test_hints_to_map() {
|
||||
|
||||
// custom value should only be there once if the names are identical
|
||||
|
||||
let n1 = super::Notification::new()
|
||||
let n1 = Notification::new()
|
||||
.hint(Hint::Custom("foo".into(), "bar1".into()))
|
||||
.hint(Hint::Custom("foo".into(), "bar2".into()))
|
||||
.hint(Hint::Custom("f00".into(), "bar3".into()))
|
||||
|
||||
Reference in New Issue
Block a user