-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'SteamDeckHomebrew:main' into main
- Loading branch information
Showing
8 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
Submodule ControllerTools
updated
36 files
+0 −2 | .devcontainer/Dockerfile | |
+0 −8 | .devcontainer/devcontainer.json | |
+0 −19 | .github/workflows/build-backend.yml | |
+0 −34 | .github/workflows/build-plugin-snapshot-zip.yml | |
+46 −0 | .github/workflows/dev-build.yml | |
+5 −21 | .gitignore | |
+0 −12 | .vscode/config.sh | |
+0 −7 | .vscode/defsettings.json | |
+0 −29 | .vscode/launch.json | |
+0 −148 | .vscode/tasks.json | |
+0 −26 | Dockerfile | |
+1 −1 | backend/Cargo.lock | |
+5 −3 | backend/Cargo.toml | |
+0 −4 | backend/build-docker-image.sh | |
+0 −15 | backend/build-docker.sh | |
+11 −7 | backend/build.sh | |
+1 −1 | backend/entrypoint.sh | |
+0 −3 | backend/run-docker-image.sh | |
+13 −22 | backend/src/main.rs | |
+5 −26 | backend/src/settings.rs | |
+184 −0 | decky.pyi | |
+50 −22 | main.py | |
+13 −17 | package.json | |
+0 −16 | package.sh | |
+1 −0 | plugin.json | |
+976 −307 | pnpm-lock.yaml | |
+0 −41 | release.sh | |
+3 −34 | rollup.config.js | |
+0 −4 | scripts/build_docker_image.sh | |
+0 −34 | scripts/reload_frontend.js | |
+0 −23 | scripts/remote_debug.sh | |
+9 −0 | settings.pyi | |
+8 −19 | src/backend.ts | |
+20 −22 | src/index.tsx | |
+3 −3 | src/notifications.ts | |
+1 −0 | tsconfig.json |
Submodule MagicPodsDecky
updated
3 files
+1 −0 | .gitmodules | |
+1 −1 | backend/src/MagicPodsCore | |
+1 −1 | package.json |
Submodule MicroSDeck
updated
80 files
Submodule SDH-AudioLoader
updated
from c5b65a to 95ddae
Submodule TabMaster
updated
9 files
Submodule TunnelDeck
updated
5 files
+3 −2 | README.md | |
+370 −24 | main.py | |
+13 −5 | package.json | |
+1 −1 | plugin.json | |
+204 −11 | src/index.tsx |
Submodule decky-storage-cleaner
updated
10 files
+4 −0 | .gitignore | |
+12 −2 | decky.pyi | |
+18 −11 | main.py | |
+13 −16 | package.json | |
+1 −0 | plugin.json | |
+1,490 −664 | pnpm-lock.yaml | |
+3 −36 | rollup.config.js | |
+57 −41 | src/index.tsx | |
+26 −0 | src/utils.ts | |
+1 −1 | tsconfig.json |
Submodule decky-wine-cellar
updated
29 files
+14 −0 | .github/FUNDING.yml | |
+9 −9 | .github/workflows/build.yml | |
+11 −8 | .github/workflows/decky-cli-build.yml | |
+2 −0 | .gitignore | |
+464 −568 | backend/Cargo.lock | |
+16 −16 | backend/Cargo.toml | |
+0 −9 | backend/src/steam_util.rs | |
+0 −1 | backend/src/wine_cask/mod.rs | |
+0 −67 | backend/src/wine_cask/virtual.rs | |
+12 −2 | decky.pyi | |
+44 −35 | main.py | |
+18 −21 | package.json | |
+1 −0 | plugin.json | |
+2,256 −1,247 | pnpm-lock.yaml | |
+3 −36 | rollup.config.js | |
+9 −0 | settings.pyi | |
+1 −1 | src/components/changeLogModal.tsx | |
+5 −8 | src/components/markdown.tsx | |
+1 −1 | src/components/showQrModal.tsx | |
+1 −1 | src/frontend/about.tsx | |
+1 −1 | src/frontend/flavorTab.tsx | |
+1 −1 | src/frontend/index.tsx | |
+1 −1 | src/frontend/manager.tsx | |
+0 −0 | src/frontend/settings.tsx | |
+11 −9 | src/index.tsx | |
+6 −13 | src/utils/pythonBackendHelper.ts | |
+1 −1 | src/utils/steamUtils.ts | |
+3 −3 | src/utils/toasts.ts | |
+1 −1 | tsconfig.json |