Skip to content

Commit

Permalink
Updated MicroSDeck Version (#577)
Browse files Browse the repository at this point in the history
  • Loading branch information
CEbbinghaus authored Oct 22, 2024
1 parent 04f6159 commit dc453c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/MicroSDeck
Submodule MicroSDeck updated 80 files
+5 −2 .editorconfig
+8 −0 .github/auto_assign-issues.yml
+13 −0 .github/auto_assign.yml
+23 −11 .github/workflows/build.yml
+39 −0 .github/workflows/deploy.yml
+4 −1 .gitignore
+39 −0 .mise.toml
+1 −0 .npmrc
+1 −1 README.md
+ assets/Logo.png
+ assets/logo.png
+299 −77 backend/Cargo.lock
+15 −8 backend/Cargo.toml
+1 −4 backend/Dockerfile
+2 −0 backend/build-docker.sh
+0 −6 backend/build.sh
+1 −0 backend/rustfmt.toml
+359 −99 backend/src/api.rs
+76 −0 backend/src/cfg.rs
+470 −315 backend/src/ds.rs
+58 −21 backend/src/dto.rs
+34 −39 backend/src/env.rs
+50 −41 backend/src/err.rs
+96 −0 backend/src/event.rs
+57 −61 backend/src/log.rs
+80 −90 backend/src/main.rs
+40 −6 backend/src/sdcard.rs
+19 −18 backend/src/steam.rs
+252 −152 backend/src/watch.rs
+1 −0 backend/version
+1 −44 build.sh
+0 −13 defaults/defaults.txt
+5 −0 deploy.example.json
+9 −0 docs/Credits.mdx
+31 −0 docs/README.md
+42 −0 docs/components/CurrentCard.tsx
+9 −0 docs/index.mdx
+0 −13 index.html
+30 −0 lib/package.json
+3,525 −0 lib/pnpm-lock.yaml
+233 −0 lib/src/MicoSDeck.ts
+196 −0 lib/src/backend.ts
+50 −0 lib/src/components/MicroSDeckContext.tsx
+23 −0 lib/src/hooks.ts
+5 −0 lib/src/index.ts
+23 −0 lib/src/types.ts
+29 −0 lib/tsconfig.json
+30 −2 main.py
+63 −56 package.json
+3 −3 plugin.json
+4,492 −2,369 pnpm-lock.yaml
+0 −37 rollup.config.js
+41 −0 rollup.config.mjs
+26 −19 src/Logging.ts
+0 −75 src/components/Buttons.tsx
+0 −50 src/components/Card.tsx
+75 −0 src/components/CardActions.tsx
+0 −20 src/components/CardList.tsx
+63 −0 src/components/DocPage.tsx
+97 −62 src/components/LibraryModal.tsx
+4 −4 src/const.ts
+0 −65 src/hooks/backend.ts
+140 −52 src/index.tsx
+15 −0 src/lib/DeckyApi.ts
+55 −0 src/lib/GamepadUIAudio.ts
+65 −0 src/lib/appOverview.d.ts
+50 −0 src/lib/collectionStore.d.ts
+225 −0 src/modals/EditCardModal.tsx
+75 −0 src/modals/GamesOnCardModal.tsx
+0 −13 src/pages/Config.tsx
+31 −0 src/pages/Docs.tsx
+54 −0 src/pages/docs.codegen
+69 −211 src/patch/PatchAppScreen.tsx
+11 −18 src/types.d.ts
+0 −16 test.mjs
+22 −22 tsconfig.json
+175 −0 util/build.mjs
+10 −0 util/log.mjs
+66 −0 util/versioning.mjs
+1 −0 version

0 comments on commit dc453c9

Please sign in to comment.