From c311cb1fbde0824cd6d4ad0953223407cc918e1a Mon Sep 17 00:00:00 2001 From: eJosR-Coding Date: Thu, 17 Sep 2026 12:48:02 -0500 Subject: [PATCH] fix(linux): desktop-entry hint matches GitBell.desktop; bundle category and descriptions --- src-tauri/src/notify.rs | 2 +- src-tauri/tauri.conf.json | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src-tauri/src/notify.rs b/src-tauri/src/notify.rs index 65a7446..de8d3de 100644 --- a/src-tauri/src/notify.rs +++ b/src-tauri/src/notify.rs @@ -38,7 +38,7 @@ fn show(app: AppHandle, title: &str, body: &str, url: Option) -> Result< .summary(title) .body(body) .icon("gitbell") - .hint(Hint::DesktopEntry("gitbell".into())) + .hint(Hint::DesktopEntry("GitBell".into())) // matches the bundler's GitBell.desktop .hint(Hint::Category("im.received".into())); if url.is_some() { n.action("default", crate::i18n::tr("toast.open")); diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 7f3213a..c476ca7 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -43,6 +43,9 @@ "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico" - ] + ], + "category": "DeveloperTool", + "shortDescription": "Your commits, noticed.", + "longDescription": "Native desktop notifications for GitHub activity and coding agents. Lives in the tray, rings when someone pushes, opens a PR, reviews or releases in the repos you watch." } }