[READ-ONLY] Mirror of https://github.com/probablykasper/kadium. App for staying ontop of YouTube channels' uploads kadium.kasper.space
linux macos notifications tauri windows youtube
0

Configure Feed

Select the types of activity you want to include in your feed.

Remove manual macOS app hiding

Kasper (Aug 30, 2025, 11:18 AM +0200) e80cccaf 0d81340f

+4 -6
+3
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## Next 4 + - Remove old YouTube Email Notifier migration 5 + 3 6 ## 1.7.1 - 2024 Jan 28 4 7 - Fix selection being created on videos page refresh 5 8
+1 -6
src-tauri/src/lib.rs
··· 165 165 tauri::WindowEvent::CloseRequested { api: _api, .. } => { 166 166 #[cfg(target_os = "macos")] 167 167 { 168 - // hide the application 169 - // manual for now (PR https://github.com/tauri-apps/tauri/pull/3689) 170 168 _api.prevent_close(); 171 - use objc::*; 172 - let cls = objc::runtime::Class::get("NSApplication").unwrap(); 173 - let app: cocoa::base::id = unsafe { msg_send![cls, sharedApplication] }; 174 - unsafe { msg_send![app, hide: 0] } 169 + _app_handle.hide().unwrap(); 175 170 } 176 171 } 177 172 _ => {}