├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE │ ├── other.md │ ├── plugin_addition.md │ ├── plugin_removal.md │ ├── plugin_transfer.md │ └── plugin_update.md ├── pull_request_template.md └── workflows │ ├── build-builder.yml │ ├── build-plugins.yml │ ├── cache-clear.yml │ ├── pr-labeler.yml │ └── stale.yml ├── .gitignore ├── .gitmodules ├── LICENSE └── README.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @SteamDeckHomebrew/loader-team 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/.github/PULL_REQUEST_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/plugin_addition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/.github/PULL_REQUEST_TEMPLATE/plugin_addition.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/plugin_removal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/.github/PULL_REQUEST_TEMPLATE/plugin_removal.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/plugin_transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/.github/PULL_REQUEST_TEMPLATE/plugin_transfer.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/plugin_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/.github/PULL_REQUEST_TEMPLATE/plugin_update.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/.github/workflows/build-builder.yml -------------------------------------------------------------------------------- /.github/workflows/build-plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/.github/workflows/build-plugins.yml -------------------------------------------------------------------------------- /.github/workflows/cache-clear.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/.github/workflows/cache-clear.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/.github/workflows/pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDeckHomebrew/decky-plugin-database/HEAD/README.md --------------------------------------------------------------------------------