feat: Moved to stream zip downloading.

feat: Implemented Shortcuts.
feat: Ensured it works on steam deck
This commit is contained in:
Simeon Radivoev 2026-02-21 18:28:07 +02:00
parent f15bf9a1e0
commit 62f16cbcc1
Signed by: simeonradivoev
GPG key ID: C16C2132A7660C8E
45 changed files with 1415 additions and 631 deletions

37
.vscode/tasks.json vendored
View file

@ -5,7 +5,12 @@
"label": "Run Act",
"type": "shell",
"command": "act",
"args": ["--artifact-server-path", "artifacts", "-W", ".github/workflows/build.yml"],
"args": [
"--artifact-server-path",
"artifacts",
"-W",
".github/workflows/build.yml"
],
"options": {
"env": {
"PATH": "${env:PATH}",
@ -13,6 +18,36 @@
},
},
"problemMatcher": []
},
{
"label": "Start Dev",
"type": "shell",
"command": "bun run dev",
"isBackground": true,
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": false
}
},
{
"label": "Start Dev (Hot Reload)",
"type": "shell",
"command": "bun run dev:hmr",
"isBackground": true,
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": false
}
}
]
}