Skip to content
Open
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 plugins/decky-launch-options
Submodule decky-launch-options updated 64 files
+54 −0 .github/workflows/format.yml
+14 −12 .github/workflows/release.yml
+8 −4 .github/workflows/tag-release.yml
+3 −0 .prettierrc.json
+27 −0 LICENSE
+248 −75 README.md
+ assets/env-variable-merges.jpg
+299 −0 main.py
+129 −0 main.tests.py
+5 −2 package.json
+15 −5 pnpm-lock.yaml
+1 −0 py_modules/__init__.py
+19 −0 py_modules/vdf/LICENSE
+190 −0 py_modules/vdf/__init__.py
+254 −16 run.py
+49 −0 src/api.ts
+35 −27 src/components/apply-launch-options.tsx
+134 −106 src/components/batch-add-launch-options.tsx
+106 −214 src/components/content.tsx
+39 −0 src/components/create-env-variable-merge-form.tsx
+33 −32 src/components/create-launch-option-form.tsx
+100 −0 src/components/debug-log-modal.tsx
+38 −0 src/components/delete-launch-option-modal.tsx
+55 −0 src/components/developer-options.tsx
+203 −0 src/components/dropdown-value-list.tsx
+49 −0 src/components/env-variable-merge-fields.tsx
+48 −0 src/components/launch-option-action-button.tsx
+329 −212 src/components/launch-option-fields.tsx
+81 −0 src/components/launch-option-focus.tsx
+17 −15 src/components/plugin-provider.tsx
+106 −0 src/components/plugin-settings.tsx
+0 −21 src/components/scroll-into-view.tsx
+60 −0 src/components/update-env-variable-merge-form.tsx
+193 −58 src/components/update-launch-option-form.tsx
+88 −0 src/debug-launch-options.ts
+42 −329 src/hooks.ts
+78 −52 src/index.tsx
+141 −114 src/patches/context-menu.tsx
+42 −33 src/patches/library-app.tsx
+212 −0 src/queries/app-launch-options.ts
+95 −0 src/queries/settings.ts
+3 −105 src/query.ts
+36 −0 src/settings/env-variable-merge-actions.ts
+268 −0 src/settings/launch-option-actions.ts
+169 −0 src/settings/profile-actions.ts
+6 −0 src/settings/types.ts
+66 −33 src/shared.ts
+64 −20 src/stores.ts
+77 −0 src/teams/env-variable-merges/views/index.tsx
+56 −0 src/teams/launch-options/components/backup-action-button.tsx
+32 −0 src/teams/launch-options/components/inactive-auto-manage-warning.tsx
+304 −0 src/teams/launch-options/components/launch-option-list.tsx
+111 −0 src/teams/launch-options/components/launch-options-backups-modal.tsx
+24 −0 src/teams/launch-options/components/modal-wrapper.tsx
+108 −0 src/teams/launch-options/hooks/use-app-launch-options-state.ts
+794 −627 src/teams/launch-options/views/[_appid]/index.tsx
+72 −65 src/teams/launch-options/views/index.tsx
+6 −6 src/types.d.ts
+53 −0 src/utils/app-launch-options.ts
+29 −0 src/utils/clipboard.ts
+4 −0 src/utils/index.ts
+266 −0 src/utils/launch-options.ts
+165 −0 src/utils/settings.ts
+448 −4 tests.py
Loading