├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── main..yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── config.sh ├── defsettings.json └── tasks.json ├── LICENSE ├── README.md ├── assets ├── protondb-decky-1024.png ├── protondb-decky-128.png ├── protondb-decky-2048.png ├── protondb-decky-256.png ├── protondb-decky-512.png ├── publish_image.png └── screenshot.jpg ├── crowdin.yml ├── main.py ├── package.json ├── plugin.json ├── pnpm-lock.yaml ├── rollup.config.js ├── src ├── actions │ └── protondb.ts ├── cache │ └── protobDbCache.tsx ├── components │ ├── button │ │ └── index.tsx │ ├── protonMedal │ │ ├── index.tsx │ │ └── style.tsx │ ├── settings │ │ └── index.tsx │ └── spinner │ │ └── index.tsx ├── constants.ts ├── hooks │ ├── useAppId.ts │ ├── useBadgeData.ts │ ├── useParams.ts │ ├── useSettings.ts │ └── useTranslations.ts ├── index.tsx ├── lib │ ├── patchLibraryApp.tsx │ ├── time.ts │ └── translations.ts └── localisation │ ├── bg.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── en.json │ ├── es-419.json │ ├── es.json │ ├── fi.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── nl.json │ ├── no.json │ ├── pl.json │ ├── pt-br.json │ ├── pt.json │ ├── ro.json │ ├── ru.json │ ├── sl.json │ ├── sv.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ ├── zh-cn.json │ └── zh-tw.json ├── tsconfig.json └── types ├── ProtonDBTier.ts ├── SteamClient.d.ts └── types.d.ts /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | env: { 3 | browser: true, 4 | es2021: true, 5 | node: true 6 | }, 7 | extends: [ 8 | 'eslint:recommended', 9 | 'plugin:@typescript-eslint/recommended', 10 | 'plugin:prettier/recommended' 11 | ], 12 | parser: '@typescript-eslint/parser', 13 | parserOptions: { 14 | ecmaFeatures: { 15 | jsx: true 16 | }, 17 | ecmaVersion: 'latest', 18 | sourceType: 'module' 19 | }, 20 | plugins: ['prettier'], 21 | rules: {} 22 | } 23 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: OMGDuke 2 | ko_fi: OMGDuke 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build and Release ProtonDB Badges 2 | 3 | on: 4 | push: 5 | tags: 6 | - 'v*' 7 | pull_request: 8 | branches: ['main'] 9 | 10 | # Allows you to run this workflow manually from the Actions tab 11 | workflow_dispatch: 12 | 13 | jobs: 14 | build: 15 | runs-on: ubuntu-latest 16 | steps: 17 | - uses: actions/checkout@v3 18 | 19 | - name: Setup Node 20 | uses: actions/setup-node@v1 21 | with: 22 | node-version: '18.3' 23 | 24 | - name: Install Dependencies 25 | run: npm install 26 | 27 | - name: build 28 | run: npm run build 29 | 30 | - name: copy files into build 31 | run: | 32 | cp plugin.json ./dist/ 33 | mkdir ./dist/dist 34 | mv ./dist/index.js ./dist/dist/ 35 | - name: Upload package 36 | uses: actions/upload-artifact@v2 37 | with: 38 | name: protondb-decky 39 | path: | 40 | ./dist/* 41 | release: 42 | needs: build 43 | if: startsWith(github.ref, 'refs/tags/v') 44 | runs-on: ubuntu-latest 45 | steps: 46 | - uses: actions/checkout@v2 47 | 48 | - uses: actions/download-artifact@v3 49 | with: 50 | name: protondb-decky 51 | path: protondb-decky 52 | 53 | - name: zip/tar release 54 | run: | 55 | zip -r protondb-decky.zip protondb-decky/* 56 | tar -czvf protondb-decky.tar.gz protondb-decky 57 | - name: Create a release 58 | uses: ncipollo/release-action@v1 59 | with: 60 | artifacts: 'protondb-decky.zip,protondb-decky.tar.gz' 61 | allowUpdates: true -------------------------------------------------------------------------------- /.github/workflows/main..yml: -------------------------------------------------------------------------------- 1 | on: 2 | push: 3 | branches: 4 | - main 5 | 6 | jobs: 7 | contrib-readme-job: 8 | runs-on: ubuntu-latest 9 | name: A job to automate contrib in readme 10 | steps: 11 | - name: Contribute List 12 | uses: akhilmhdh/contributors-readme-action@v2.3.6 13 | env: 14 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | *.swp 10 | 11 | pids 12 | logs 13 | results 14 | tmp 15 | 16 | # Coverage reports 17 | coverage 18 | 19 | # API keys and secrets 20 | .env 21 | 22 | # Dependency directory 23 | node_modules 24 | bower_components 25 | 26 | # Editors 27 | .idea 28 | *.iml 29 | 30 | # OS metadata 31 | .DS_Store 32 | Thumbs.db 33 | 34 | # Ignore built ts files 35 | dist/ 36 | 37 | __pycache__/ 38 | 39 | /.yalc 40 | yalc.lock 41 | 42 | .vscode/settings.json 43 | 44 | # Ignore output folder 45 | backend/out -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | *.yaml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "none", 3 | "semi": false, 4 | "singleQuote": true 5 | } -------------------------------------------------------------------------------- /.vscode/config.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]:-$0}"; )" &> /dev/null && pwd 2> /dev/null; )"; 3 | # printf "${SCRIPT_DIR}\n" 4 | # printf "$(dirname $0)\n" 5 | if ! [[ -e "${SCRIPT_DIR}/settings.json" ]]; then 6 | printf '.vscode/settings.json does not exist. Creating it with default settings. Exiting afterwards. Run your task again.\n\n' 7 | cp "${SCRIPT_DIR}/defsettings.json" "${SCRIPT_DIR}/settings.json" 8 | exit 1 9 | else 10 | printf '.vscode/settings.json does exist. Congrats.\n' 11 | printf 'Make sure to change settings.json to match your deck.\n' 12 | fi -------------------------------------------------------------------------------- /.vscode/defsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "deckip" : "192.168.0.72", 3 | "deckport" : "22", 4 | "deckpass" : "ENTER_PASSWORD", 5 | "deckkey" : "-i ${env:HOME}/.ssh/id_ed25519", 6 | "deckdir" : "/home/deck" 7 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0.0", 3 | "tasks": [ 4 | // OTHER 5 | { 6 | "label": "checkforsettings", 7 | "type": "shell", 8 | "group": "none", 9 | "detail": "Check that settings.json has been created", 10 | "command": "bash -c ${workspaceFolder}/.vscode/config.sh", 11 | "problemMatcher": [] 12 | }, 13 | // BUILD 14 | { 15 | "label": "pnpmsetup", 16 | "type": "shell", 17 | "group": "build", 18 | "detail": "Setup pnpm", 19 | "command": "pnpm i", 20 | "problemMatcher": [] 21 | }, 22 | { 23 | "label": "update_ui", 24 | "type": "shell", 25 | "group": "build", 26 | "detail": "Update DFL", 27 | "command": "pnpm update @decky/ui --latest", 28 | "problemMatcher": [] 29 | }, 30 | { 31 | "label": "update_api", 32 | "type": "shell", 33 | "group": "build", 34 | "detail": "Update Decky API", 35 | "command": "pnpm update @decky/api --latest", 36 | "problemMatcher": [] 37 | }, 38 | { 39 | "label": "update_rollup", 40 | "type": "shell", 41 | "group": "build", 42 | "detail": "Update Decky Rollup config", 43 | "command": "pnpm update @decky/rollup --latest", 44 | "problemMatcher": [] 45 | }, 46 | { 47 | "label": "build", 48 | "type": "npm", 49 | "group": "build", 50 | "detail": "rollup -c", 51 | "script": "build", 52 | "path": "", 53 | "problemMatcher": [] 54 | }, 55 | { 56 | "label": "buildall", 57 | "group": "build", 58 | "detail": "Build decky-plugin-template", 59 | "dependsOrder": "sequence", 60 | "dependsOn": [ 61 | "pnpmsetup", 62 | "build" 63 | ], 64 | "problemMatcher": [] 65 | }, 66 | // DEPLOY 67 | { 68 | "label": "createfolders", 69 | "detail": "Create plugins folder in expected directory", 70 | "type": "shell", 71 | "group": "none", 72 | "dependsOn": [ 73 | "checkforsettings" 74 | ], 75 | "command": "ssh deck@${config:deckip} -p ${config:deckport} ${config:deckkey} 'mkdir -p ${config:deckdir}/homebrew/dev/pluginloader && mkdir -p ${config:deckdir}/homebrew/plugins'", 76 | "problemMatcher": [] 77 | }, 78 | { 79 | "label": "deploy", 80 | "detail": "Deploy dev plugin to deck", 81 | "type": "shell", 82 | "group": "none", 83 | "dependsOn": [ 84 | "createfolders", 85 | "chmodfolders" 86 | ], 87 | "command": "rsync -azp --delete --rsh='ssh -p ${config:deckport} ${config:deckkey}' --exclude='.git/' --exclude='.github/' --exclude='.vscode/' --exclude='node_modules/' --exclude='src/' --exclude='*.log' --exclude='.gitignore' . deck@${config:deckip}:${config:deckdir}/homebrew/plugins/${workspaceFolderBasename}", 88 | "problemMatcher": [] 89 | }, 90 | { 91 | "label": "chmodfolders", 92 | "detail": "chmods folders to prevent perms issues", 93 | "type": "shell", 94 | "group": "none", 95 | "command": "ssh deck@${config:deckip} -p ${config:deckport} ${config:deckkey} 'echo '${config:deckpass}' | sudo -S chmod -R ug+rw ${config:deckdir}/homebrew/'", 96 | "problemMatcher": [] 97 | }, 98 | { 99 | "label": "deployall", 100 | "dependsOrder": "sequence", 101 | "group": "none", 102 | "dependsOn": [ 103 | "deploy", 104 | "chmodfolders" 105 | ], 106 | "problemMatcher": [] 107 | }, 108 | // ALL-IN-ONE 109 | { 110 | "label": "allinone", 111 | "detail": "Build and deploy", 112 | "dependsOrder": "sequence", 113 | "group": "test", 114 | "dependsOn": [ 115 | "buildall", 116 | "deployall" 117 | ], 118 | "problemMatcher": [] 119 | } 120 | ] 121 | } 122 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | 676 | 677 | BSD 3-Clause License 678 | 679 | Copyright (c) 2022, Steam Deck Homebrew 680 | All rights reserved. 681 | 682 | Redistribution and use in source and binary forms, with or without 683 | modification, are permitted provided that the following conditions are met: 684 | 685 | 1. Redistributions of source code must retain the above copyright notice, this 686 | list of conditions and the following disclaimer. 687 | 688 | 2. Redistributions in binary form must reproduce the above copyright notice, 689 | this list of conditions and the following disclaimer in the documentation 690 | and/or other materials provided with the distribution. 691 | 692 | 3. Neither the name of the copyright holder nor the names of its 693 | contributors may be used to endorse or promote products derived from 694 | this software without specific prior written permission. 695 | 696 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 697 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 698 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 699 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 700 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 701 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 702 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 703 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 704 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 705 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 706 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ProtonDB Badges 2 | 3 | # No longer maintained 4 | 5 | [![Crowdin](https://badges.crowdin.net/protondb-decky/localized.svg)](https://crowdin.com/project/protondb-decky) [![Chat](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://deckbrew.xyz/discord) 6 | 7 | Display tappable ProtonDB badges on your game pages 8 | 9 | ![ProtonDB Badges](./assets/screenshot.jpg) 10 | 11 | ## How it works 12 | 13 | This plugin will grab ProtonDB ratings from the ProtonDB API and overlay a tappable badge on the game page. Tapping the badge takes you to the ProtonDB page for the game. 14 | 15 | ## Options 16 | 17 | ### Size 18 | Choose between Regular, Small, and Minimalist (No text) 19 | 20 | ### Position 21 | Place the badge around different corners of the game page header. 22 | 23 | ## Decky Loader 24 | 25 | This plugin requires [Decky Loader](https://github.com/SteamDeckHomebrew/decky-loader). ProtonDB Badges is available on the store. 26 | 27 | ## Steam Deck Homebrew Discord 28 | [![Chat](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://deckbrew.xyz/discord) 29 | 30 | ## Press and Media 31 | [Game Rant](https://gamerant.com/steam-deck-how-to-use-the-proton-compatibility-features/) 32 | 33 | [PCGamesN](https://www.pcgamesn.com/steam-deck/compatible-games-protondb-plugin) 34 | 35 | [Steam Deck Life](https://steamdecklife.com/2022/10/18/protondb-badges-steam-deck-plugin/) 36 | 37 | [Tom's Guide](https://www.tomsguide.com/opinion/i-owe-every-steam-deck-owner-a-massive-apology-its-a-great-gaming-device) 38 | 39 | [FlipScreen Games](https://youtu.be/3kBsjJKTidU?t=449) 40 | 41 | [GamingOnLinux](https://youtu.be/YQhvNiI3hKI?t=217) 42 | 43 | [Gardiner Bryant](https://youtu.be/uLpQbaRB9hc?t=219) 44 | 45 | [Midas Gamespace](https://youtu.be/Rc9DIhqxLnM?t=196) 46 | 47 | [Steam Deck Gaming](https://youtu.be/IONuww8pXqM?t=219) 48 | 49 | ## Other Plugins 50 | 51 | Check out my other plugin [Game Theme Music ❤️](https://github.com/OMGDuke/SDH-GameThemeMusic) 52 | 53 | ## Contributors 54 | 55 | 56 | 57 | 58 | 65 | 72 | 79 | 86 | 93 | 100 |
59 | 60 | OMGDuke 61 |
62 | OMGDuke 63 |
64 |
66 | 67 | FrogTheFrog 68 |
69 | Lukas Senionis 70 |
71 |
73 | 74 | EMERALD0874 75 |
76 | EMERALD 77 |
78 |
80 | 81 | PartyWumpus 82 |
83 | Party Wumpus 84 |
85 |
87 | 88 | seanzhang98 89 |
90 | Sean 91 |
92 |
94 | 95 | david082321 96 |
97 | David082321 98 |
99 |
101 | 102 | 103 | ## Localisation 104 | [![Crowdin](https://badges.crowdin.net/protondb-decky/localized.svg)](https://crowdin.com/project/protondb-decky) 105 | 106 | Localisation is now available via [Crowdin](https://crowdin.com/project/protondb-decky). Please help with translations if you can! 107 | 108 | [![bg translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Bulgarian&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLWJnIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGcgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2Utd2lkdGg9IjFwdCI+CiAgICA8cGF0aCBmaWxsPSIjZDYyNjEyIiBkPSJNMCAzMjBoNjQwdjE2MEgweiIvPgogICAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMGg2NDB2MTYwSDB6Ii8+CiAgICA8cGF0aCBmaWxsPSIjMDA5NjZlIiBkPSJNMCAxNjBoNjQwdjE2MEgweiIvPgogIDwvZz4KPC9zdmc+Cg==&query=%24.progress.0.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/bg) 109 | 110 | [![zh-CN translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Chinese%20Simplified&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBpZD0iZmxhZy1pY29ucy1jbiIgdmlld0JveD0iMCAwIDY0MCA0ODAiPgogIDxkZWZzPgogICAgPHBhdGggaWQ9ImEiIGZpbGw9IiNmZjAiIGQ9Ik0tLjYuOCAwLTEgLjYuOC0xLS4zaDJ6Ii8+CiAgPC9kZWZzPgogIDxwYXRoIGZpbGw9IiNlZTFjMjUiIGQ9Ik0wIDBoNjQwdjQ4MEgweiIvPgogIDx1c2UgeGxpbms6aHJlZj0iI2EiIHdpZHRoPSIzMCIgaGVpZ2h0PSIyMCIgdHJhbnNmb3JtPSJtYXRyaXgoNzEuOTk5MSAwIDAgNzIgMTIwIDEyMCkiLz4KICA8dXNlIHhsaW5rOmhyZWY9IiNhIiB3aWR0aD0iMzAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0ibWF0cml4KC0xMi4zMzU2MiAtMjAuNTg3MSAyMC41ODY4NCAtMTIuMzM1NzcgMjQwLjMgNDgpIi8+CiAgPHVzZSB4bGluazpocmVmPSIjYSIgd2lkdGg9IjMwIiBoZWlnaHQ9IjIwIiB0cmFuc2Zvcm09Im1hdHJpeCgtMy4zODU3MyAtMjMuNzU5OTggMjMuNzU5NjggLTMuMzg1NzggMjg4IDk1LjgpIi8+CiAgPHVzZSB4bGluazpocmVmPSIjYSIgd2lkdGg9IjMwIiBoZWlnaHQ9IjIwIiB0cmFuc2Zvcm09Im1hdHJpeCg2LjU5OTEgLTIzLjA3NDkgMjMuMDc0NiA2LjU5OTE5IDI4OCAxNjgpIi8+CiAgPHVzZSB4bGluazpocmVmPSIjYSIgd2lkdGg9IjMwIiBoZWlnaHQ9IjIwIiB0cmFuc2Zvcm09Im1hdHJpeCgxNC45OTkxIC0xOC43MzU1NyAxOC43MzUzMyAxNC45OTkyOSAyNDAgMjE2KSIvPgo8L3N2Zz4K&query=%24.progress.25.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/zh-CN) Provided by seanzhang98 111 | 112 | [![zh-TW translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Chinese%20Traditional&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLXR3IiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGNsaXBQYXRoIGlkPSJhIj4KICAgIDxwYXRoIGQ9Ik0wIDBoNjQwdjQ4MEgweiIvPgogIDwvY2xpcFBhdGg+CiAgPGcgY2xpcC1wYXRoPSJ1cmwoI2EpIj4KICAgIDxwYXRoIGZpbGw9InJlZCIgZD0iTTAgMGg3MjB2NDgwSDB6Ii8+CiAgICA8cGF0aCBmaWxsPSIjMDAwMDk1IiBkPSJNMCAwaDM2MHYyNDBIMHoiLz4KICAgIDxnIGZpbGw9IiNmZmYiPgogICAgICA8cGF0aCBkPSJtMTU0IDEyNi45LTIuNSA5LjYgOS40IDIuNi0xLjgtNy4xem00Ni45IDUuMS0xLjggNy4xIDkuNC0yLjYtMi41LTkuNnptLTQxLjgtMjQtNS4xIDUuMSAxLjkgNi45eiIvPgogICAgICA8cGF0aCBkPSJtMTU1LjkgMTIwLTEuOSA2LjkgNS4xIDUuMXoiLz4KICAgICAgPHBhdGggZD0ibTE1NCAxMTMuMS02LjkgNi45IDYuOSA2LjkgMS45LTYuOXptMTQgMjcuOCA1LjEgNS4xIDYuOS0xLjl6bTE4LjkgNS4xIDkuNiAyLjUgMi42LTkuNC03LjEgMS44eiIvPgogICAgICA8cGF0aCBkPSJtMTkyIDE0MC45IDcuMS0xLjggMS44LTcuMXptLTMxLjEtMS44IDIuNiA5LjQgOS42LTIuNS01LjEtNS4xem0xOS4xIDUgNi45IDEuOSA1LjEtNS4xeiIvPgogICAgICA8cGF0aCBkPSJtMTczLjEgMTQ2IDYuOSA2LjkgNi45LTYuOS02LjktMS45em0tMTIuMi00NS4xLTkuNCAyLjYgMi41IDkuNiA1LjEtNS4xem0tMS44IDMxLjEgMS44IDcuMSA3LjEgMS44em00NS0xMiAxLjktNi45LTUuMS01LjF6Ii8+CiAgICAgIDxwYXRoIGQ9Im0xNjggOTkuMS03LjEgMS44LTEuOCA3LjF6bTMyLjkgOC45LTEuOC03LjEtNy4xLTEuOHptNS4xIDE4LjkgNi45LTYuOS02LjktNi45LTEuOSA2Ljl6Ii8+CiAgICAgIDxwYXRoIGQ9Im0yMDAuOSAxMDgtOC45LTguOS0xMi0zLjItMTIgMy4yLTguOSA4LjktMy4yIDEyIDMuMiAxMiA4LjkgOC45IDEyIDMuMiAxMi0zLjIgOC45LTguOSAzLjItMTJ6Ii8+CiAgICAgIDxwYXRoIGQ9Im0yMDAuOSAxMzIgNS4xLTUuMS0xLjktNi45em01LjEtMTguOSAyLjUtOS42LTkuNC0yLjYgMS44IDcuMXptLTYuOS0xMi4yLTIuNi05LjQtOS42IDIuNSA1LjEgNS4xem0tMjYtNi45LTkuNi0yLjUtMi42IDkuNCA3LjEtMS44em02LjkgMS45LTYuOS0xLjktNS4xIDUuMXoiLz4KICAgICAgPHBhdGggZD0ibTE4Ni45IDk0LTYuOS02LjktNi45IDYuOSA2LjkgMS45eiIvPgogICAgICA8cGF0aCBkPSJtMTkyIDk5LjEtNS4xLTUuMS02LjkgMS45ek0xNzMuMSAxNDZsLTkuNiAyLjUgNC41IDE2LjYgMTItMTIuMnptLTUuMSAxOS4xIDEyIDQ0LjkgMTItNDQuOS0xMi0xMi4yem0tNy4xLTI2LTkuNC0yLjYtNC40IDE2LjQgMTYuNC00LjR6Ii8+CiAgICAgIDxwYXRoIGQ9Im0xNDcuMSAxNTIuOS0xMiA0NS4xIDMyLjktMzIuOS00LjUtMTYuNnptLTEyLTIwLjlMMTAyIDE2NS4xbDQ1LjEtMTIuMiA0LjQtMTYuNHoiLz4KICAgICAgPHBhdGggZD0ibTE1NCAxMjYuOS02LjktNi45LTEyIDEyIDE2LjQgNC41em0wLTEzLjgtMi41LTkuNi0xNi40IDQuNSAxMiAxMnoiLz4KICAgICAgPHBhdGggZD0iTTEzNS4xIDEwOCA5MCAxMjBsNDUuMSAxMiAxMi0xMnptOTAgMjQtMTYuNiA0LjUgNC40IDE2LjQgNDUuMSAxMi4yeiIvPgogICAgICA8cGF0aCBkPSJtMTk5LjEgMTM5LjEtMi42IDkuNCAxNi40IDQuNC00LjQtMTYuNHptLTEyLjIgNi45LTYuOSA2LjkgMTIgMTIuMiA0LjUtMTYuNnptMTkuMS0xOS4xIDIuNSA5LjYgMTYuNi00LjUtMTIuMi0xMnoiLz4KICAgICAgPHBhdGggZD0ibTE5MiAxNjUuMSAzMy4xIDMyLjktMTIuMi00NS4xLTE2LjQtNC40em03LjEtNjQuMiA5LjQgMi42IDQuNC0xNi40LTE2LjQgNC40eiIvPgogICAgICA8cGF0aCBkPSJNMjI1LjEgMTA4IDI1OCA3NS4xbC00NS4xIDEyLTQuNCAxNi40em0tMTIuMi0yMC45TDIyNS4xIDQyIDE5MiA3NS4xbDQuNSAxNi40em0xMi4yIDQ0LjkgNDQuOS0xMi00NC45LTEyLTEyLjIgMTJ6Ii8+CiAgICAgIDxwYXRoIGQ9Im0yMDYgMTEzLjEgNi45IDYuOSAxMi4yLTEyLTE2LjYtNC41em0tMzgtMzhMMTM1LjEgNDJsMTIgNDUuMSAxNi40IDQuNHoiLz4KICAgICAgPHBhdGggZD0ibTE2MC45IDEwMC45IDIuNi05LjQtMTYuNC00LjQgNC40IDE2LjR6Ii8+CiAgICAgIDxwYXRoIGQ9Im0xNDcuMSA4Ny4xLTQ1LjEtMTIgMzMuMSAzMi45IDE2LjQtNC41em0zOS44IDYuOSA5LjYtMi41LTQuNS0xNi40LTEyIDEyeiIvPgogICAgICA8cGF0aCBkPSJNMTkyIDc1LjEgMTgwIDMwbC0xMiA0NS4xIDEyIDEyeiIvPgogICAgICA8cGF0aCBkPSJtMTczLjEgOTQgNi45LTYuOS0xMi0xMi00LjUgMTYuNHoiLz4KICAgIDwvZz4KICAgIDxjaXJjbGUgY3g9IjE4MCIgY3k9IjEyMCIgcj0iNTEuMSIgZmlsbD0iIzAwMDA5NSIvPgogICAgPGNpcmNsZSBjeD0iMTgwIiBjeT0iMTIwIiByPSI0NS4xIiBmaWxsPSIjZmZmIi8+CiAgPC9nPgo8L3N2Zz4K&query=%24.progress.26.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/zh-TW) Provided by david082321 113 | 114 | [![cs translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Czech&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLWN6IiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMGg2NDB2MjQwSDB6Ii8+CiAgPHBhdGggZmlsbD0iI2Q3MTQxYSIgZD0iTTAgMjQwaDY0MHYyNDBIMHoiLz4KICA8cGF0aCBmaWxsPSIjMTE0NTdlIiBkPSJNMzYwIDI0MCAwIDB2NDgweiIvPgo8L3N2Zz4K&query=%24.progress.1.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/cs) 115 | 116 | [![da translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Danish&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLWRrIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPHBhdGggZmlsbD0iI2M4MTAyZSIgZD0iTTAgMGg2NDAuMXY0ODBIMHoiLz4KICA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNMjA1LjcgMGg2OC42djQ4MGgtNjguNnoiLz4KICA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNMCAyMDUuN2g2NDAuMXY2OC42SDB6Ii8+Cjwvc3ZnPgo=&query=%24.progress.2.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/da) Provided by antinokia 117 | 118 | [![nl translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Dutch&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLW5sIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPHBhdGggZmlsbD0iIzIxNDY4YiIgZD0iTTAgMGg2NDB2NDgwSDB6Ii8+CiAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMGg2NDB2MzIwSDB6Ii8+CiAgPHBhdGggZmlsbD0iI2FlMWMyOCIgZD0iTTAgMGg2NDB2MTYwSDB6Ii8+Cjwvc3ZnPgo=&query=%24.progress.13.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/nl) 119 | 120 | [![fi translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Finnish&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLWZpIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMGg2NDB2NDgwSDB6Ii8+CiAgPHBhdGggZmlsbD0iIzAwMmY2YyIgZD0iTTAgMTc0LjVoNjQwdjEzMUgweiIvPgogIDxwYXRoIGZpbGw9IiMwMDJmNmMiIGQ9Ik0xNzUuNSAwaDEzMC45djQ4MGgtMTMxeiIvPgo8L3N2Zz4K&query=%24.progress.7.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/) Provided by Kolmio6793 121 | 122 | [![fr translation](https://img.shields.io/badge/dynamic/json?color=blue&label=French&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLWZyIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGcgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2Utd2lkdGg9IjFwdCI+CiAgICA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNMCAwaDY0MHY0ODBIMHoiLz4KICAgIDxwYXRoIGZpbGw9IiMwMDI2NTQiIGQ9Ik0wIDBoMjEzLjN2NDgwSDB6Ii8+CiAgICA8cGF0aCBmaWxsPSIjY2UxMTI2IiBkPSJNNDI2LjcgMEg2NDB2NDgwSDQyNi43eiIvPgogIDwvZz4KPC9zdmc+Cg==&query=%24.progress.8.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/fr) Provided by Tee_de_Jatt 123 | 124 | [![de translation](https://img.shields.io/badge/dynamic/json?color=blue&label=German&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLWRlIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPHBhdGggZmlsbD0iI2ZmY2UwMCIgZD0iTTAgMzIwaDY0MHYxNjBIMHoiLz4KICA8cGF0aCBkPSJNMCAwaDY0MHYxNjBIMHoiLz4KICA8cGF0aCBmaWxsPSIjZDAwIiBkPSJNMCAxNjBoNjQwdjE2MEgweiIvPgo8L3N2Zz4K&query=%24.progress.3.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/de) Provided by DarkSide1305 125 | 126 | [![el translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Greek&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLWdyIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPHBhdGggZmlsbD0iIzBkNWVhZiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMCAwaDY0MHY1My4zSDB6Ii8+CiAgPHBhdGggZmlsbD0iI2ZmZiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMCA1My4zaDY0MHY1My40SDB6Ii8+CiAgPHBhdGggZmlsbD0iIzBkNWVhZiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMCAxMDYuN2g2NDBWMTYwSDB6Ii8+CiAgPHBhdGggZmlsbD0iI2ZmZiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMCAxNjBoNjQwdjUzLjNIMHoiLz4KICA8cGF0aCBmaWxsPSIjMGQ1ZWFmIiBkPSJNMCAwaDI2Ni43djI2Ni43SDB6Ii8+CiAgPHBhdGggZmlsbD0iIzBkNWVhZiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMCAyMTMuM2g2NDB2NTMuNEgweiIvPgogIDxwYXRoIGZpbGw9IiNmZmYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTAgMjY2LjdoNjQwVjMyMEgweiIvPgogIDxwYXRoIGZpbGw9IiMwZDVlYWYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTAgMzIwaDY0MHY1My4zSDB6Ii8+CiAgPHBhdGggZmlsbD0iI2ZmZiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMCAzNzMuM2g2NDB2NTMuNEgweiIvPgogIDxnIGZpbGw9IiNmZmYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLXdpZHRoPSIxLjMiPgogICAgPHBhdGggZD0iTTEwNi43IDBIMTYwdjI2Ni43aC01My4zeiIvPgogICAgPHBhdGggZD0iTTAgMTA2LjdoMjY2LjdWMTYwSDB6Ii8+CiAgPC9nPgogIDxwYXRoIGZpbGw9IiMwZDVlYWYiIGQ9Ik0wIDQyNi43aDY0MFY0ODBIMHoiLz4KPC9zdmc+Cg==&query=%24.progress.4.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/el) 127 | 128 | [![hu translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Hungarian&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLWh1IiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGcgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik02NDAgNDgwSDBWMGg2NDB6Ii8+CiAgICA8cGF0aCBmaWxsPSIjMzg4ZDAwIiBkPSJNNjQwIDQ4MEgwVjMyMGg2NDB6Ii8+CiAgICA8cGF0aCBmaWxsPSIjZDQzNTE2IiBkPSJNNjQwIDE2MC4xSDBWLjFoNjQweiIvPgogIDwvZz4KPC9zdmc+Cg==&query=%24.progress.9.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/hu) 129 | 130 | [![it translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Italian&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLWl0IiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGcgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2Utd2lkdGg9IjFwdCI+CiAgICA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNMCAwaDY0MHY0ODBIMHoiLz4KICAgIDxwYXRoIGZpbGw9IiMwMDkyNDYiIGQ9Ik0wIDBoMjEzLjN2NDgwSDB6Ii8+CiAgICA8cGF0aCBmaWxsPSIjY2UyYjM3IiBkPSJNNDI2LjcgMEg2NDB2NDgwSDQyNi43eiIvPgogIDwvZz4KPC9zdmc+Cg==&query=%24.progress.10.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/it) Provided by MaRod92 131 | 132 | [![ja translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Japanese&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLWpwIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9ImEiPgogICAgICA8cGF0aCBmaWxsLW9wYWNpdHk9Ii43IiBkPSJNLTg4IDMyaDY0MHY0ODBILTg4eiIvPgogICAgPC9jbGlwUGF0aD4KICA8L2RlZnM+CiAgPGcgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2Utd2lkdGg9IjFwdCIgY2xpcC1wYXRoPSJ1cmwoI2EpIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg4OCAtMzIpIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0tMTI4IDMyaDcyMHY0ODBoLTcyMHoiLz4KICAgIDxjaXJjbGUgY3g9IjUyMy4xIiBjeT0iMzQ0LjEiIHI9IjE5NC45IiBmaWxsPSIjYmMwMDJkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTY4LjQgOC42KSBzY2FsZSguNzY1NTQpIi8+CiAgPC9nPgo8L3N2Zz4K&query=%24.progress.11.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/ja) 133 | 134 | [![ko translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Korean&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBpZD0iZmxhZy1pY29ucy1rciIgdmlld0JveD0iMCAwIDY0MCA0ODAiPgogIDxkZWZzPgogICAgPGNsaXBQYXRoIGlkPSJhIj4KICAgICAgPHBhdGggZmlsbC1vcGFjaXR5PSIuNyIgZD0iTS05NS44LS40aDY4Mi43djUxMkgtOTUuOHoiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxnIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1wYXRoPSJ1cmwoI2EpIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg4OS44IC40KSBzY2FsZSguOTM3NSkiPgogICAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTS05NS44LS40SDU4N3Y1MTJILTk1LjhaIi8+CiAgICA8ZyB0cmFuc2Zvcm09InJvdGF0ZSgtNTYuMyAzNjEuNiAtMTAxLjMpIHNjYWxlKDEwLjY2NjY3KSI+CiAgICAgIDxnIGlkPSJjIj4KICAgICAgICA8cGF0aCBpZD0iYiIgZD0iTS02LTI2SDZ2MkgtNlptMCAzSDZ2MkgtNlptMCAzSDZ2MkgtNloiLz4KICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNiIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB5PSI0NCIvPgogICAgICA8L2c+CiAgICAgIDxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTTAgMTd2MTAiLz4KICAgICAgPHBhdGggZmlsbD0iI2NkMmUzYSIgZD0iTTAtMTJhMTIgMTIgMCAwIDEgMCAyNFoiLz4KICAgICAgPHBhdGggZmlsbD0iIzAwNDdhMCIgZD0iTTAtMTJhMTIgMTIgMCAwIDAgMCAyNEE2IDYgMCAwIDAgMCAwWiIvPgogICAgICA8Y2lyY2xlIGN5PSItNiIgcj0iNiIgZmlsbD0iI2NkMmUzYSIvPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMy43IDE5MS4yIDYyLjIpIHNjYWxlKDEwLjY2NjY3KSI+CiAgICAgIDx1c2UgeGxpbms6aHJlZj0iI2MiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiLz4KICAgICAgPHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNMC0yMy41djNNMCAxN3YzLjVtMCAzdjMiLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPgo=&query=%24.progress.12.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/ko) Provided by opticlab 135 | 136 | [![no translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Norwegian&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLW5vIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPHBhdGggZmlsbD0iI2VkMjkzOSIgZD0iTTAgMGg2NDB2NDgwSDB6Ii8+CiAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE4MCAwaDEyMHY0ODBIMTgweiIvPgogIDxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0wIDE4MGg2NDB2MTIwSDB6Ii8+CiAgPHBhdGggZmlsbD0iIzAwMjY2NCIgZD0iTTIxMCAwaDYwdjQ4MGgtNjB6Ii8+CiAgPHBhdGggZmlsbD0iIzAwMjY2NCIgZD0iTTAgMjEwaDY0MHY2MEgweiIvPgo8L3N2Zz4K&query=%24.progress.14.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/no) 137 | 138 | [![pl translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Polish&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLXBsIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGcgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik02NDAgNDgwSDBWMGg2NDB6Ii8+CiAgICA8cGF0aCBmaWxsPSIjZGMxNDNjIiBkPSJNNjQwIDQ4MEgwVjI0MGg2NDB6Ii8+CiAgPC9nPgo8L3N2Zz4K&query=%24.progress.15.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/pl) Provided by jakubmi9 139 | 140 | 141 | [![pt-PT translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Portuguese&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNiAzNiI+PHBhdGggZmlsbD0iIzA2MCIgZD0iTTM2IDI3YzAgMi4yMDktMS43OTEgNC00IDRINGMtMi4yMDkgMC00LTEuNzkxLTQtNFY5YzAtMi4yMDkgMS43OTEtNCA0LTRoMjhjMi4yMDkgMCA0IDEuNzkxIDQgNHYxOHoiLz48cGF0aCBmaWxsPSIjRDUyQjFFIiBkPSJNMzIgNUgxNXYyNmgxN2MyLjIwOSAwIDQtMS43OTEgNC00VjljMC0yLjIwOS0xLjc5MS00LTQtNHoiLz48cGF0aCBmaWxsPSIjRkZDQzREIiBkPSJNMTUgMTBjLTQuNDE5IDAtOCAzLjU4MS04IDggMCA0LjQxOCAzLjU4MSA4IDggOCA0LjQxOCAwIDgtMy41ODIgOC04IDAtNC40MTktMy41ODItOC04LTh6bS02LjExMyA0LjU5NGwxLjYwMiAxLjYwMi0yLjQ2IDEuMjNjLjA4My0xLjAyMi4zODMtMS45ODEuODU4LTIuODMyem0tLjg1OCAzLjk3OWw0LjQgMi4yMDctMi43MDYgMS44MDQuMDE0LjAyMWMtLjk2LTEuMDk3LTEuNTgzLTIuNDkyLTEuNzA4LTQuMDMyek0xNCAyNC45MmMtLjkzNy0uMTM0LTEuODEzLS40NTMtMi41OTItLjkySDE0di45MnpNMTQgMjNoLTMuMDk5TDE0IDIwLjkzNFYyM3ptMC0zLjI2OGwtLjYwNy40MDVMOS4xMTggMThsMi4xMTYtMS4wNThMMTQgMTkuNzA3di4wMjV6bTAtMS40MzlsLTMuNTQzLTMuNTQzIDMuNTQzLjU5djIuOTUzem0wLTMuOTkybC00LjQzMi0uNzEzYzEuMDg0LTEuMzMzIDIuNjUtMi4yNTMgNC40MzItMi41MDh2My4yMjF6bTcuMTEzLjI5M2MuNDc1Ljg1MS43NzUgMS44MS44NTggMi44MzNsLTIuNDYtMS4yMyAxLjYwMi0xLjYwM3pNMTYgMTEuMDhjMS43ODIuMjU2IDMuMzQ4IDEuMTc1IDQuNDMyIDIuNTA4TDE2IDE0LjMwMVYxMS4wOHptMCA0LjI2bDMuNTQzLS41OTFMMTYgMTguMjkzVjE1LjM0em0wIDQuMzY3bDIuNzY1LTIuNzY1TDIwLjg4MiAxOGwtNC4yNzQgMi4xMzctLjYwOC0uNDA1di0uMDI1em0wIDUuMjEzVjI0aDIuNTkyYy0uNzc5LjQ2Ny0xLjY1NS43ODYtMi41OTIuOTJ6TTE2IDIzdi0yLjA2NkwxOS4wOTkgMjNIMTZ6bTQuMjY0LS4zOTVsLjAxNC0uMDIxLTIuNzA2LTEuODA0IDQuNC0yLjIwN2MtLjEyNiAxLjU0LS43NDkgMi45MzUtMS43MDggNC4wMzJ6Ii8+PHBhdGggZmlsbD0iI0Q1MkIxRSIgZD0iTTExIDEzdjdjMCAyLjIwOSAxLjc5MSA0IDQgNHM0LTEuNzkxIDQtNHYtN2gtOHoiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMTIgMTR2NmMwIDEuNjU2IDEuMzQzIDMgMyAzczMtMS4zNDQgMy0zdi02aC02eiIvPjxwYXRoIGZpbGw9IiM4MjlBQ0QiIGQ9Ik0xMyAxN2g0djJoLTR6Ii8+PHBhdGggZmlsbD0iIzgyOUFDRCIgZD0iTTE0IDE2aDJ2NGgtMnoiLz48cGF0aCBmaWxsPSIjMDM5IiBkPSJNMTIgMTdoMXYyaC0xem0yIDBoMnYyaC0yem0zIDBoMXYyaC0xem0tMyAzaDJ2MmgtMnptMC02aDJ2MmgtMnoiLz48L3N2Zz4=&query=%24.progress.17.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/pt-PT) 142 | 143 | 144 | [![pt-BR translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Portuguese,%20Brazilian&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNiAzNiI+PHBhdGggZmlsbD0iIzAwOUIzQSIgZD0iTTM2IDI3YzAgMi4yMDktMS43OTEgNC00IDRINGMtMi4yMDkgMC00LTEuNzkxLTQtNFY5YzAtMi4yMDkgMS43OTEtNCA0LTRoMjhjMi4yMDkgMCA0IDEuNzkxIDQgNHYxOHoiLz48cGF0aCBmaWxsPSIjRkVERjAxIiBkPSJNMzIuNzI4IDE4TDE4IDI5LjEyNCAzLjI3MiAxOCAxOCA2Ljg3NXoiLz48Y2lyY2xlIGZpbGw9IiMwMDI3NzYiIGN4PSIxNy45NzYiIGN5PSIxNy45MjQiIHI9IjYuNDU4Ii8+PHBhdGggZmlsbD0iI0NCRTlENCIgZD0iTTEyLjI3NyAxNC44ODdjLS4zMzIuNjIxLS41NTggMS4zMDMtLjY3MiAyLjAyMyAzLjk5NS0uMjkgOS40MTcgMS44OTEgMTEuNzQ0IDQuNTk1LjQwMi0uNjA0LjctMS4yOC44ODMtMi4wMDQtMi44NzItMi44MDgtNy45MTctNC42My0xMS45NTUtNC42MTR6Ii8+PHBhdGggZmlsbD0iIzg4QzlGOSIgZD0iTTEyIDE4LjIzM2gxdjFoLTF6bTEgMmgxdjFoLTF6Ii8+PHBhdGggZmlsbD0iIzU1QUNFRSIgZD0iTTE1IDE4LjIzM2gxdjFoLTF6bTIgMWgxdjFoLTF6bTQgMmgxdjFoLTF6bS0zIDFoMXYxaC0xem0zLTZoMXYxaC0xeiIvPjxwYXRoIGZpbGw9IiMzQjg4QzMiIGQ9Ik0xOSAyMC4yMzNoMXYxaC0xeiIvPjwvc3ZnPg==&query=%24.progress.16.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/pt-BR) Provided by Vincent Van Vega 145 | 146 | [![ro translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Romanian&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLXJvIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGcgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2Utd2lkdGg9IjFwdCI+CiAgICA8cGF0aCBmaWxsPSIjMDAzMTljIiBkPSJNMCAwaDIxMy4zdjQ4MEgweiIvPgogICAgPHBhdGggZmlsbD0iI2ZmZGUwMCIgZD0iTTIxMy4zIDBoMjEzLjR2NDgwSDIxMy4zeiIvPgogICAgPHBhdGggZmlsbD0iI2RlMjExMCIgZD0iTTQyNi43IDBINjQwdjQ4MEg0MjYuN3oiLz4KICA8L2c+Cjwvc3ZnPgo=&query=%24.progress.18.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/ro) Provided by useredd 147 | 148 | [![ru translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Russian&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLXJ1IiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGcgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2Utd2lkdGg9IjFwdCI+CiAgICA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNMCAwaDY0MHY0ODBIMHoiLz4KICAgIDxwYXRoIGZpbGw9IiMwMDM5YTYiIGQ9Ik0wIDE2MGg2NDB2MzIwSDB6Ii8+CiAgICA8cGF0aCBmaWxsPSIjZDUyYjFlIiBkPSJNMCAzMjBoNjQwdjE2MEgweiIvPgogIDwvZz4KPC9zdmc+Cg==&query=%24.progress.19.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/ru) Provided by Cheezed 149 | 150 | [![es-ES translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Spanish&style=flat&logo=data:image/svg%2bxml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5MDAiIGhlaWdodD0iNjAwIj4KPHJlY3Qgd2lkdGg9IjkwMCIgaGVpZ2h0PSI2MDAiIGZpbGw9IiNjNjBiMWUiLz4KPHJlY3Qgd2lkdGg9IjkwMCIgaGVpZ2h0PSIzMDAiIHk9IjE1MCIgZmlsbD0iI2ZmYzQwMCIvPgo8L3N2Zz4=&query=%24.progress.6.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/es-ES) Provided by Framer 151 | 152 | [![es-419 translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Spanish,%20Latin%20America&style=flat&logo=data:image/svg%2bxml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5MDAiIGhlaWdodD0iNjAwIj4KPHJlY3Qgd2lkdGg9IjkwMCIgaGVpZ2h0PSI2MDAiIGZpbGw9IiNjNjBiMWUiLz4KPHJlY3Qgd2lkdGg9IjkwMCIgaGVpZ2h0PSIzMDAiIHk9IjE1MCIgZmlsbD0iI2ZmYzQwMCIvPgo8L3N2Zz4=&query=%24.progress.5.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/es-419) Provided by AddressLita 153 | 154 | [![sv-SE translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Swedish&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLXNlIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPHBhdGggZmlsbD0iIzAwNTI5MyIgZD0iTTAgMGg2NDB2NDgwSDB6Ii8+CiAgPHBhdGggZmlsbD0iI2ZlY2IwMCIgZD0iTTE3NiAwdjE5Mkgwdjk2aDE3NnYxOTJoOTZWMjg4aDM2OHYtOTZIMjcyVjBoLTk2eiIvPgo8L3N2Zz4K&query=%24.progress.20.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/sv-SE) 155 | 156 | [![th translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Thai&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLXRoIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGcgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgIDxwYXRoIGZpbGw9IiNmNGY1ZjgiIGQ9Ik0wIDBoNjQwdjQ4MEgweiIvPgogICAgPHBhdGggZmlsbD0iIzJkMmE0YSIgZD0iTTAgMTYyLjVoNjQwdjE2MEgweiIvPgogICAgPHBhdGggZmlsbD0iI2E1MTkzMSIgZD0iTTAgMGg2NDB2ODIuNUgwem0wIDQwMGg2NDB2ODBIMHoiLz4KICA8L2c+Cjwvc3ZnPgo=&query=%24.progress.21.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/th) Provided by Tee_de_Jatt & tkkhamp 157 | 158 | [![tr translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Turkish&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLXRyIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGcgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgIDxwYXRoIGZpbGw9IiNlMzBhMTciIGQ9Ik0wIDBoNjQwdjQ4MEgweiIvPgogICAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTQwNyAyNDcuNWMwIDY2LjItNTQuNiAxMTkuOS0xMjIgMTE5LjlzLTEyMi01My43LTEyMi0xMjAgNTQuNi0xMTkuOCAxMjItMTE5LjggMTIyIDUzLjcgMTIyIDExOS45eiIvPgogICAgPHBhdGggZmlsbD0iI2UzMGExNyIgZD0iTTQxMyAyNDcuNWMwIDUzLTQzLjYgOTUuOS05Ny41IDk1LjlzLTk3LjYtNDMtOTcuNi05NiA0My43LTk1LjggOTcuNi05NS44IDk3LjYgNDIuOSA5Ny42IDk1Ljl6Ii8+CiAgICA8cGF0aCBmaWxsPSIjZmZmIiBkPSJtNDMwLjcgMTkxLjUtMSA0NC4zLTQxLjMgMTEuMiA0MC44IDE0LjUtMSA0MC43IDI2LjUtMzEuOCA0MC4yIDE0LTIzLjItMzQuMSAyOC4zLTMzLjktNDMuNSAxMi0yNS44LTM3eiIvPgogIDwvZz4KPC9zdmc+Cg==&query=%24.progress.22.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/tr) 159 | 160 | [![uk translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Ukrainian&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLXVhIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGcgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2Utd2lkdGg9IjFwdCI+CiAgICA8cGF0aCBmaWxsPSJnb2xkIiBkPSJNMCAwaDY0MHY0ODBIMHoiLz4KICAgIDxwYXRoIGZpbGw9IiMwMDU3YjgiIGQ9Ik0wIDBoNjQwdjI0MEgweiIvPgogIDwvZz4KPC9zdmc+Cg==&query=%24.progress.23.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/uk) Provided by awesomedude06 & Kefir2105 161 | 162 | [![vi translation](https://img.shields.io/badge/dynamic/json?color=blue&label=Vietnamese&style=flat&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb25zLXZuIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9ImEiPgogICAgICA8cGF0aCBmaWxsLW9wYWNpdHk9Ii43IiBkPSJNLTg1LjMgMGg2ODIuNnY1MTJILTg1LjN6Ii8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KICA8ZyBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcGF0aD0idXJsKCNhKSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODApIHNjYWxlKC45Mzc1KSI+CiAgICA8cGF0aCBmaWxsPSIjZGEyNTFkIiBkPSJNLTEyOCAwaDc2OHY1MTJoLTc2OHoiLz4KICAgIDxwYXRoIGZpbGw9IiNmZjAiIGQ9Ik0zNDkuNiAzODEgMjYwIDMxNC4zbC04OSA2Ny4zTDIwNCAyNzJsLTg5LTY3LjcgMTEwLjEtMSAzNC4yLTEwOS40TDI5NCAyMDNsMTEwLjEuMS04OC41IDY4LjQgMzMuOSAxMDkuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=&query=%24.progress.24.data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15707857-570215.json)](https://crowdin.com/project/protondb-decky/vi) 163 | -------------------------------------------------------------------------------- /assets/protondb-decky-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMGDuke/protondb-decky/59a1f74e7e88aa17a2232b8a7c987f9d78f33636/assets/protondb-decky-1024.png -------------------------------------------------------------------------------- /assets/protondb-decky-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMGDuke/protondb-decky/59a1f74e7e88aa17a2232b8a7c987f9d78f33636/assets/protondb-decky-128.png -------------------------------------------------------------------------------- /assets/protondb-decky-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMGDuke/protondb-decky/59a1f74e7e88aa17a2232b8a7c987f9d78f33636/assets/protondb-decky-2048.png -------------------------------------------------------------------------------- /assets/protondb-decky-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMGDuke/protondb-decky/59a1f74e7e88aa17a2232b8a7c987f9d78f33636/assets/protondb-decky-256.png -------------------------------------------------------------------------------- /assets/protondb-decky-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMGDuke/protondb-decky/59a1f74e7e88aa17a2232b8a7c987f9d78f33636/assets/protondb-decky-512.png -------------------------------------------------------------------------------- /assets/publish_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMGDuke/protondb-decky/59a1f74e7e88aa17a2232b8a7c987f9d78f33636/assets/publish_image.png -------------------------------------------------------------------------------- /assets/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMGDuke/protondb-decky/59a1f74e7e88aa17a2232b8a7c987f9d78f33636/assets/screenshot.jpg -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | pull_request_title: Crowdin translations sync 2 | commit_message: New translations (%language%) 3 | append_commit_message: 4 | files: 5 | - source: /src/localisation/en.json 6 | translation: /src/localisation/%two_letters_code%.json 7 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import os 2 | import decky_plugin 3 | from settings import SettingsManager 4 | 5 | class Plugin: 6 | async def _main(self): 7 | self.settings = SettingsManager(name="config", settings_directory=decky_plugin.DECKY_PLUGIN_SETTINGS_DIR) 8 | 9 | async def _unload(self): 10 | pass 11 | 12 | async def set_setting(self, key, value): 13 | self.settings.setSetting(key, value) 14 | 15 | async def get_setting(self, key, default): 16 | return self.settings.getSetting(key, default) -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "protondb-decky", 3 | "version": "1.1.0", 4 | "description": "Display tappable ProtonDB badges on your game pages", 5 | "type": "module", 6 | "scripts": { 7 | "build": "shx rm -rf dist && rollup -c", 8 | "watch": "rollup -c -w", 9 | "test": "echo \"Error: no test specified\" && exit 1" 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://github.com/OMGDuke/protondb-decky.git" 14 | }, 15 | "keywords": [ 16 | "decky", 17 | "plugin", 18 | "plugin-template", 19 | "steam-deck", 20 | "deck" 21 | ], 22 | "author": "OMGDuke", 23 | "license": "GPL-2.0-or-later", 24 | "bugs": { 25 | "url": "https://github.com/SteamDeckHomebrew/decky-plugin-template/issues" 26 | }, 27 | "homepage": "https://github.com/SteamDeckHomebrew/decky-plugin-template#readme", 28 | "devDependencies": { 29 | "@decky/rollup": "^1.0.1", 30 | "@decky/ui": "^4.7.1", 31 | "@types/react": "16.14.0", 32 | "@types/webpack": "^5.28.5", 33 | "@typescript-eslint/eslint-plugin": "^6.17.0", 34 | "@typescript-eslint/parser": "^6.17.0", 35 | "eslint": "^8.56.0", 36 | "eslint-config-prettier": "^9.1.0", 37 | "eslint-plugin-prettier": "^5.1.2", 38 | "prettier": "^3.1.1", 39 | "rollup": "^4.19.1", 40 | "shx": "^0.3.4", 41 | "tslib": "^2.6.2", 42 | "typescript": "^5.3.3" 43 | }, 44 | "dependencies": { 45 | "@decky/api": "^1.1.2", 46 | "localforage": "^1.10.0", 47 | "react-icons": "^4.12.0", 48 | "rxjs": "^7.8.1" 49 | }, 50 | "pnpm": { 51 | "peerDependencyRules": { 52 | "ignoreMissing": [ 53 | "react", 54 | "react-dom", 55 | "decky-frontend-lib" 56 | ] 57 | } 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ProtonDB Badges", 3 | "author": "OMGDuke", 4 | "flags": [], 5 | "api_version": 2, 6 | "publish": { 7 | "tags": ["protondb"], 8 | "description": "Display tappable ProtonDB badges on your game pages", 9 | "image": "https://raw.githubusercontent.com/OMGDuke/protondb-decky/main/assets/publish_image.png" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import deckyPlugin from "@decky/rollup"; 2 | 3 | export default deckyPlugin({ 4 | output: { 5 | assetFileNames: '[name]-[hash][extname]' 6 | } 7 | }) 8 | -------------------------------------------------------------------------------- /src/actions/protondb.ts: -------------------------------------------------------------------------------- 1 | import { fetchNoCors } from '@decky/api'; 2 | import ProtonDBTier from '../../types/ProtonDBTier' 3 | 4 | export async function getProtonDBInfo( 5 | appId: string 6 | ): Promise { 7 | try { 8 | const res = await fetchNoCors( 9 | `https://www.protondb.com/api/v1/reports/summaries/${appId}.json`, 10 | { 11 | method: 'GET' 12 | } 13 | ) 14 | 15 | if (res.status === 200) { 16 | return (await res.json())?.tier 17 | } 18 | } catch (error) { 19 | console.log(error) 20 | return "pending" 21 | } 22 | return undefined 23 | } 24 | 25 | export async function getLinuxInfo( 26 | appId: string 27 | ): Promise { 28 | try { 29 | const res = await fetchNoCors( 30 | `https://store.steampowered.com/api/appdetails/?appids=${appId}`, 31 | { 32 | method: 'GET' 33 | } 34 | ) 35 | 36 | if (res.status === 200) { 37 | return Boolean( 38 | (await res.json())?.[appId as string]?.data?.platforms?.linux 39 | ) 40 | } 41 | } catch (error) { 42 | console.log(error); 43 | } 44 | return false 45 | } 46 | -------------------------------------------------------------------------------- /src/cache/protobDbCache.tsx: -------------------------------------------------------------------------------- 1 | import localforage from 'localforage' 2 | import ProtonDBTier from '../../types/ProtonDBTier' 3 | 4 | const STORAGE_KEY = 'protondb-badges-cache' 5 | 6 | localforage.config({ 7 | name: STORAGE_KEY 8 | }) 9 | 10 | type ProtonDBCache = { 11 | tier: ProtonDBTier 12 | linuxSupport: boolean 13 | lastUpdated: string 14 | } 15 | 16 | export async function updateCache(appId: string, newData: ProtonDBCache) { 17 | const oldCache = await localforage.getItem(appId) 18 | const newCache: ProtonDBCache = { ...oldCache, ...newData } 19 | await localforage.setItem(appId, newCache) 20 | return newCache 21 | } 22 | 23 | export function clearCache(appId?: string) { 24 | if (appId?.length) { 25 | localforage.removeItem(appId) 26 | } else { 27 | localforage.clear() 28 | } 29 | } 30 | 31 | export async function getCache(appId: string): Promise { 32 | const data = await localforage.getItem(appId) 33 | return data 34 | } 35 | -------------------------------------------------------------------------------- /src/components/button/index.tsx: -------------------------------------------------------------------------------- 1 | import { DialogButton, DialogButtonProps } from '@decky/ui' 2 | import { FC } from 'react' 3 | 4 | export type ButtonProps = DialogButtonProps 5 | 6 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 7 | export const Button = (DialogButton as any).render({}).type as FC 8 | -------------------------------------------------------------------------------- /src/components/protonMedal/index.tsx: -------------------------------------------------------------------------------- 1 | import { appDetailsClasses, appDetailsHeaderClasses, Navigation } from '@decky/ui' 2 | import React, { ReactElement, FC, CSSProperties, ReactNode, useState, useRef, useEffect } from 'react' 3 | import { FaReact } from 'react-icons/fa' 4 | import { IoLogoTux } from 'react-icons/io' 5 | 6 | import useAppId from '../../hooks/useAppId' 7 | import useBadgeData from '../../hooks/useBadgeData' 8 | import useTranslations from '../../hooks/useTranslations' 9 | 10 | import { Button, ButtonProps } from '../button' 11 | 12 | import style from './style' 13 | import { useSettings } from '../../hooks/useSettings' 14 | 15 | type ExtendedButtonProps = ButtonProps & { 16 | children: ReactNode 17 | type: 'button' 18 | style?: CSSProperties 19 | className: string 20 | } 21 | 22 | const DeckButton = Button as FC 23 | 24 | const positonSettings = { 25 | tl: { top: '40px', left: '20px' }, 26 | tr: { top: '60px', right: '20px' }, 27 | bl: { bottom: '40px', left: '20px' }, 28 | br: { bottom: '40px', right: '20px' } 29 | } 30 | 31 | function findTopCapsuleParent(ref: HTMLDivElement | null): Element | null { 32 | const children = ref?.parentElement?.children 33 | if (!children) { 34 | return null 35 | } 36 | 37 | let headerContainer: Element | undefined 38 | for (const child of children) { 39 | if (child.className.includes(appDetailsClasses.Header)) { 40 | headerContainer = child 41 | break 42 | } 43 | } 44 | 45 | if (!headerContainer) { 46 | return null 47 | } 48 | 49 | let topCapsule: Element | null = null 50 | for (const child of headerContainer.children) { 51 | if (child.className.includes(appDetailsHeaderClasses.TopCapsule)) { 52 | topCapsule = child 53 | break 54 | } 55 | } 56 | 57 | return topCapsule 58 | } 59 | 60 | export default function ProtonMedal(): ReactElement { 61 | const t = useTranslations() 62 | const appId = useAppId() 63 | const { protonDBTier, linuxSupport, refresh } = useBadgeData(appId) 64 | const { settings, loading } = useSettings() 65 | 66 | // There will be no mutation when the page is loaded (either from exiting the game 67 | // or just newly opening the page), therefore it's visible by default. 68 | const [show, setShow] = useState(true) 69 | const ref = useRef(null) 70 | 71 | useEffect(() => { 72 | const topCapsule = findTopCapsuleParent(ref?.current) 73 | if (!topCapsule) { 74 | console.error("TopCapsule container not found!") 75 | return 76 | } 77 | 78 | const mutationObserver = new MutationObserver((entries) => { 79 | for (const entry of entries) { 80 | if (entry.type !== "attributes" || entry.attributeName !== "class") { 81 | continue 82 | } 83 | 84 | const className = (entry.target as Element).className 85 | const fullscreenMode = 86 | className.includes(appDetailsHeaderClasses.FullscreenEnterStart) || 87 | className.includes(appDetailsHeaderClasses.FullscreenEnterActive) || 88 | className.includes(appDetailsHeaderClasses.FullscreenEnterDone) || 89 | className.includes(appDetailsHeaderClasses.FullscreenExitStart) || 90 | className.includes(appDetailsHeaderClasses.FullscreenExitActive) 91 | const fullscreenAborted = 92 | className.includes(appDetailsHeaderClasses.FullscreenExitDone) 93 | 94 | setShow(!fullscreenMode || fullscreenAborted) 95 | } 96 | }) 97 | mutationObserver.observe(topCapsule, { attributes: true, attributeFilter: ["class"] }) 98 | return () => { 99 | mutationObserver.disconnect() 100 | } 101 | }, []) 102 | 103 | const tierClass = `protondb-decky-indicator-${protonDBTier}` as const 104 | const nativeClass = linuxSupport ? 'protondb-decky-indicator-native' : '' 105 | const sizeClass = `protondb-decky-indicator-${settings.size || 'regular' 106 | }` as const 107 | 108 | const labelTypeOnHoverClass = 109 | settings.size !== 'minimalist' || settings.labelTypeOnHover === 'off' 110 | ? '' 111 | : `protondb-decky-indicator-label-on-hover-${settings.labelTypeOnHover}` 112 | 113 | return ( 114 |
119 | {protonDBTier && show && !loading && 120 | <> 121 | {style} 122 | { 126 | refresh() 127 | Navigation.NavigateToExternalWeb( 128 | `https://www.protondb.com/app/${appId}` 129 | ) 130 | }} 131 | > 132 |
133 | {linuxSupport ? ( 134 | 137 | ) : ( 138 | <> 139 | )} 140 | {/* The ProtonDB logo has a distracting background, so React's logo is being used as a close substitute */} 141 | 142 |
143 | 144 | {settings.size === 'small' || 145 | (settings.size === 'minimalist' && 146 | settings.labelTypeOnHover !== 'regular') 147 | ? t(`tierMin${protonDBTier}`) 148 | : t(`tier${protonDBTier}`)} 149 | 150 |
151 | 152 | } 153 |
154 | ) 155 | } 156 | -------------------------------------------------------------------------------- /src/components/protonMedal/style.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | export default ( 4 | 165 | ) 166 | -------------------------------------------------------------------------------- /src/components/settings/index.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | ButtonItem, 3 | ButtonItemProps, 4 | DropdownItem, 5 | PanelSection, 6 | PanelSectionProps, 7 | PanelSectionRow 8 | } from '@decky/ui' 9 | import React, { FC, ReactNode } from 'react' 10 | import { clearCache } from '../../cache/protobDbCache' 11 | import useTranslations from '../../hooks/useTranslations' 12 | import { useSettings } from '../../hooks/useSettings' 13 | import Spinner from '../spinner' 14 | 15 | type ExtendedPanelSectionProps = PanelSectionProps & { 16 | children: ReactNode 17 | } 18 | 19 | const DeckPanelSection = PanelSection as FC 20 | 21 | type PanelSectionRowProps = { 22 | children: ReactNode 23 | } 24 | 25 | const DeckPanelSectionRow = PanelSectionRow as FC 26 | 27 | type ExtendedButtonItemProps = ButtonItemProps & { 28 | children: ReactNode 29 | } 30 | 31 | const DeckButtonItem = ButtonItem as FC 32 | 33 | export default function Index() { 34 | const { settings, setSize, setPosition, setLabelOnHover, loading } = 35 | useSettings() 36 | const t = useTranslations() 37 | 38 | const sizeOptions = [ 39 | { data: 0, label: t('sizeRegular'), value: 'regular' }, 40 | { data: 1, label: t('sizeSmall'), value: 'small' }, 41 | { data: 2, label: t('sizeMinimalist'), value: 'minimalist' } 42 | ] as const 43 | 44 | const positionOptions = [ 45 | { data: 0, label: t('positionTopLeft'), value: 'tl' }, 46 | { data: 1, label: t('positionTopRight'), value: 'tr' } 47 | ] as const 48 | 49 | const hoverTypeOptions = [ 50 | { data: 0, label: t('expandOnHoverOff'), value: 'off' }, 51 | { data: 1, label: t('sizeSmall'), value: 'small' }, 52 | { data: 2, label: t('sizeRegular'), value: 'regular' } 53 | ] as const 54 | if (loading) { 55 | return ( 56 |
64 | 65 |
66 | ) 67 | } 68 | return ( 69 |
70 | 71 | 72 | ({ 77 | data: o.data, 78 | label: o.label 79 | }))} 80 | selectedOption={ 81 | sizeOptions.find((o) => o.value === settings.size)?.data || 0 82 | } 83 | onChange={(newVal: { data: number; label: string }) => { 84 | const newSize = 85 | sizeOptions.find((o) => o.data === newVal.data)?.value || 86 | 'regular' 87 | setSize(newSize) 88 | }} 89 | /> 90 | 91 | {settings.size === 'minimalist' ? ( 92 | 93 | ({ 98 | data: o.data, 99 | label: o.label 100 | }))} 101 | selectedOption={ 102 | hoverTypeOptions.find( 103 | (o) => o.value === settings.labelTypeOnHover 104 | )?.data || 0 105 | } 106 | onChange={(newVal: { data: number; label: string }) => { 107 | const newHoverType = 108 | hoverTypeOptions.find((o) => o.data === newVal.data)?.value || 109 | 'off' 110 | setLabelOnHover(newHoverType) 111 | }} 112 | /> 113 | 114 | ) : ( 115 | '' 116 | )} 117 | 118 | ({ 123 | data: o.data, 124 | label: o.label 125 | }))} 126 | selectedOption={ 127 | positionOptions.find((o) => o.value === settings.position) 128 | ?.data || 0 129 | } 130 | onChange={(newVal: { data: number; label: string }) => { 131 | const newPosition = 132 | positionOptions.find((o) => o.data === newVal.data)?.value || 133 | 'tl' 134 | setPosition(newPosition) 135 | }} 136 | /> 137 | 138 | 139 | 140 | 141 | clearCache()} 146 | > 147 | {t('clearCache')} 148 | 149 | 150 | 151 |
152 | ) 153 | } 154 | -------------------------------------------------------------------------------- /src/components/spinner/index.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { ImSpinner2 } from 'react-icons/im' 3 | 4 | export default function Spinner() { 5 | return ( 6 |
7 | 38 | 39 |
40 | ) 41 | } 42 | -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- 1 | export const appTypes = { 2 | 1: 'game', 3 | 2: 'software', 4 | 4: 'tool', 5 | 8: 'demo', 6 | 2048: 'video', 7 | 65536: 'playtest' 8 | } 9 | -------------------------------------------------------------------------------- /src/hooks/useAppId.ts: -------------------------------------------------------------------------------- 1 | import { fetchNoCors } from '@decky/api' 2 | import { useEffect, useState } from 'react' 3 | import { appTypes } from '../constants' 4 | import { useParams } from './useParams' 5 | 6 | function cleanString(str: string) { 7 | return str 8 | .replace(/['"\u0040\u0026\u2122\u00ae]/g, '') 9 | .toLowerCase() 10 | .trim() 11 | } 12 | 13 | const useAppId = () => { 14 | const [appId, setAppId] = useState() 15 | const { appid: pathId } = useParams<{ appid: string }>() 16 | 17 | useEffect(() => { 18 | let ignore = false 19 | async function getNonSteamAppId(gameName: string) { 20 | if (ignore) { 21 | return 22 | } 23 | 24 | try { 25 | const res = await fetchNoCors( 26 | `https://steamcommunity.com/actions/SearchApps/${gameName}`, 27 | { 28 | method: 'GET' 29 | } 30 | ); 31 | 32 | if (res.status === 200) { 33 | const options = await res.json() as { 34 | appid: string 35 | name: string 36 | }[] 37 | const appId = options.find((o) => { 38 | return cleanString(o.name) === cleanString(gameName) 39 | })?.appid 40 | setAppId(appId) 41 | return 42 | } 43 | } catch (error) { 44 | console.error(error); 45 | } 46 | setAppId(undefined) 47 | } 48 | const appDetails = appStore.GetAppOverviewByGameID(parseInt(pathId)) 49 | const isSteamGame = Boolean( 50 | appTypes[appDetails?.app_type as keyof typeof appTypes] 51 | ) 52 | if (isSteamGame) { 53 | setAppId(pathId) 54 | } else { 55 | getNonSteamAppId(appDetails?.display_name) 56 | } 57 | return () => { 58 | ignore = true 59 | } 60 | }, []) 61 | return appId 62 | } 63 | 64 | export default useAppId 65 | -------------------------------------------------------------------------------- /src/hooks/useBadgeData.ts: -------------------------------------------------------------------------------- 1 | import { useEffect, useState } from 'react' 2 | 3 | import ProtonDBTier from '../../types/ProtonDBTier' 4 | import { getLinuxInfo, getProtonDBInfo } from '../actions/protondb' 5 | import { getCache, updateCache } from '../cache/protobDbCache' 6 | import { isOutdated } from '../lib/time' 7 | 8 | const useBadgeData = (appId: string | undefined) => { 9 | const [protonDBTier, setProtonDBTier] = useState() 10 | const [linuxSupport, setLinuxSupport] = useState(false) 11 | 12 | async function refresh() { 13 | const tierPromise = getProtonDBInfo(appId as string) 14 | const linuxPromise = getLinuxInfo(appId as string) 15 | const [tier, linuxSupport] = await Promise.all([tierPromise, linuxPromise]) 16 | if (tier?.length && appId?.length) { 17 | updateCache(appId, { 18 | tier: tier, 19 | linuxSupport, 20 | lastUpdated: new Date().toISOString() 21 | }) 22 | setProtonDBTier(tier) 23 | } 24 | setLinuxSupport(linuxSupport) 25 | } 26 | 27 | useEffect(() => { 28 | // Proton DB Data 29 | let ignore = false 30 | async function getData() { 31 | const cache = await getCache(appId as string) 32 | if (cache?.tier) { 33 | setProtonDBTier(cache.tier) 34 | if (!isOutdated(cache?.lastUpdated)) return 35 | } 36 | const tier = await getProtonDBInfo(appId as string) 37 | if (ignore) { 38 | return 39 | } 40 | if (!tier?.length) return 41 | setProtonDBTier(tier) 42 | } 43 | if (appId?.length) { 44 | getData() 45 | } 46 | return () => { 47 | ignore = true 48 | } 49 | }, [appId]) 50 | 51 | useEffect(() => { 52 | // Linux Data 53 | let ignore = false 54 | async function getData() { 55 | const cache = await getCache(appId as string) 56 | if (typeof cache?.linuxSupport !== 'undefined') { 57 | setLinuxSupport(cache?.linuxSupport) 58 | if (!isOutdated(cache?.lastUpdated)) return 59 | } 60 | const linuxSupport = await getLinuxInfo(appId as string) 61 | if (ignore) { 62 | return 63 | } 64 | setLinuxSupport(linuxSupport) 65 | } 66 | 67 | if (appId?.length) { 68 | getData() 69 | } 70 | return () => { 71 | ignore = true 72 | } 73 | }, [appId]) 74 | 75 | useEffect(() => { 76 | if (protonDBTier) { 77 | updateCache(appId as string, { 78 | tier: protonDBTier, 79 | linuxSupport, 80 | lastUpdated: new Date().toISOString() 81 | }) 82 | } 83 | }, [protonDBTier, linuxSupport]) 84 | 85 | return { 86 | protonDBTier, 87 | linuxSupport, 88 | refresh 89 | } 90 | } 91 | 92 | export default useBadgeData 93 | -------------------------------------------------------------------------------- /src/hooks/useParams.ts: -------------------------------------------------------------------------------- 1 | import { ReactRouter } from '@decky/ui' 2 | 3 | export const useParams = Object.values(ReactRouter).find((val) => 4 | /return (\w)\?\1\.params:{}/.test(`${val}`) 5 | ) as () => T 6 | -------------------------------------------------------------------------------- /src/hooks/useSettings.ts: -------------------------------------------------------------------------------- 1 | import { call } from '@decky/api' 2 | import { useEffect, useState } from 'react' 3 | import { BehaviorSubject } from 'rxjs' 4 | 5 | export type Settings = { 6 | size: 'regular' | 'small' | 'minimalist' 7 | position: 'tl' | 'tr' | 'bl' | 'br' 8 | labelTypeOnHover: 'off' | 'small' | 'regular' 9 | } 10 | 11 | // Not using the React context here as this approach is simpler. 12 | const SettingsContext = new BehaviorSubject({ 13 | size: 'regular', 14 | position: 'tl', 15 | labelTypeOnHover: 'off' 16 | }) 17 | const LoadingContext = new BehaviorSubject(true) 18 | 19 | function updateSettings( 20 | key: keyof Settings, 21 | value: Settings[keyof Settings] 22 | ) { 23 | const newSettings = { ...SettingsContext.value, [key]: value } 24 | call<[string, Settings], Settings>('set_setting', 'settings', newSettings).catch(console.error) 25 | SettingsContext.next(newSettings) 26 | } 27 | 28 | export function loadSettings() { 29 | LoadingContext.next(true) 30 | call<[string, Settings], Settings>('get_setting', 'settings', SettingsContext.value) 31 | .then(settings => SettingsContext.next(settings)) 32 | .catch(console.error) 33 | .finally(() => LoadingContext.next(false)) 34 | } 35 | 36 | export const useSettings = () => { 37 | const [settings, setSettings] = useState(SettingsContext.value) 38 | const [loading, setLoading] = useState(LoadingContext.value) 39 | 40 | useEffect(() => { 41 | const settingsSub = SettingsContext.asObservable().subscribe((value) => setSettings(value)); 42 | const loadingSub = LoadingContext.asObservable().subscribe((value) => setLoading(value)); 43 | return () => { 44 | loadingSub.unsubscribe(); 45 | settingsSub.unsubscribe(); 46 | }; 47 | }, []); 48 | 49 | function setSize(value: Settings['size']) { 50 | updateSettings('size', value) 51 | } 52 | 53 | function setPosition(value: Settings['position']) { 54 | updateSettings('position', value) 55 | } 56 | 57 | function setLabelOnHover(value: Settings['labelTypeOnHover']) { 58 | updateSettings('labelTypeOnHover', value) 59 | } 60 | 61 | return { settings, setSize, setPosition, setLabelOnHover, loading } 62 | } 63 | -------------------------------------------------------------------------------- /src/hooks/useTranslations.ts: -------------------------------------------------------------------------------- 1 | import { useState } from 'react' 2 | import languages from '../lib/translations' 3 | 4 | function getCurrentLanguage(): keyof typeof languages { 5 | const steamLang = window.LocalizationManager.m_rgLocalesToUse[0] 6 | const lang = steamLang.replace(/-([a-z])/g, (_, letter: string) => 7 | letter.toUpperCase() 8 | ) as keyof typeof languages 9 | return languages[lang] ? lang : 'en' 10 | } 11 | 12 | function useTranslations() { 13 | const [lang] = useState(getCurrentLanguage()) 14 | return function (key: keyof (typeof languages)['en']): string { 15 | if (languages[lang]?.[key]?.length) { 16 | return languages[lang]?.[key] 17 | } else if (languages.en?.[key]?.length) { 18 | return languages.en?.[key] 19 | } else { 20 | return key 21 | } 22 | } 23 | } 24 | 25 | export default useTranslations 26 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { definePlugin, staticClasses } from '@decky/ui' 3 | import { routerHook } from '@decky/api' 4 | import { FaReact } from 'react-icons/fa' 5 | 6 | import Settings from './components/settings' 7 | import patchLibraryApp from './lib/patchLibraryApp' 8 | import { loadSettings } from './hooks/useSettings' 9 | 10 | export default definePlugin(() => { 11 | loadSettings() 12 | const libraryPatch = patchLibraryApp() 13 | return { 14 | title:
ProtonDB Badges
, 15 | icon: , 16 | content: , 17 | onDismount() { 18 | routerHook.removePatch('/library/app/:appid', libraryPatch) 19 | } 20 | } 21 | }) 22 | -------------------------------------------------------------------------------- /src/lib/patchLibraryApp.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | afterPatch, 3 | findInReactTree, 4 | appDetailsClasses, 5 | createReactTreePatcher 6 | } from '@decky/ui' 7 | import { routerHook } from '@decky/api'; 8 | import React, { ReactElement } from 'react' 9 | import ProtonMedal from '../components/protonMedal' 10 | 11 | function patchLibraryApp() { 12 | return routerHook.addPatch( 13 | '/library/app/:appid', 14 | (tree: any) => { 15 | const routeProps = findInReactTree(tree, (x: any) => x?.renderFunc); 16 | if (routeProps) { 17 | const patchHandler = createReactTreePatcher([ 18 | (tree: any) => findInReactTree(tree, (x: any) => x?.props?.children?.props?.overview)?.props?.children 19 | ], (_: Array>, ret?: ReactElement) => { 20 | const container = findInReactTree( 21 | ret, 22 | (x: ReactElement) => 23 | Array.isArray(x?.props?.children) && 24 | x?.props?.className?.includes( 25 | appDetailsClasses.InnerContainer 26 | ) 27 | ) 28 | if (typeof container !== 'object') { 29 | return ret 30 | } 31 | 32 | container.props.children.splice( 33 | 1, 34 | 0, 35 | 36 | ) 37 | 38 | return ret 39 | }); 40 | 41 | afterPatch(routeProps, "renderFunc", patchHandler); 42 | } 43 | 44 | return tree; 45 | } 46 | ) 47 | } 48 | 49 | export default patchLibraryApp 50 | -------------------------------------------------------------------------------- /src/lib/time.ts: -------------------------------------------------------------------------------- 1 | export function isOutdated(lastUpdated: string) { 2 | const now = new Date() 3 | const msBetweenDates = Math.abs( 4 | new Date(lastUpdated).getTime() - now.getTime() 5 | ) 6 | 7 | const hoursBetweenDates = msBetweenDates / (60 * 60 * 1000) 8 | return hoursBetweenDates > 24 9 | } 10 | -------------------------------------------------------------------------------- /src/lib/translations.ts: -------------------------------------------------------------------------------- 1 | import bg from '../localisation/bg.json' 2 | import cs from '../localisation/cs.json' 3 | import da from '../localisation/da.json' 4 | import de from '../localisation/de.json' 5 | import el from '../localisation/el.json' 6 | import en from '../localisation/en.json' 7 | import es from '../localisation/es.json' 8 | import es419 from '../localisation/es-419.json' 9 | import fi from '../localisation/fi.json' 10 | import fr from '../localisation/fr.json' 11 | import hu from '../localisation/hu.json' 12 | import it from '../localisation/it.json' 13 | import ja from '../localisation/ja.json' 14 | import ko from '../localisation/ko.json' 15 | import nl from '../localisation/nl.json' 16 | import no from '../localisation/no.json' 17 | import pl from '../localisation/pl.json' 18 | import pt from '../localisation/pt.json' 19 | import ptBr from '../localisation/pt-br.json' 20 | import ro from '../localisation/ro.json' 21 | import ru from '../localisation/ru.json' 22 | import sv from '../localisation/sv.json' 23 | import th from '../localisation/th.json' 24 | import tr from '../localisation/tr.json' 25 | import uk from '../localisation/uk.json' 26 | import vi from '../localisation/vi.json' 27 | import zhCn from '../localisation/zh-cn.json' 28 | import zhTw from '../localisation/zh-tw.json' 29 | 30 | const languages = { 31 | bg, 32 | cs, 33 | da, 34 | de, 35 | el, 36 | en, 37 | es, 38 | es419, 39 | fi, 40 | fr, 41 | hu, 42 | it, 43 | ja, 44 | ko, 45 | nl, 46 | no, 47 | pl, 48 | pt, 49 | ptBr, 50 | ro, 51 | ru, 52 | sv, 53 | th, 54 | tr, 55 | uk, 56 | vi, 57 | zhCn, 58 | zhTw 59 | } as const 60 | 61 | export default languages 62 | -------------------------------------------------------------------------------- /src/localisation/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Badge Position", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Badge Size", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Caching", 7 | "clearCache": "Clear ProtonDB Cache", 8 | "clearCacheLabel": "Clear the cache to force refresh all ProtonDB badges", 9 | "expandOnHover": "Expand Label on hover", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "Top Left", 12 | "positionTopRight": "Top Right", 13 | "settings": "Settings", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Small", 17 | "tierborked": "НЕРАБОТЕЩИ", 18 | "tierbronze": "БРОНЗ", 19 | "tiergold": "ЗЛАТО", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GOLD", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SILV", 26 | "tierpending": "PENDING", 27 | "tierplatinum": "ПЛАТИНА", 28 | "tiersilver": "СРЕБРО", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Pozice Odznaku", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Velikost Odznaku", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Cachování", 7 | "clearCache": "Smazat ProtonDB Cache", 8 | "clearCacheLabel": "Vymažte cache pro vynucenou aktualizaci všech ProtonDB odznaků", 9 | "expandOnHover": "Rozbalit Štítek při přejetí", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "Top Left", 12 | "positionTopRight": "Top Right", 13 | "settings": "Settings", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Small", 17 | "tierborked": "BORKED", 18 | "tierbronze": "BRONZE", 19 | "tiergold": "GOLD", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GOLD", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SILV", 26 | "tierpending": "PENDING", 27 | "tierplatinum": "PLATINUM", 28 | "tiersilver": "SILVER", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Placering af mærke", 3 | "badgePositionDescription": "Placer emblemet i spillets sidehoved", 4 | "badgeSize": "Mærkets størrelse", 5 | "badgeSizeDescription": "Vælg en anden størrelse til emblemet", 6 | "caching": "Cachelagring", 7 | "clearCache": "Ryd ProtonDB Cache", 8 | "clearCacheLabel": "Ryd cachen for at tvinge opdatering alle ProtonDB mærker", 9 | "expandOnHover": "Hold over etiket for at udvide", 10 | "expandOnHoverDescription": "Minimalistisk. Vis kun emblem tekst ved fokus", 11 | "positionTopLeft": "Øverst til venstre", 12 | "positionTopRight": "Øverst til højre", 13 | "settings": "Indstillinger", 14 | "sizeMinimalist": "Minimalistisk", 15 | "sizeRegular": "Almindelig", 16 | "sizeSmall": "Lille", 17 | "tierborked": "VIRKER IKKE", 18 | "tierbronze": "BRONZE", 19 | "tiergold": "GULD", 20 | "tierMinborked": "ITU", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GULD", 23 | "tierMinpending": "AFVENT", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SØLV", 26 | "tierpending": "AFVENTER", 27 | "tierplatinum": "PLATIN", 28 | "tiersilver": "SØLV", 29 | "expandOnHoverOff": "Fra" 30 | } -------------------------------------------------------------------------------- /src/localisation/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Abzeichen Position", 3 | "badgePositionDescription": "Positioniere das Abzeichen in der Überschrift der Spiele Seite", 4 | "badgeSize": "Abzeichen Größe", 5 | "badgeSizeDescription": "Wähle eine andere Größe für das Abzeichen", 6 | "caching": "Zwischenspeicherung", 7 | "clearCache": "Setze die ProtonDB Zwischenspeicherung zurück", 8 | "clearCacheLabel": "Setze die Zwischenspeicherung zurück um alle ProtonDB Abzeichen zu erneuern", 9 | "expandOnHover": "Vergrößere das Abzeichen beim Fokussieren", 10 | "expandOnHoverDescription": "Nur für Minimalistisch. Zeige den Abzeichen-Text beim Fokussieren", 11 | "positionTopLeft": "Oben Links", 12 | "positionTopRight": "Oben Rechts", 13 | "settings": "Einstellungen", 14 | "sizeMinimalist": "Minimalistisch", 15 | "sizeRegular": "Regulär", 16 | "sizeSmall": "Klein", 17 | "tierborked": "DEFEKT", 18 | "tierbronze": "BRONZE", 19 | "tiergold": "GOLD", 20 | "tierMinborked": "DFKT", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GOLD", 23 | "tierMinpending": "UBST", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SILB", 26 | "tierpending": "UNBESTIMMT", 27 | "tierplatinum": "PLATIN", 28 | "tiersilver": "SILBER", 29 | "expandOnHoverOff": "Aus" 30 | } -------------------------------------------------------------------------------- /src/localisation/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Badge Position", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Badge Size", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Caching", 7 | "clearCache": "Clear ProtonDB Cache", 8 | "clearCacheLabel": "Clear the cache to force refresh all ProtonDB badges", 9 | "expandOnHover": "Expand Label on hover", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "Top Left", 12 | "positionTopRight": "Top Right", 13 | "settings": "Settings", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Small", 17 | "tierborked": "ΤΖΟΎΦΙΟ", 18 | "tierbronze": "ΧΆΛΚΙΝΟ", 19 | "tiergold": "ΧΡΥΣΌ", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GOLD", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SILV", 26 | "tierpending": "PENDING", 27 | "tierplatinum": "ΠΛΑΤΙΝΈΝΙΟ", 28 | "tiersilver": "ΑΣΗΜΈΝΙΟ", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Badge Position", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Badge Size", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Caching", 7 | "clearCache": "Clear ProtonDB Cache", 8 | "clearCacheLabel": "Clear the cache to force refresh all ProtonDB badges", 9 | "expandOnHover": "Expand Label on hover", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "Top Left", 12 | "positionTopRight": "Top Right", 13 | "settings": "Settings", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Small", 17 | "tierborked": "BORKED", 18 | "tierbronze": "BRONZE", 19 | "tiergold": "GOLD", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GOLD", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SILV", 26 | "tierpending": "PENDING", 27 | "tierplatinum": "PLATINUM", 28 | "tiersilver": "SILVER", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/es-419.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Posición de medalla", 3 | "badgePositionDescription": "Posición de la medalla dentro de la página encabezado del juego", 4 | "badgeSize": "Tamaño de medalla", 5 | "badgeSizeDescription": "Elige un tamaño diferente para la medalla", 6 | "caching": "Caché", 7 | "clearCache": "Limpiar caché de ProtonDB", 8 | "clearCacheLabel": "Limpiar la caché para forzar el refresco de todas las medallas ProtonDB", 9 | "expandOnHover": "Expandir etiqueta al colocar el cursor", 10 | "expandOnHoverDescription": "Solo minimalista. Mostrar texto al enfocar", 11 | "positionTopLeft": "Superior izquierda", 12 | "positionTopRight": "Superior derecha", 13 | "settings": "Configuración", 14 | "sizeMinimalist": "Minimalista", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Pequeño", 17 | "tierborked": "ROTO", 18 | "tierbronze": "BRONCE", 19 | "tiergold": "ORO", 20 | "tierMinborked": "ROTO", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "ORO", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLATI", 25 | "tierMinsilver": "PLATA", 26 | "tierpending": "PENDIENTE", 27 | "tierplatinum": "PLATINO", 28 | "tiersilver": "PLATA", 29 | "expandOnHoverOff": "Apagado" 30 | } -------------------------------------------------------------------------------- /src/localisation/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Posición de la insignia", 3 | "badgePositionDescription": "Coloca la insignia dentro del encabezado de la página del juego", 4 | "badgeSize": "Tamaño de la insignia", 5 | "badgeSizeDescription": "Selecciona un tamaño diferente para la insignia", 6 | "caching": "Caché", 7 | "clearCache": "Limpiar el caché de ProtonDB", 8 | "clearCacheLabel": "Borra el caché para forzar la actualización de todas las insignias de ProtonDB", 9 | "expandOnHover": "Expandir insignia al seleccionar", 10 | "expandOnHoverDescription": "Solo Minimalista. Muestra el texto de la insignia al seleccionar", 11 | "positionTopLeft": "Arriba a la izquierda", 12 | "positionTopRight": "Arriba a la derecha", 13 | "settings": "Ajustes", 14 | "sizeMinimalist": "Minimalista", 15 | "sizeRegular": "Normal", 16 | "sizeSmall": "Pequeño", 17 | "tierborked": "ROTO", 18 | "tierbronze": "BRONCE", 19 | "tiergold": "ORO", 20 | "tierMinborked": "ROTO", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "ORO", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLATI", 25 | "tierMinsilver": "PLATA", 26 | "tierpending": "PENDIENTE", 27 | "tierplatinum": "PLATINO", 28 | "tiersilver": "PLATA", 29 | "expandOnHoverOff": "Desactivado" 30 | } -------------------------------------------------------------------------------- /src/localisation/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Merkin Sijainti", 3 | "badgePositionDescription": "Sijoita merkki pelin sivun otsikkoon", 4 | "badgeSize": "Merkin koko", 5 | "badgeSizeDescription": "Valitse eri koko merkille", 6 | "caching": "Välimuisti", 7 | "clearCache": "Tyhjennä ProtonDB Välimuisti", 8 | "clearCacheLabel": "Tyhjennä välimuisti pakottaaksesi virkistämään kaikki ProtonDB merkit", 9 | "expandOnHover": "Laajenna nimi hiiren päällä", 10 | "expandOnHoverDescription": "Vain minimalisti. Näytä merkkiteksti tarkennettaessa", 11 | "positionTopLeft": "Vasen Yläreuna", 12 | "positionTopRight": "Oikea Yläreuna", 13 | "settings": "Asetukset", 14 | "sizeMinimalist": "Minimalisti", 15 | "sizeRegular": "Tavallinen", 16 | "sizeSmall": "Pieni", 17 | "tierborked": "RAJOITETTU", 18 | "tierbronze": "PRONSSI", 19 | "tiergold": "KULTA", 20 | "tierMinborked": "RAJOITETTU", 21 | "tierMinbronze": "PRONSSI", 22 | "tierMingold": "KULTA", 23 | "tierMinpending": "ODOTTAA", 24 | "tierMinplatinum": "PLATINA", 25 | "tierMinsilver": "HOPEA", 26 | "tierpending": "ODOTTAA", 27 | "tierplatinum": "PLATINA", 28 | "tiersilver": "HOPEA", 29 | "expandOnHoverOff": "Pois Päältä" 30 | } -------------------------------------------------------------------------------- /src/localisation/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Badge Position", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Badge Size", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Caching", 7 | "clearCache": "Clear ProtonDB Cache", 8 | "clearCacheLabel": "Clear the cache to force refresh all ProtonDB badges", 9 | "expandOnHover": "Expand Label on hover", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "À gauche en haut", 12 | "positionTopRight": "En haut à droite", 13 | "settings": "Paramètres", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Standard", 16 | "sizeSmall": "Petit", 17 | "tierborked": "INJOUABLE", 18 | "tierbronze": "BRONZE", 19 | "tiergold": "OR", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "OR", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SILV", 26 | "tierpending": "EN ATTENTE", 27 | "tierplatinum": "PLATINE", 28 | "tiersilver": "ARGENT", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Badge Position", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Badge Size", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Caching", 7 | "clearCache": "Clear ProtonDB Cache", 8 | "clearCacheLabel": "Clear the cache to force refresh all ProtonDB badges", 9 | "expandOnHover": "Expand Label on hover", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "Top Left", 12 | "positionTopRight": "Top Right", 13 | "settings": "Settings", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Small", 17 | "tierborked": "BORKED", 18 | "tierbronze": "BRONZE", 19 | "tiergold": "GOLD", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GOLD", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SILV", 26 | "tierpending": "PENDING", 27 | "tierplatinum": "PLATINUM", 28 | "tiersilver": "SILVER", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Posizione del badge", 3 | "badgePositionDescription": "Posizione del badge all'interno dell'header del gioco", 4 | "badgeSize": "Dimensione badge", 5 | "badgeSizeDescription": "Scegli una dimensione per il badge", 6 | "caching": "Caching", 7 | "clearCache": "Rimuovi la cache di ProtonDB", 8 | "clearCacheLabel": "Rimuovi la cache di ProtonDB per forzarne l'aggiornamento", 9 | "expandOnHover": "Espandi le label quando selezionate", 10 | "expandOnHoverDescription": "Stile minimalista. Mostra il testo del badge solo quando selezionato", 11 | "positionTopLeft": "In alto a sinistra", 12 | "positionTopRight": "In alto a destra", 13 | "settings": "Impostazioni", 14 | "sizeMinimalist": "Minimalista", 15 | "sizeRegular": "Regolare", 16 | "sizeSmall": "Piccolo", 17 | "tierborked": "ROTTO", 18 | "tierbronze": "BRONZO", 19 | "tiergold": "ORO", 20 | "tierMinborked": "ROTTO", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "ORO", 23 | "tierMinpending": "ATT", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "ARG", 26 | "tierpending": "IN ATTESA", 27 | "tierplatinum": "PLATINO", 28 | "tiersilver": "ARGENTO", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Badge Position", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Badge Size", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Caching", 7 | "clearCache": "Clear ProtonDB Cache", 8 | "clearCacheLabel": "Clear the cache to force refresh all ProtonDB badges", 9 | "expandOnHover": "Expand Label on hover", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "Top Left", 12 | "positionTopRight": "Top Right", 13 | "settings": "Settings", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Small", 17 | "tierborked": "BORKED", 18 | "tierbronze": "BRONZE", 19 | "tiergold": "GOLD", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GOLD", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SILV", 26 | "tierpending": "PENDING", 27 | "tierplatinum": "PLATINUM", 28 | "tiersilver": "SILVER", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "배지 위치", 3 | "badgePositionDescription": "게임 페이지 헤더 내의 배지 위치를 조정합니다", 4 | "badgeSize": "배지 크기", 5 | "badgeSizeDescription": "배지 크기를 변경합니다", 6 | "caching": "캐시", 7 | "clearCache": "ProtonDB 캐시 지우기", 8 | "clearCacheLabel": "캐시를 삭제하여 모든 ProtonDB 배지를 갱신합니다", 9 | "expandOnHover": "호버 시 펼치기", 10 | "expandOnHoverDescription": "최소한 전용. 포커스 시에 배지 내용을 표시 합니다", 11 | "positionTopLeft": "좌상단", 12 | "positionTopRight": "우상단", 13 | "settings": "설정", 14 | "sizeMinimalist": "최소", 15 | "sizeRegular": "기본", 16 | "sizeSmall": "작게", 17 | "tierborked": "작동하지 않음", 18 | "tierbronze": "브론즈", 19 | "tiergold": "골드", 20 | "tierMinborked": "망가짐", 21 | "tierMinbronze": "브론즈", 22 | "tierMingold": "골드", 23 | "tierMinpending": "대기중", 24 | "tierMinplatinum": "플래티넘", 25 | "tierMinsilver": "실버", 26 | "tierpending": "리뷰 대기중", 27 | "tierplatinum": "플래티넘", 28 | "tiersilver": "실버", 29 | "expandOnHoverOff": "끄기" 30 | } -------------------------------------------------------------------------------- /src/localisation/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Badge Position", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Badge Size", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Caching", 7 | "clearCache": "Clear ProtonDB Cache", 8 | "clearCacheLabel": "Clear the cache to force refresh all ProtonDB badges", 9 | "expandOnHover": "Expand Label on hover", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "Top Left", 12 | "positionTopRight": "Top Right", 13 | "settings": "Settings", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Small", 17 | "tierborked": "ONSPEELBAAR", 18 | "tierbronze": "BRONS", 19 | "tiergold": "GOUD", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GOUD", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "ZILV", 26 | "tierpending": "PENDING", 27 | "tierplatinum": "PLATINA", 28 | "tiersilver": "ZILVER", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/no.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Badge Position", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Badge Size", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Caching", 7 | "clearCache": "Clear ProtonDB Cache", 8 | "clearCacheLabel": "Clear the cache to force refresh all ProtonDB badges", 9 | "expandOnHover": "Expand Label on hover", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "Top Left", 12 | "positionTopRight": "Top Right", 13 | "settings": "Settings", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Small", 17 | "tierborked": "BORKED", 18 | "tierbronze": "BRONZE", 19 | "tiergold": "GOLD", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GOLD", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SILV", 26 | "tierpending": "PENDING", 27 | "tierplatinum": "PLATINUM", 28 | "tiersilver": "SILVER", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Pozycja odznaki", 3 | "badgePositionDescription": "Umieść odznakę wewnątrz nagłówka strony gry", 4 | "badgeSize": "Rozmiar odznaki", 5 | "badgeSizeDescription": "Wybierz inny rozmiar odznaki", 6 | "caching": "Pamięć podręczna", 7 | "clearCache": "Wyczyść pamięć podręczną ProtonDB", 8 | "clearCacheLabel": "Wyczyść pamięć podręczną, aby wymusić odświeżenie wszystkich odznak ProtonDB", 9 | "expandOnHover": "Rozwiń etykietę po wybraniu kursorem", 10 | "expandOnHoverDescription": "Dotyczy tylko rozmiaru 'Minimalistyczny'. Wyświetlaj tekst odznaki po wybraniu kursorem", 11 | "positionTopLeft": "Lewy górny róg", 12 | "positionTopRight": "Prawy górny róg", 13 | "settings": "Ustawienia", 14 | "sizeMinimalist": "Minimalistyczny", 15 | "sizeRegular": "Normalny", 16 | "sizeSmall": "Mały", 17 | "tierborked": "ZEPSUTE", 18 | "tierbronze": "BRĄZ", 19 | "tiergold": "ZŁOTO", 20 | "tierMinborked": "ZEP", 21 | "tierMinbronze": "BRĄZ", 22 | "tierMingold": "ZŁOT", 23 | "tierMinpending": "BRAK", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SREB", 26 | "tierpending": "BRAK DANYCH", 27 | "tierplatinum": "PLATYNA", 28 | "tiersilver": "SREBRO", 29 | "expandOnHoverOff": "Wyłączone" 30 | } -------------------------------------------------------------------------------- /src/localisation/pt-br.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Posição da Medalha", 3 | "badgePositionDescription": "A posição aonde a medalha ficará na página do jogo", 4 | "badgeSize": "Tamanho da Medalha", 5 | "badgeSizeDescription": "Escolha um tamanho diferente para a medalha", 6 | "caching": "Cacheamento", 7 | "clearCache": "Limpar Cache do ProtonDB", 8 | "clearCacheLabel": "Limpe o cache para forçar a atualização de todas as medalhas do ProtonDB", 9 | "expandOnHover": "Expandir Selo ao focalizar", 10 | "expandOnHoverDescription": "Apenas para Minimalista. Exibe o texto da medalha quando estiver em foco", 11 | "positionTopLeft": "Superior Esquerdo", 12 | "positionTopRight": "Superior Direito", 13 | "settings": "Configurações", 14 | "sizeMinimalist": "Minimalista", 15 | "sizeRegular": "Normal", 16 | "sizeSmall": "Pequeno", 17 | "tierborked": "QUEBRADO", 18 | "tierbronze": "BRONZE", 19 | "tiergold": "OURO", 20 | "tierMinborked": "QUEB", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "OURO", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "PRAT", 26 | "tierpending": "PENDENTE", 27 | "tierplatinum": "PLATINA", 28 | "tiersilver": "PRATA", 29 | "expandOnHoverOff": "Desativado" 30 | } -------------------------------------------------------------------------------- /src/localisation/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Badge Position", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Badge Size", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Caching", 7 | "clearCache": "Clear ProtonDB Cache", 8 | "clearCacheLabel": "Clear the cache to force refresh all ProtonDB badges", 9 | "expandOnHover": "Expand Label on hover", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "Top Left", 12 | "positionTopRight": "Top Right", 13 | "settings": "Settings", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Small", 17 | "tierborked": "QUEBRADO", 18 | "tierbronze": "BRONZE", 19 | "tiergold": "OURO", 20 | "tierMinborked": "QUEB", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "OURO", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "PRAT", 26 | "tierpending": "PENDENTE", 27 | "tierplatinum": "PLATINA", 28 | "tiersilver": "PRATA", 29 | "expandOnHoverOff": "Desactivado" 30 | } -------------------------------------------------------------------------------- /src/localisation/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Poziția Ecusonului", 3 | "badgePositionDescription": "Poziționați ecusonul în interiorul antetului paginii de joc", 4 | "badgeSize": "Dimensiunea Ecusonului", 5 | "badgeSizeDescription": "Alegeți o dimensiune diferită pentru ecuson", 6 | "caching": "Cache-are", 7 | "clearCache": "Ștergeți Cache-ul ProtonDB", 8 | "clearCacheLabel": "Ștergeți cache-ul pentru a forța reîmprospătarea tuturor ecusoanelor ProtonDB", 9 | "expandOnHover": "Extindeți eticheta la survol", 10 | "expandOnHoverDescription": "Doar minimalist. Afișați textul ecusonului la focalizare", 11 | "positionTopLeft": "Stânga Sus", 12 | "positionTopRight": "Dreapta Sus", 13 | "settings": "Setări", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Obișnuit", 16 | "sizeSmall": "Mic", 17 | "tierborked": "BORKED", 18 | "tierbronze": "BRONZĂ", 19 | "tiergold": "AUR", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "AUR", 23 | "tierMinpending": "ÎN AȘTEPTARE", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "ARGI", 26 | "tierpending": "ÎN AȘTEPTARE", 27 | "tierplatinum": "PLATINUM", 28 | "tiersilver": "ARGINT", 29 | "expandOnHoverOff": "Dezactivată" 30 | } -------------------------------------------------------------------------------- /src/localisation/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Позиция значка", 3 | "badgePositionDescription": "Где будет значок на фоне страницы игры", 4 | "badgeSize": "Размер значка", 5 | "badgeSizeDescription": "Выберите другой размер значка", 6 | "caching": "Кэширование", 7 | "clearCache": "Очистить кэш ProtonDB", 8 | "clearCacheLabel": "Очистить кэш, чтобы принудительно обновить все значки ProtonDB", 9 | "expandOnHover": "Развернуть ярлык при наведении", 10 | "expandOnHoverDescription": "Только минималистичный. Показывать текст значка на наведении", 11 | "positionTopLeft": "Вверху слева", 12 | "positionTopRight": "Вверху справа", 13 | "settings": "Настройки", 14 | "sizeMinimalist": "Минималистичный", 15 | "sizeRegular": "Обычный", 16 | "sizeSmall": "Маленький", 17 | "tierborked": "СЛОМАНО", 18 | "tierbronze": "БРОНЗА", 19 | "tiergold": "ЗОЛОТО", 20 | "tierMinborked": "СЛОМ", 21 | "tierMinbronze": "БРОН", 22 | "tierMingold": "ЗОЛ", 23 | "tierMinpending": "ОЖИД", 24 | "tierMinplatinum": "ПЛАТ", 25 | "tierMinsilver": "СЕРБ", 26 | "tierpending": "В ОЖИДАНИИ", 27 | "tierplatinum": "ПЛАТИНА", 28 | "tiersilver": "СЕРЕБРО", 29 | "expandOnHoverOff": "Выкл" 30 | } -------------------------------------------------------------------------------- /src/localisation/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Badge Position", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Badge Size", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Caching", 7 | "clearCache": "Clear ProtonDB Cache", 8 | "clearCacheLabel": "Clear the cache to force refresh all ProtonDB badges", 9 | "expandOnHover": "Expand Label on hover", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "Top Left", 12 | "positionTopRight": "Top Right", 13 | "settings": "Settings", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Small", 17 | "tierborked": "BORKED", 18 | "tierbronze": "BRONZE", 19 | "tiergold": "GOLD", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GOLD", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SILV", 26 | "tierpending": "PENDING", 27 | "tierplatinum": "PLATINUM", 28 | "tiersilver": "SILVER", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Badge Position", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Badge Size", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Caching", 7 | "clearCache": "Clear ProtonDB Cache", 8 | "clearCacheLabel": "Clear the cache to force refresh all ProtonDB badges", 9 | "expandOnHover": "Expand Label on hover", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "Top Left", 12 | "positionTopRight": "Top Right", 13 | "settings": "Settings", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Small", 17 | "tierborked": "KAPUTT", 18 | "tierbronze": "BRONS", 19 | "tiergold": "GULD", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GULD", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SILV", 26 | "tierpending": "PENDING", 27 | "tierplatinum": "PLATINA", 28 | "tiersilver": "SILVER", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/th.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "ตําแหน่งตรารับรอง", 3 | "badgePositionDescription": "ตำแหน่งของตรารับรองในหน้าเกมส์ส่วนบน", 4 | "badgeSize": "ขนาดตรารับรอง", 5 | "badgeSizeDescription": "เลือกขนาดตรารับรอง", 6 | "caching": "แคช", 7 | "clearCache": "ลบ ProtonDB แคช", 8 | "clearCacheLabel": "ลบแคชเพื่อบังคับให้รีเฟรชตรารับรองทั้งหมดใหม่", 9 | "expandOnHover": "ขยายเครื่องหมายเมื่อเลือก", 10 | "expandOnHoverDescription": "เฉพาะแบบย่อ แสดงตรารับรองเมื่อโฟกัส", 11 | "positionTopLeft": "ด้านบนซ้าย", 12 | "positionTopRight": "ด้านบนขวา", 13 | "settings": "การตั้งค่า", 14 | "sizeMinimalist": "แบบย่อ", 15 | "sizeRegular": "ปกติ", 16 | "sizeSmall": "เล็ก", 17 | "tierborked": "ขัดข้อง", 18 | "tierbronze": "บรอนซ์", 19 | "tiergold": "ทอง", 20 | "tierMinborked": "ขัดข้อง", 21 | "tierMinbronze": "บรอนซ์", 22 | "tierMingold": "ทองคำ", 23 | "tierMinpending": "รอ", 24 | "tierMinplatinum": "แพลต", 25 | "tierMinsilver": "เงิน", 26 | "tierpending": "รอตรวจสอบ", 27 | "tierplatinum": "แพลตตินั่ม", 28 | "tiersilver": "เงิน", 29 | "expandOnHoverOff": "ปิด" 30 | } -------------------------------------------------------------------------------- /src/localisation/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Badge Position", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Badge Size", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Caching", 7 | "clearCache": "Clear ProtonDB Cache", 8 | "clearCacheLabel": "Clear the cache to force refresh all ProtonDB badges", 9 | "expandOnHover": "Expand Label on hover", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "Top Left", 12 | "positionTopRight": "Top Right", 13 | "settings": "Settings", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Small", 17 | "tierborked": "OLMAMIŞ", 18 | "tierbronze": "BRONZ", 19 | "tiergold": "ALTIN", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GOLD", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SILV", 26 | "tierpending": "PENDING", 27 | "tierplatinum": "PLATIN", 28 | "tiersilver": "GÜMÜŞ", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/uk.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Розташування значка", 3 | "badgePositionDescription": "Розташуйте значок в заголовку гри", 4 | "badgeSize": "Розмір значка", 5 | "badgeSizeDescription": "Оберіть інший розмір для значка", 6 | "caching": "Кешування", 7 | "clearCache": "Очистити кеш ProtonDB", 8 | "clearCacheLabel": "Очистити кеш, щоб примусово оновити всі значки ProtonDB", 9 | "expandOnHover": "Розгорнути мітку на наведенні", 10 | "expandOnHoverDescription": "Тільки мінімалістичний. Показувати текст значка при наведенні", 11 | "positionTopLeft": "Зверху зліва", 12 | "positionTopRight": "Зверху справа", 13 | "settings": "Налаштування", 14 | "sizeMinimalist": "Мінімалістичний", 15 | "sizeRegular": "Звичайний", 16 | "sizeSmall": "Маленький", 17 | "tierborked": "ЗЛАМАНО", 18 | "tierbronze": "БРОНЗА", 19 | "tiergold": "ЗОЛОТО", 20 | "tierMinborked": "ЗЛАМ", 21 | "tierMinbronze": "БРОН", 22 | "tierMingold": "ЗОЛ", 23 | "tierMinpending": "ОЧІК", 24 | "tierMinplatinum": "ПЛАТ", 25 | "tierMinsilver": "СРІБ", 26 | "tierpending": "В ОЧІКУВАННІ", 27 | "tierplatinum": "ПЛАТИНУМ", 28 | "tiersilver": "СРІБЛО", 29 | "expandOnHoverOff": "Вимк" 30 | } -------------------------------------------------------------------------------- /src/localisation/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "Badge Position", 3 | "badgePositionDescription": "Position the badge within the game page header", 4 | "badgeSize": "Badge Size", 5 | "badgeSizeDescription": "Choose a different size for the badge", 6 | "caching": "Caching", 7 | "clearCache": "Clear ProtonDB Cache", 8 | "clearCacheLabel": "Clear the cache to force refresh all ProtonDB badges", 9 | "expandOnHover": "Expand Label on hover", 10 | "expandOnHoverDescription": "Minimalist Only. Display badge text on focus", 11 | "positionTopLeft": "Top Left", 12 | "positionTopRight": "Top Right", 13 | "settings": "Settings", 14 | "sizeMinimalist": "Minimalist", 15 | "sizeRegular": "Regular", 16 | "sizeSmall": "Small", 17 | "tierborked": "BORKED", 18 | "tierbronze": "BRONZE", 19 | "tiergold": "GOLD", 20 | "tierMinborked": "BORK", 21 | "tierMinbronze": "BRON", 22 | "tierMingold": "GOLD", 23 | "tierMinpending": "PEND", 24 | "tierMinplatinum": "PLAT", 25 | "tierMinsilver": "SILV", 26 | "tierpending": "PENDING", 27 | "tierplatinum": "PLATINUM", 28 | "tiersilver": "SILVER", 29 | "expandOnHoverOff": "Off" 30 | } -------------------------------------------------------------------------------- /src/localisation/zh-cn.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "徽章位置", 3 | "badgePositionDescription": "徽章在游戏详情页的位置", 4 | "badgeSize": "徽章尺寸", 5 | "badgeSizeDescription": "为徽章选择尺寸", 6 | "caching": "缓存", 7 | "clearCache": "清除 ProtonDB 缓存", 8 | "clearCacheLabel": "清除所有缓存并且强制刷新 ProtonDB 徽章", 9 | "expandOnHover": "悬停时展开", 10 | "expandOnHoverDescription": "仅支持极简徽章。在选中徽章时显示文字。", 11 | "positionTopLeft": "左上角", 12 | "positionTopRight": "右上角", 13 | "settings": "设置", 14 | "sizeMinimalist": "极简", 15 | "sizeRegular": "正常", 16 | "sizeSmall": "小型", 17 | "tierborked": "不可玩", 18 | "tierbronze": "铜牌", 19 | "tiergold": "金牌", 20 | "tierMinborked": "不可玩", 21 | "tierMinbronze": "铜牌", 22 | "tierMingold": "金牌", 23 | "tierMinpending": "暂无", 24 | "tierMinplatinum": "白金", 25 | "tierMinsilver": "银牌", 26 | "tierpending": "暂无", 27 | "tierplatinum": "白金", 28 | "tiersilver": "银牌", 29 | "expandOnHoverOff": "关闭" 30 | } -------------------------------------------------------------------------------- /src/localisation/zh-tw.json: -------------------------------------------------------------------------------- 1 | { 2 | "badgePosition": "徽章位置", 3 | "badgePositionDescription": "顯示在遊戲詳細資料頁面的位置", 4 | "badgeSize": "徽章尺寸", 5 | "badgeSizeDescription": "選擇不同徽章大小", 6 | "caching": "快取", 7 | "clearCache": "清除 ProtonDB 快取", 8 | "clearCacheLabel": "清除快取,以便更新從 ProtonDB 下載的徽章", 9 | "expandOnHover": "懸浮時展開標籤", 10 | "expandOnHoverDescription": "僅極簡可用。在被選擇時顯示徽章文字。", 11 | "positionTopLeft": "左上", 12 | "positionTopRight": "右上", 13 | "settings": "設定", 14 | "sizeMinimalist": "極簡", 15 | "sizeRegular": "正常", 16 | "sizeSmall": "小型", 17 | "tierborked": "不可玩", 18 | "tierbronze": "銅", 19 | "tiergold": "金", 20 | "tierMinborked": "不可玩", 21 | "tierMinbronze": "銅", 22 | "tierMingold": "金", 23 | "tierMinpending": "無", 24 | "tierMinplatinum": "白金", 25 | "tierMinsilver": "銀", 26 | "tierpending": "等您回報", 27 | "tierplatinum": "白金", 28 | "tiersilver": "銀", 29 | "expandOnHoverOff": "關閉" 30 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ESNEXT", 4 | "lib": [ 5 | "es6", 6 | "dom", 7 | "dom.iterable", 8 | "esnext" 9 | ], 10 | "allowJs": true, 11 | "skipLibCheck": true, 12 | "strict": true, 13 | "forceConsistentCasingInFileNames": true, 14 | "esModuleInterop": true, 15 | "module": "esnext", 16 | "moduleResolution": "node", 17 | "resolveJsonModule": true, 18 | "isolatedModules": true, 19 | "jsx": "react", 20 | "incremental": true, 21 | "outDir": "dist", 22 | }, 23 | "include": ["src", "types"], 24 | "exclude": [ 25 | "node_modules", 26 | ".vscode", 27 | ] 28 | } -------------------------------------------------------------------------------- /types/ProtonDBTier.ts: -------------------------------------------------------------------------------- 1 | type ProtonDBTier = 2 | | 'borked' 3 | | 'platinum' 4 | | 'gold' 5 | | 'silver' 6 | | 'bronze' 7 | | 'pending' 8 | 9 | export default ProtonDBTier 10 | -------------------------------------------------------------------------------- /types/SteamClient.d.ts: -------------------------------------------------------------------------------- 1 | // https://github.com/hulkrelax/deckfaqs/blob/0dbc26ebd19f4b6e1bc06e5b4c940b1ba77fed22/src/SteamClient.d.ts 2 | 3 | // Non-exhaustive definition of the SteamClient that is available in the SP tab 4 | // This object has a lot more properties/methods than are listed here 5 | declare namespace SteamClient { 6 | const Apps: { 7 | GetAllShortcuts(): Promise 8 | RegisterForGameActionStart( 9 | callback: ( 10 | actionType: number, 11 | strAppId: string, 12 | actionName: string 13 | ) => unknown 14 | ): RegisteredEvent 15 | } 16 | const InstallFolder: { 17 | GetInstallFolders(): Promise 18 | } 19 | const GameSessions: { 20 | RegisterForAppLifetimeNotifications( 21 | callback: (appState: AppState) => unknown 22 | ): RegisteredEvent 23 | } 24 | const BrowserView: { 25 | Create(): unknown 26 | CreatePopup(): unknown 27 | Destroy(e: unknown): void 28 | } 29 | 30 | const Storage: { 31 | GetJSON(key: string): Promise 32 | SetObject(key: string, value: Record): Promise 33 | DeleteKey(key: string): Promise 34 | } 35 | } 36 | 37 | declare const enum DisplayStatus { 38 | Invalid = 0, 39 | Launching = 1, 40 | Uninstalling = 2, 41 | Installing = 3, 42 | Running = 4, 43 | Validating = 5, 44 | Updating = 6, 45 | Downloading = 7, 46 | Synchronizing = 8, 47 | ReadyToInstall = 9, 48 | ReadyToPreload = 10, 49 | ReadyToLaunch = 11, 50 | RegionRestricted = 12, 51 | PresaleOnly = 13, 52 | InvalidPlatform = 14, 53 | PreloadComplete = 16, 54 | BorrowerLocked = 17, 55 | UpdatePaused = 18, 56 | UpdateQueued = 19, 57 | UpdateRequired = 20, 58 | UpdateDisabled = 21, 59 | DownloadPaused = 22, 60 | DownloadQueued = 23, 61 | DownloadRequired = 24, 62 | DownloadDisabled = 25, 63 | LicensePending = 26, 64 | LicenseExpired = 27, 65 | AvailForFree = 28, 66 | AvailToBorrow = 29, 67 | AvailGuestPass = 30, 68 | Purchase = 31, 69 | Unavailable = 32, 70 | NotLaunchable = 33, 71 | CloudError = 34, 72 | CloudOutOfDate = 35, 73 | Terminating = 36 74 | } 75 | 76 | type AppState = { 77 | unAppID: number 78 | nInstanceID: number 79 | bRunning: boolean 80 | } 81 | 82 | declare namespace appStore { 83 | function GetAppOverviewByGameID(appId: number): AppOverview 84 | } 85 | 86 | type RegisteredEvent = { 87 | unregister(): void 88 | } 89 | 90 | type Shortcut = { 91 | appid: number 92 | data: { 93 | bIsApplication: true 94 | strAppName: string 95 | strSortAs: string 96 | strExePath: string 97 | strShortcutPath: string 98 | strArguments: string 99 | strIconPath: string 100 | } 101 | } 102 | 103 | type AppOverview = { 104 | app_type: number 105 | appid: string 106 | display_name: string 107 | display_status: DisplayStatus 108 | sort_as: string 109 | } 110 | 111 | type App = { 112 | nAppID: number 113 | strAppName: string 114 | strSortAs: string 115 | rtLastPlayed: number 116 | strUsedSize: string 117 | strDLCSize: string 118 | strWorkshopSize: string 119 | strStagedSize: string 120 | } 121 | 122 | type InstallFolder = { 123 | nFolderIndex: number 124 | strFolderPath: string 125 | strUserLabel: string 126 | strDriveName: string 127 | strCapacity: string 128 | strFreeSpace: string 129 | strUsedSize: string 130 | strDLCSize: string 131 | strWorkshopSize: string 132 | strStagedSize: string 133 | bIsDefaultFolder: boolean 134 | bIsMounted: boolean 135 | bIsFixed: boolean 136 | vecApps: App[] 137 | } 138 | -------------------------------------------------------------------------------- /types/types.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.svg' { 2 | const content: string 3 | export default content 4 | } 5 | 6 | declare module '*.png' { 7 | const content: string 8 | export default content 9 | } 10 | 11 | declare module '*.jpg' { 12 | const content: string 13 | export default content 14 | } 15 | --------------------------------------------------------------------------------