mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-21 22:15:40 +00:00
9bcef81b22
Critical Windows bug-fix release.
Fixed
- Mini player no longer hangs the app on Windows (see 71fbc717): the
second WebView2 is now pre-built in .setup() so the first open is a
pure show/hide instead of a creation + minimize race. Windows is
back on native window decorations for the mini and skips the main-
window minimize/unminimize dance around show/hide.
- Mini player re-emits mini:ready on window focus so the snapshot from
main arrives reliably on first open even when pre-create finished
before main's bridge attached its listener.
Added
- "Preload mini player" toggle in Settings → General for Linux + macOS
so those platforms can opt into the instant-open behaviour that
Windows already has as a hang workaround.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
63 lines
2.0 KiB
JSON
63 lines
2.0 KiB
JSON
{
|
|
"name": "psysonic",
|
|
"version": "1.42.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri",
|
|
"tauri:dev": "GDK_BACKEND=x11 WEBKIT_DISABLE_COMPOSITING_MODE=1 tauri dev",
|
|
"tauri:build": "tauri build",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@fontsource-variable/dm-sans": "^5.2.8",
|
|
"@fontsource-variable/figtree": "^5.2.10",
|
|
"@fontsource-variable/geist": "^5.2.8",
|
|
"@fontsource-variable/golos-text": "^5.2.8",
|
|
"@fontsource-variable/inter": "^5.2.8",
|
|
"@fontsource-variable/jetbrains-mono": "^5.2.8",
|
|
"@fontsource-variable/lexend": "^5.2.11",
|
|
"@fontsource-variable/manrope": "^5.2.8",
|
|
"@fontsource-variable/nunito": "^5.2.7",
|
|
"@fontsource-variable/outfit": "^5.2.8",
|
|
"@fontsource-variable/plus-jakarta-sans": "^5.2.8",
|
|
"@fontsource-variable/rubik": "^5.2.8",
|
|
"@fontsource-variable/space-grotesk": "^5.2.10",
|
|
"@fontsource-variable/unbounded": "^5.2.8",
|
|
"@tanstack/react-virtual": "^3.13.23",
|
|
"@tauri-apps/api": "^2",
|
|
"@tauri-apps/plugin-dialog": "^2.7.0",
|
|
"@tauri-apps/plugin-fs": "^2.5.0",
|
|
"@tauri-apps/plugin-global-shortcut": "^2",
|
|
"@tauri-apps/plugin-process": "^2.3.1",
|
|
"@tauri-apps/plugin-shell": "^2",
|
|
"@tauri-apps/plugin-store": "^2",
|
|
"@tauri-apps/plugin-updater": "^2.10.0",
|
|
"@tauri-apps/plugin-window-state": "^2.4.1",
|
|
"axios": "^1.7.7",
|
|
"i18next": "^25.8.16",
|
|
"lucide-react": "^0.462.0",
|
|
"md5": "^2.3.0",
|
|
"papaparse": "^5.5.3",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-i18next": "^16.5.6",
|
|
"react-router-dom": "^6.26.2",
|
|
"zustand": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2",
|
|
"@types/md5": "^2.3.5",
|
|
"@types/node": "^25.3.5",
|
|
"@types/papaparse": "^5.5.2",
|
|
"@types/react": "^18.3.11",
|
|
"@types/react-dom": "^18.3.1",
|
|
"@vitejs/plugin-react": "^4.3.2",
|
|
"typescript": "^5.5.3",
|
|
"vite": "^6.0.3",
|
|
"vitest": "^4.1.3"
|
|
}
|
|
}
|