├── .gitignore ├── .vscode ├── config.sh ├── defsettings.json └── tasks.json ├── LICENSE ├── README.md ├── assets └── screenshot.png ├── decky_plugin.pyi ├── main.py ├── package.json ├── plugin.json ├── pnpm-lock.yaml ├── requirements.txt ├── rollup.config.js ├── src ├── animation-manager │ ├── AboutPage.tsx │ ├── AnimationBrowserPage.tsx │ ├── InstalledAnimationsPage.tsx │ └── index.ts ├── components │ ├── RepoResultCard.tsx │ └── RepoResultModal.tsx ├── index.tsx ├── models │ └── RepoResult.ts ├── state │ └── index.tsx ├── types.d.ts ├── types │ └── animation.ts └── utils │ └── ExtractedClasses.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/.vscode/config.sh -------------------------------------------------------------------------------- /.vscode/defsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/.vscode/defsettings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /decky_plugin.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/decky_plugin.pyi -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/main.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/package.json -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/plugin.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | certifi 3 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/animation-manager/AboutPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/src/animation-manager/AboutPage.tsx -------------------------------------------------------------------------------- /src/animation-manager/AnimationBrowserPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/src/animation-manager/AnimationBrowserPage.tsx -------------------------------------------------------------------------------- /src/animation-manager/InstalledAnimationsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/src/animation-manager/InstalledAnimationsPage.tsx -------------------------------------------------------------------------------- /src/animation-manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/src/animation-manager/index.ts -------------------------------------------------------------------------------- /src/components/RepoResultCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/src/components/RepoResultCard.tsx -------------------------------------------------------------------------------- /src/components/RepoResultModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/src/components/RepoResultModal.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/models/RepoResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/src/models/RepoResult.ts -------------------------------------------------------------------------------- /src/state/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/src/state/index.tsx -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /src/types/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/src/types/animation.ts -------------------------------------------------------------------------------- /src/utils/ExtractedClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/src/utils/ExtractedClasses.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/SDH-AnimationChanger/HEAD/tsconfig.json --------------------------------------------------------------------------------