Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
url = https://github.com/martinpl/MusicControl.git
[submodule "plugins/protondb-decky"]
path = plugins/protondb-decky
url = https://github.com/OMGDuke/protondb-decky
url = https://github.com/bschelst/protondb-decky
[submodule "plugins/SDH-AudioLoader"]
path = plugins/SDH-AudioLoader
url = https://github.com/EMERALD0874/SDH-AudioLoader
Expand Down
2 changes: 1 addition & 1 deletion plugins/protondb-decky
Submodule protondb-decky updated 59 files
+3 −1 .github/FUNDING.yml
+15 −2 .gitignore
+0 −12 .vscode/config.sh
+0 −7 .vscode/defsettings.json
+0 −121 .vscode/tasks.json
+72 −0 CHANGELOG.md
+83 −106 README.md
+ assets/publish_image.png
+ assets/screenshot.jpg
+ assets/screenshot_store.jpg
+45 −1 main.py
+13 −7 package.json
+2 −2 plugin.json
+721 −646 pnpm-lock.yaml
+2 −6 rollup.config.js
+60 −11 src/actions/protondb.ts
+262 −0 src/components/helpModal/index.tsx
+194 −62 src/components/protonMedal/index.tsx
+114 −2 src/components/protonMedal/style.tsx
+97 −4 src/components/settings/index.tsx
+12 −0 src/components/storeOverlay/index.tsx
+2 −0 src/constants.ts
+7 −5 src/hooks/useAppId.ts
+51 −0 src/hooks/useProtonDBAuth.ts
+38 −8 src/hooks/useSettings.ts
+25 −0 src/hooks/useStoreAppId.ts
+53 −0 src/hooks/useSystemInfo.ts
+10 −1 src/index.tsx
+2 −0 src/lib/translations.ts
+77 −16 src/localisation/bg.json
+77 −16 src/localisation/cs.json
+62 −1 src/localisation/da.json
+62 −1 src/localisation/de.json
+78 −17 src/localisation/el.json
+63 −2 src/localisation/en.json
+62 −1 src/localisation/es-419.json
+62 −1 src/localisation/es.json
+62 −1 src/localisation/fi.json
+73 −12 src/localisation/fr.json
+83 −22 src/localisation/hu.json
+62 −1 src/localisation/it.json
+83 −22 src/localisation/ja.json
+62 −1 src/localisation/ko.json
+77 −16 src/localisation/nl.json
+83 −22 src/localisation/no.json
+62 −1 src/localisation/pl.json
+62 −1 src/localisation/pt-br.json
+77 −16 src/localisation/pt.json
+62 −1 src/localisation/ro.json
+62 −1 src/localisation/ru.json
+83 −22 src/localisation/sl.json
+79 −18 src/localisation/sv.json
+62 −1 src/localisation/th.json
+79 −18 src/localisation/tr.json
+62 −1 src/localisation/uk.json
+83 −22 src/localisation/vi.json
+62 −1 src/localisation/zh-cn.json
+62 −1 src/localisation/zh-tw.json
+283 −0 src/patches/StorePatch.ts
Loading