fix(plugin): screenshot limit, version/build fields, delete button, workspace scripts
- list_screenshots: bump limit 12 → 50 so users can scroll further back - Add versionString + buildId to DeckyVaultImportV1, SessionData, and buildImportPayload. Import endpoint now saves them on new game versions. - Screenshot delete button in preset detail modal: owner/admin sees a trash icon on hover that calls DELETE /api/performance/:id/screenshots/:sid - Root workspace scripts for plugin workflow: bun run plugin:build | plugin:zip | plugin:release | plugin:deploy - Add deploy.sh (SSH scripts to push plugin to Deck)
This commit is contained in:
+5
-1
@@ -14,7 +14,11 @@
|
||||
"db:migrate": "bun run --filter @deckyvault/web db:migrate",
|
||||
"db:push": "bun run --filter @deckyvault/web db:push",
|
||||
"db:studio": "bun run --filter @deckyvault/web db:studio",
|
||||
"db:seed": "bun run --filter @deckyvault/web db:seed"
|
||||
"db:seed": "bun run --filter @deckyvault/web db:seed",
|
||||
"plugin:build": "bun run --filter @deckyvault/plugin build",
|
||||
"plugin:zip": "bun run --filter @deckyvault/plugin zip",
|
||||
"plugin:release": "bun run --filter @deckyvault/plugin release",
|
||||
"plugin:deploy": "bun run --filter @deckyvault/plugin build && bash plugins/decky-vault/scripts/deploy.sh"
|
||||
},
|
||||
"trustedDependencies": ["sharp", "unrs-resolver"],
|
||||
"overrides": {
|
||||
|
||||
Reference in New Issue
Block a user