mirror of
https://github.com/FluxaMedia/fluxa-desktop.git
synced 2026-08-06 16:59:20 +00:00
- Render backend now sources prebuilt libmpv from KhooLy/mpv (gpu-next), fetched via src-tauri/fetch-libmpv.sh; video-sync switched to display-resample with vsync-paced render loops on all platforms. - CI (build.yml) updated to fetch the fork instead of building/bundling mpv per-platform. - Fix: next-episode auto-skip countdown kept ticking while paused. - Fix: addon HTTP fetches had no timeout, so a hung (not just refused) connection could block the home feed load forever, leaving a blank screen with no error. - Fix: Nuvio offline banner overlapped the player's top bar instead of pushing it down. - Add F11 as a fullscreen toggle in the player, alongside F. - Restyle Skip Intro/Outro button: flat surface instead of native button chrome bleeding through, icon, hover/focus state, progress bar.
36 lines
980 B
JSON
36 lines
980 B
JSON
{
|
|
"name": "fluxa-desktop",
|
|
"private": true,
|
|
"version": "0.1.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc && vite build",
|
|
"check": "npm run build && cd src-tauri && cargo check",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2",
|
|
"@tauri-apps/plugin-deep-link": "^2.4.9",
|
|
"@tauri-apps/plugin-dialog": "^2.7.1",
|
|
"@tauri-apps/plugin-fs": "^2",
|
|
"@tauri-apps/plugin-http": "^2",
|
|
"@tauri-apps/plugin-notification": "^2",
|
|
"@tauri-apps/plugin-process": "^2",
|
|
"@tauri-apps/plugin-shell": "^2",
|
|
"@tauri-apps/plugin-updater": "^2",
|
|
"lucide-react": "^1.17.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2",
|
|
"@types/react": "^18.3.1",
|
|
"@types/react-dom": "^18.3.1",
|
|
"@vitejs/plugin-react": "^4.3.1",
|
|
"typescript": "^5.5.3",
|
|
"vite": "^5.4.2"
|
|
}
|
|
}
|