mirror of
https://github.com/modrinth/code.git
synced 2026-09-03 13:36:48 +00:00
* pnpm prepr * feat(instance-sync): screenshots sync * fix: prepr + fmt * fix: qa * feat: screenshit editor * feat: screenshot* editor qa * fix: qa * fix: lint * fix: aecsocket rev * qa: a11y tab navigation focus is cut off * qa: Change “Edited” badge to be bg-highlight-green * qa: friends list input style wrong * qa: toolbar width + labels * qa: multiselect changes * qa: anim changes * qa: card hover colors * qa: copy feedback * qa: hide date * qa: instance icon in overflow/contextmenu * qa: spacing * qa: group empty state text * qa: drag preview badge * qa: group deletion skip warning if no screenshots * qa: redesign editor * qa: remove screenshot parent/edited badge stuff * qa: control font size consistency * qa: viewer copy control * qa: editor fixes * qa: redirect on disable screenshot sync * qa: margin police * fix: crop * fix: qa * feat: initial start on basic instance file syncing (#7220) * qa: final * qa: final 2 * fix: lint + prepr * fix: copy * fix: screenshot editing outside of app causing ghost files in db + sync fail rollback impl * chore: split up * fix: fmt --------- Co-authored-by: tdgao <mr.trumgao@gmail.com>
20 lines
1.3 KiB
JSON
20 lines
1.3 KiB
JSON
{
|
|
"db_name": "SQLite",
|
|
"query": "\n\t\tSELECT\n\t\t\tscreenshots.id,\n\t\t\tscreenshots.instance_id,\n\t\t\tscreenshots.file_name,\n\t\t\tscreenshots.content_hash,\n\t\t\tscreenshots.file_size,\n\t\t\tscreenshots.modified_at,\n\t\t\tscreenshots.created_at,\n\t\t\tmemberships.group_id AS \"group_id?\"\n\t\tFROM screenshots\n\t\tLEFT JOIN screenshot_group_memberships memberships\n\t\t\tON memberships.screenshot_id = screenshots.id\n\t\tWHERE screenshots.instance_id = ? AND screenshots.file_name = ?\n\t\t",
|
|
"describe": {
|
|
"columns": [
|
|
{ "name": "id", "ordinal": 0, "type_info": "Text" },
|
|
{ "name": "instance_id", "ordinal": 1, "type_info": "Text" },
|
|
{ "name": "file_name", "ordinal": 2, "type_info": "Text" },
|
|
{ "name": "content_hash", "ordinal": 3, "type_info": "Text" },
|
|
{ "name": "file_size", "ordinal": 4, "type_info": "Integer" },
|
|
{ "name": "modified_at", "ordinal": 5, "type_info": "Integer" },
|
|
{ "name": "created_at", "ordinal": 6, "type_info": "Integer" },
|
|
{ "name": "group_id?", "ordinal": 7, "type_info": "Text" }
|
|
],
|
|
"parameters": { "Right": 2 },
|
|
"nullable": [false, false, false, false, false, false, false, false]
|
|
},
|
|
"hash": "6f17b1880668e6efb235eaa3808bd64a1c6bb5fc5f3c0082500afdcfa7340efa"
|
|
}
|