feat: implement native system tray, background notifications, and download resumability via tauri-plugin-store

This commit is contained in:
NimBold
2026-06-16 11:38:02 +03:30
parent b6678493d3
commit 275eb6e5c4
25 changed files with 336 additions and 322 deletions
+9
View File
@@ -0,0 +1,9 @@
with open("src-tauri/src/lib.rs", "r") as f:
content = f.read()
content = content.replace('println!("fetch_media_metadata called for: {}", url);', 'println!("fetch_media_metadata called for: {}", url);')
content = content.replace('let err = String::from_utf8_lossy(&output.stderr);', 'let err = String::from_utf8_lossy(&output.stderr); println!("YTDLP ERROR: {}", err);')
content = content.replace('let text = String::from_utf8_lossy(&output.stdout).to_string();', 'let text = String::from_utf8_lossy(&output.stdout).to_string(); println!("YTDLP SUCCESS: {}", text.chars().take(200).collect::<String>());')
with open("src-tauri/src/lib.rs", "w") as f:
f.write(content)