Store overhaul (#142)

* feat: small library tweaks + company page

* feat: new store view

* fix: ci merge error

* feat: add genres to store page

* feat: sorting

* feat: lock game/version imports while their tasks are running

* feat: feature games

* feat: tag based filtering

* fix: make tags alphabetical

* refactor: move a bunch of i18n to common

* feat: add localizations for everything

* fix: title description on panel

* fix: feature carousel text

* fix: i18n footer strings

* feat: add tag page

* fix: develop merge

* feat: offline games support (don't error out if provider throws)

* feat: tag management

* feat: show library next to game import + small fixes

* feat: most of the company and tag managers

* feat: company text field editing

* fix: small fixes + tsgo experiemental

* feat: upload icon and banner

* feat: store infinite scrolling and bulk import mode

* fix: lint

* fix: add drop-base to prettier ignore
This commit is contained in:
DecDuck
2025-07-30 13:40:49 +10:00
committed by GitHub
parent 1ae051f066
commit 8363de2eed
97 changed files with 3506 additions and 524 deletions

View File

@ -70,6 +70,11 @@ export const systemACLDescriptions: ObjectFromList<typeof systemACLs> = {
"game:image:new": "Upload an image for a game.",
"game:image:delete": "Delete an image for a game.",
"company:read": "Fetch companies.",
"company:create": "Create a new company.",
"company:update": "Update existing companies.",
"company:delete": "Delete companies.",
"import:version:read":
"Fetch versions to be imported, and information about versions to be imported.",
"import:version:new": "Import a game version.",
@ -77,6 +82,10 @@ export const systemACLDescriptions: ObjectFromList<typeof systemACLs> = {
"Fetch games to be imported, and search the metadata for games.",
"import:game:new": "Import a game.",
"tags:read": "Fetch all tags",
"tags:create": "Create a tag",
"tags:delete": "Delete a tag",
"user:read": "Fetch any user's information.",
"user:delete": "Delete a user.",

View File

@ -65,6 +65,11 @@ export const systemACLs = [
"game:image:new",
"game:image:delete",
"company:read",
"company:update",
"company:create",
"company:delete",
"import:version:read",
"import:version:new",
@ -78,6 +83,10 @@ export const systemACLs = [
"news:create",
"news:delete",
"tags:read",
"tags:create",
"tags:delete",
"task:read",
"task:start",