├── .github ├── ISSUE_TEMPLATE │ └── BUG_REPORT.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── Justfile ├── LICENSE ├── README.md ├── bin ├── run-android.sh └── zip_for_release.sh ├── screenshots ├── screenshot_borked.png ├── screenshot_bronze.png ├── screenshot_games.png ├── screenshot_gold.png ├── screenshot_mobile.png ├── screenshot_platinum.png ├── screenshot_silver.png └── screenshot_wishlist.png └── src ├── assets ├── icon-48.png ├── icon-96.png └── protondb.css ├── js ├── app.js ├── background.js ├── games.js ├── lib.js └── wishlist.js └── manifest.json /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/README.md -------------------------------------------------------------------------------- /bin/run-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/bin/run-android.sh -------------------------------------------------------------------------------- /bin/zip_for_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/bin/zip_for_release.sh -------------------------------------------------------------------------------- /screenshots/screenshot_borked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/screenshots/screenshot_borked.png -------------------------------------------------------------------------------- /screenshots/screenshot_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/screenshots/screenshot_bronze.png -------------------------------------------------------------------------------- /screenshots/screenshot_games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/screenshots/screenshot_games.png -------------------------------------------------------------------------------- /screenshots/screenshot_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/screenshots/screenshot_gold.png -------------------------------------------------------------------------------- /screenshots/screenshot_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/screenshots/screenshot_mobile.png -------------------------------------------------------------------------------- /screenshots/screenshot_platinum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/screenshots/screenshot_platinum.png -------------------------------------------------------------------------------- /screenshots/screenshot_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/screenshots/screenshot_silver.png -------------------------------------------------------------------------------- /screenshots/screenshot_wishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/screenshots/screenshot_wishlist.png -------------------------------------------------------------------------------- /src/assets/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/src/assets/icon-48.png -------------------------------------------------------------------------------- /src/assets/icon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/src/assets/icon-96.png -------------------------------------------------------------------------------- /src/assets/protondb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/src/assets/protondb.css -------------------------------------------------------------------------------- /src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/src/js/app.js -------------------------------------------------------------------------------- /src/js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/src/js/background.js -------------------------------------------------------------------------------- /src/js/games.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/src/js/games.js -------------------------------------------------------------------------------- /src/js/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/src/js/lib.js -------------------------------------------------------------------------------- /src/js/wishlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/src/js/wishlist.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trytonlux/ProtonDB-for-Steam/HEAD/src/manifest.json --------------------------------------------------------------------------------