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
+8
View File
@@ -0,0 +1,8 @@
const fs = require('fs');
let content = fs.readFileSync('src/App.tsx', 'utf8');
const idx1 = content.indexOf('import { invoke }');
const idx2 = content.indexOf('export default function App() {', idx1);
if (idx1 !== -1 && idx2 !== -1) {
// wait I injected it into App function body, wait where did I inject it?
}
// I will just git checkout src/App.tsx