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

Fix macOS

Kasper (Aug 30, 2025, 8:10 AM +0200) 5de80498 4e9e4fa1

-7
-7
src-tauri/src/lib.rs
··· 6 6 use crate::data::{AppPaths, ArcData, Data}; 7 7 use crate::settings::VersionedSettings; 8 8 use data::UndoHistory; 9 - #[cfg(target_os = "macos")] 10 - use tauri::AboutMetadata; 11 9 use tauri::{command, Manager, WebviewUrl, WebviewWindowBuilder}; 12 10 use tauri_plugin_dialog::{DialogExt, MessageDialogKind}; 13 11 ··· 157 155 user_history: UndoHistory::new(), 158 156 }; 159 157 app.manage(ArcData::new(data)); 160 - 161 - #[cfg(target_os = "macos")] 162 - if let Some(note) = _note.clone() { 163 - dialog::message(Option::Some(&win), note.0, note.1); 164 - } 165 158 166 159 menu::manage_menu(app)?; 167 160