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

Kasper (Jun 20, 2022, 10:31 PM +0200) 2d39fd9a 9aa8e80b

+6 -7
+3
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## Next 4 + - Fix Content Security Policy issue 5 + 3 6 ## 1.3.1 - 2022 Jun 20 4 7 - Fix archive button having an outline when clicked 5 8
+1 -1
README.md
··· 23 23 24 24 ### Commands 25 25 26 - - `DEVELOPMENT=1 npm run dev`: Start app in dev mode. `DEVELOPMENT=1` tells it to use `./src-tauri/appdata` for app data. 26 + - `npm run dev`: Start app in dev mode. It sets `DEVELOPMENT=1` to tell the app to use `./src-tauri/appdata` for app data. 27 27 - `npm run build`: Build 28 28 - `npm run lint`: Lint 29 29 - `npm run format`: Format
+1 -1
src-tauri/Cargo.toml
··· 12 12 [dependencies] 13 13 serde_json = "1.0" 14 14 serde = { version = "1.0", features = ["derive"] } 15 - tauri = { git = "https://github.com/tauri-apps/tauri", branch = "mac-app-hide", features = ["dialog-message", "notification-all", "shell-open"] } 15 + tauri = { git = "https://github.com/tauri-apps/tauri", branch = "mac-app-hide", features = ["devtools", "dialog-message", "notification-all", "shell-open"] } 16 16 rfd = "0.9.1" 17 17 atomicwrites = "0.3.0" 18 18 tokio = { version = "1.12.0", features = ["macros", "time", "sync"] }
+1 -1
src-tauri/tauri.conf.json
··· 62 62 } 63 63 }, 64 64 "security": { 65 - "csp": "default-src 'self'; img-src *" 65 + "csp": "default-src 'self'; img-src *; style-src 'unsafe-inline' *" 66 66 } 67 67 } 68 68 }
-2
src/lib/Nav.svelte
··· 33 33 } 34 34 let checking = 0 35 35 const unlistenChecking = event.listen('checking', () => { 36 - console.log('CHECKIN') 37 - 38 36 checking++ 39 37 }) 40 38 const unlistenDoneChecking = event.listen('doneChecking', () => {
-2
src/modals/Settings.svelte
··· 31 31 32 32 let keyGuideVisible = false 33 33 function keyGuideKeydown(e: KeyboardEvent) { 34 - console.log(document.activeElement) 35 - 36 34 if (e.key === 'Escape') { 37 35 keyGuideVisible = false 38 36 e.preventDefault()