-
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.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule CheatDeck
updated
38 files
+43 −7 | .github/workflows/dev-build.yml | |
+6 −8 | .gitignore | |
+0 −11 | .vscode/build.sh | |
+0 −48 | .vscode/setup.sh | |
+48 −91 | .vscode/tasks.json | |
+3 −3 | README.md | |
+0 −7 | deck.json | |
+12 −2 | decky.pyi | |
+ − | docs/menu.jpg | |
+ − | docs/settings.jpg | |
+ − | docs/trainer.jpg | |
+32 −0 | eslint.config.js | |
+55 −43 | main.py | |
+22 −19 | package.json | |
+2 −1 | plugin.json | |
+3,167 −672 | pnpm-lock.yaml | |
+3 −36 | rollup.config.js | |
+9 −0 | settings.pyi | |
+48 −0 | src/default.json | |
+9 −12 | src/index.tsx | |
+0 −68 | src/utils/Backend.tsx | |
+0 −15 | src/utils/Default.tsx | |
+0 −42 | src/utils/Logger.tsx | |
+0 −56 | src/utils/Options.tsx | |
+69 −0 | src/utils/backend.ts | |
+14 −13 | src/utils/custom.ts | |
+42 −0 | src/utils/logger.ts | |
+69 −0 | src/utils/options.ts | |
+34 −24 | src/utils/patch.tsx | |
+65 −63 | src/views/Advanced.tsx | |
+21 −26 | src/views/Content.tsx | |
+112 −0 | src/views/Custom/ModalEdit.tsx | |
+106 −0 | src/views/Custom/ModalNew.tsx | |
+26 −25 | src/views/Custom/index.tsx | |
+0 −129 | src/views/Custom/modals.tsx | |
+113 −105 | src/views/Normal.tsx | |
+29 −24 | src/views/PageRouter.tsx | |
+2 −4 | tsconfig.json |