Skip to content

Commit

Permalink
MetaDeck rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
KP2048 committed Oct 10, 2024
1 parent 3b4a7af commit c322deb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/MetaDeck
Submodule MetaDeck updated 69 files
+1 −0 README.md
+7 −0 local.sh
+14 −12 package.json
+6,712 −919 pnpm-lock.yaml
+4 −0 rollup.config.js
+48 −17 src/py/main.py
+0 −104 src/ts/Interfaces.ts
+232 −0 src/ts/Interfaces.tsx
+0 −680 src/ts/MetadataManager.tsx
+2 −39 src/ts/RoutePatches.tsx
+4 −3 src/ts/SteamTypes.d.ts
+9 −9 src/ts/System.ts
+127 −104 src/ts/changeMetadataComponent.tsx
+54 −53 src/ts/contextMenuPatch.tsx
+1 −1 src/ts/events.ts
+285 −113 src/ts/hooks/metadataContext.tsx
+71 −412 src/ts/index.tsx
+54 −4 src/ts/localisation/bg.json
+54 −4 src/ts/localisation/cs.json
+54 −4 src/ts/localisation/da.json
+55 −5 src/ts/localisation/de.json
+54 −4 src/ts/localisation/el.json
+54 −4 src/ts/localisation/en.json
+54 −4 src/ts/localisation/es-419.json
+55 −5 src/ts/localisation/es.json
+54 −4 src/ts/localisation/fi.json
+54 −4 src/ts/localisation/fr.json
+54 −4 src/ts/localisation/hu.json
+54 −4 src/ts/localisation/it.json
+54 −4 src/ts/localisation/ja.json
+54 −4 src/ts/localisation/ko.json
+54 −4 src/ts/localisation/nl.json
+54 −4 src/ts/localisation/no.json
+54 −4 src/ts/localisation/pl.json
+54 −4 src/ts/localisation/pt-br.json
+54 −4 src/ts/localisation/pt.json
+54 −4 src/ts/localisation/ro.json
+54 −4 src/ts/localisation/ru.json
+54 −4 src/ts/localisation/sv.json
+54 −4 src/ts/localisation/th.json
+54 −4 src/ts/localisation/tr.json
+54 −4 src/ts/localisation/uk.json
+54 −4 src/ts/localisation/vi.json
+54 −4 src/ts/localisation/zh-cn.json
+54 −4 src/ts/localisation/zh-tw.json
+4 −1 src/ts/markdown.tsx
+22 −17 src/ts/metaDeckComponent.tsx
+205 −0 src/ts/modules/IdOverrideComponent.tsx
+62 −0 src/ts/modules/ModuleSettingsComponent.tsx
+44 −0 src/ts/modules/ProviderSettingsComponent.tsx
+22 −0 src/ts/modules/SettingsComponent.tsx
+217 −0 src/ts/modules/compatdata/CompatdataModule.tsx
+19 −0 src/ts/modules/compatdata/CompatdataProvider.ts
+87 −0 src/ts/modules/compatdata/providers/EmuDeckCompatdataProvider.tsx
+57 −0 src/ts/modules/metadata/CustomFeature.tsx
+927 −0 src/ts/modules/metadata/MetadataModule.tsx
+20 −0 src/ts/modules/metadata/MetadataProvider.ts
+112 −0 src/ts/modules/metadata/providers/EpicMetadataProvider.tsx
+110 −0 src/ts/modules/metadata/providers/GOGMetadataProvider.tsx
+139 −0 src/ts/modules/metadata/providers/GamesDBResult.ts
+322 −0 src/ts/modules/metadata/providers/IGDBMetadataProvider.tsx
+362 −0 src/ts/modules/module.tsx
+58 −0 src/ts/modules/provider.ts
+214 −0 src/ts/retroachievements.ts
+186 −88 src/ts/settings.ts
+36 −0 src/ts/styleInjector.ts
+4 −4 src/ts/types.d.ts
+16 −3 src/ts/useTranslations.ts
+41 −0 src/ts/util.ts

0 comments on commit c322deb

Please sign in to comment.