diff options
| author | Party Wumpus <48649272+PartyWumpus@users.noreply.github.com> | 2024-02-07 17:38:08 +0000 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-02-14 16:43:30 -0500 |
| commit | ec41c6121956afc4eb33c9f21905cdce4c07a097 (patch) | |
| tree | 6310daec76d70fbbd78fb765b36adf2b0fde1ce5 /backend | |
| parent | 21c7742f9a5ad499a95c6b54644d5494d5536967 (diff) | |
| download | decky-loader-ec41c6121956afc4eb33c9f21905cdce4c07a097.tar.gz decky-loader-ec41c6121956afc4eb33c9f21905cdce4c07a097.zip | |
Refactor plugin store and add sorting by downloads and release date (#547)
* untested first commit
* fix types & names
* comment out built in sorting for now
* rerun search when sort changes
* fix ts complaints
* use prettier
* stop switch-case fall through
* move spinner
* use locale instead of hardcoded string
* fix typo
* add sorting by downloads & try using the data field in the dropdown for data
* fix typing error
* fix asc/desc in dropdown
* fix asc/desc again. asc = smaller one go first aaaaa
* I don't think i know what ascending means maybe
* use props instead of children, like a normal component
Diffstat (limited to 'backend')
| -rw-r--r-- | backend/locales/en-US.json | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backend/locales/en-US.json b/backend/locales/en-US.json index 7845ae4f..aaa7659f 100644 --- a/backend/locales/en-US.json +++ b/backend/locales/en-US.json @@ -218,6 +218,10 @@ "about": "About", "alph_asce": "Alphabetical (Z to A)", "alph_desc": "Alphabetical (A to Z)", + "date_asce": "Oldest First", + "date_desc": "Newest First", + "downloads_asce": "Least Downloaded First", + "downloads_desc": "Most Downloaded First", "title": "Browse" }, "store_testing_cta": "Please consider testing new plugins to help the Decky Loader team!", |
