feat(themes): Theme Store install counts, downloads & sort (#1036)

* feat(themes): install counts, downloads, popularity & sort in the Theme Store

Each registry theme now carries an install count and a last-changed date. Store
rows show them in a dedicated meta panel (author, popularity bar, total
downloads, last changed), plus a sort dropdown (most popular / newest / name),
zebra-striped rows, a numbered pager, and a note that the stats refresh daily.
Adds a shared formatRelativeTime helper (formatLastSeen now delegates to it).

* test(themes): cover sort modes, pager jump and relative-time formatting

* fix(build): gate nvidia_quirk_active to Linux

Its only caller is the Linux branch of theme_animation_risk, so on Windows and
macOS the function was dead code and tripped clippy's -D warnings.

* docs: CHANGELOG + credits for theme store download stats & sort (#1036)
This commit is contained in:
Psychotoxical
2026-06-08 22:05:41 +02:00
committed by GitHub
parent 68f0f09aae
commit 0878cbf308
19 changed files with 346 additions and 48 deletions
+8 -1
View File
@@ -328,6 +328,7 @@ export const settings = {
themeStoreSubmitText: 'Laget ditt eget tema? Del det med fellesskapet — mer info i tema-repoet.',
themeStoreSubmitLink: 'Åpne tema-repoet',
themeStoreNetworkNotice: 'Theme Store laster katalogen og forhåndsvisninger fra eksterne tjenester (jsDelivr-CDN og GitHub). Ingen personopplysninger sendes.',
themeStoreStatsNotice: 'Statistikk for nedlastinger og sist endret oppdateres én gang om dagen (rundt 04:17 UTC).',
themeStoreSearchPlaceholder: 'Søk i temaer…',
themeStoreFilterMode: 'Filtrer etter modus',
themeStoreModeAll: 'Alle',
@@ -341,7 +342,13 @@ export const settings = {
themeStoreEmpty: 'Ingen temaer samsvarer med filtrene dine.',
themeStoreActive: 'Aktiv',
themeStoreEnlarge: 'Forstørr forhåndsvisning',
themeStoreByAuthor: 'av {{author}}',
themeStoreSortPopular: 'Mest populære',
themeStoreSortNewest: 'Nyeste',
themeStoreSortName: 'Alfabetisk',
themeStoreAuthor: 'Forfatter',
themeStorePopularity: 'Popularitet',
themeStoreDownloads: 'Totalt nedlastinger',
themeStoreLastChanged: 'Sist endret',
themeMigrationNoticeTitle: 'Temaet er flyttet til butikken',
themeMigrationNoticeBody: '{{themes}} følger ikke lenger med appen. Du kan installere det på nytt fra temabutikken (Innstillinger → Temaer), eller velge et annet tema.',
themeMigrationNoticeOpen: 'Åpne temabutikken',