mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 09:04:55 +00:00
* feat: base of instances v2 * feat: use old profiles with compat layer * prototype: instances v2 * fix: install_from using profile * fix: skins migration fix * fix: frontend still using profile path * fix: add update proj multiselect guard * fix: cargo fmt * fix: content missing fields * feat: break up app-lib/api/instance.rs * fix: check_content_updates mismatch * fix: updater modal cleanup w/new structure * feat: better update all handling * fix: remove preview_update_all * fix: feedback on bulk update + lint * fix: rem transitions * fix: change to jsonb * feat: app db backup after update * fix: lint * fix: sqlx prepare + use sqlx macros * fix: lint * fix: bugs * feat: defuck the installing process up * fix: bug of hell * fix: shear * fix: fmt * fix: install progress spacing + change mc/content/overrides to bytes * fix: lint * fix: prepr * fix: navtabs anim not working in app * fix: worlds.vue improvements + browse page fixes * feat: optimise queries + adapter fns * fix: lint * fix: lint * feat: shared modrinth-content-management crate (#6469) * feat: disable warnings setting * feat: add instances shortcuts (#6329) * Add modrinth://launch deep link to start a profile Support external profile launching via modrinth://launch/{profile_path} for integrations such as Stream Deck. * Change route to /launch/profile/{id} for future extensibility * fix: ensure profile path is url decoded * fix: URL-decode profile path from deep link * fix: use urlencoding crate for URL decoding * feat: implement app instance shortcuts * feat: change windows shortcut creation to use windows api instead * feat: implement creating a shortcut launching world/server * format * fmt * fix multiline inline tables * pnpm prepr * feat: move create shortcut to last item * refactor: split up shortcuts.rs for individual platforms * refactor: turn profile launch url into url type * use string literal and add safety comment * pt2 * refactor: rename anything that's profile into instance * update mac shortcut --------- Co-authored-by: DJCheesusReal <134006619+DJCheesusReal@users.noreply.github.com> --------- Co-authored-by: Truman Gao <106889354+tdgao@users.noreply.github.com> Co-authored-by: DJCheesusReal <134006619+DJCheesusReal@users.noreply.github.com>
51 lines
1.7 KiB
JSON
51 lines
1.7 KiB
JSON
{
|
|
"db_name": "SQLite",
|
|
"query": "\n\t\tSELECT\n\t\t\ti.id,\n\t\t\ti.name,\n\t\t\ti.icon_path,\n\t\t\tcs.game_version,\n\t\t\tcs.loader,\n\t\t\tCASE\n\t\t\t\tWHEN EXISTS (\n\t\t\t\t\tSELECT 1\n\t\t\t\t\tFROM instance_content_entries entry\n\t\t\t\t\tINNER JOIN instance_files file\n\t\t\t\t\t\tON file.id = entry.file_id\n\t\t\t\t\tWHERE entry.content_set_id = cs.id\n\t\t\t\t\t\tAND entry.project_id = ?\n\t\t\t\t\t\tAND file.missing = 0\n\t\t\t\t)\n\t\t\t\t\tTHEN 1\n\t\t\t\tELSE 0\n\t\t\tEND AS \"installed!: i64\"\n\t\tFROM instances i\n\t\tINNER JOIN instance_content_sets cs\n\t\t\tON cs.id = i.applied_content_set_id\n\t\tLEFT JOIN instance_links link\n\t\t\tON link.instance_id = i.id\n\t\tWHERE COALESCE(link.link_kind, 'unmanaged') NOT IN (\n\t\t\t'server_project',\n\t\t\t'server_project_modpack'\n\t\t)\n\t\tORDER BY i.name ASC\n\t\t",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"name": "id",
|
|
"ordinal": 0,
|
|
"type_info": "Text"
|
|
},
|
|
{
|
|
"name": "name",
|
|
"ordinal": 1,
|
|
"type_info": "Text"
|
|
},
|
|
{
|
|
"name": "icon_path",
|
|
"ordinal": 2,
|
|
"type_info": "Text"
|
|
},
|
|
{
|
|
"name": "game_version",
|
|
"ordinal": 3,
|
|
"type_info": "Text"
|
|
},
|
|
{
|
|
"name": "loader",
|
|
"ordinal": 4,
|
|
"type_info": "Text"
|
|
},
|
|
{
|
|
"name": "installed!: i64",
|
|
"ordinal": 5,
|
|
"type_info": "Integer"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Right": 1
|
|
},
|
|
"nullable": [
|
|
false,
|
|
false,
|
|
true,
|
|
false,
|
|
false,
|
|
false
|
|
]
|
|
},
|
|
"hash": "c19f53f6791bb289c870ba2607e012d20fc3b1eae65da64f22eb4aa7ac722d8a"
|
|
}
|