[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.

Set menu

Kasper (Aug 30, 2025, 9:30 AM +0200) e22f1ff7 5de80498

+4 -1
+4 -1
src-tauri/src/menu.rs
··· 27 27 menu = menu.item(&app_entry); 28 28 } 29 29 30 + #[allow(unused_mut)] 30 31 let mut file = SubmenuBuilder::new(app, "File") 31 32 .item( 32 33 &MenuItemBuilder::new("Add Channel...") ··· 119 120 .item(&MenuItemBuilder::new("Learn More").build(app)?) 120 121 .build()?; 121 122 122 - let _ = menu 123 + let menu_built = menu 123 124 .item(&file.build()?) 124 125 .item(&edit) 125 126 .item(&view) 126 127 .item(&window) 127 128 .item(&help) 128 129 .build()?; 130 + 131 + app.set_menu(menu_built)?; 129 132 130 133 app.app_handle() 131 134 .on_menu_event(|app, event| match event.id().0.as_str() {