mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 17:14:50 +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>
102 lines
2.6 KiB
JavaScript
102 lines
2.6 KiB
JavaScript
import { invoke } from '@tauri-apps/api/core'
|
|
import { save } from '@tauri-apps/plugin-dialog'
|
|
|
|
import { get_full_path, get_mod_full_path } from '@/helpers/instance'
|
|
|
|
export async function isDev() {
|
|
return await invoke('is_dev')
|
|
}
|
|
|
|
export async function areUpdatesEnabled() {
|
|
return await invoke('are_updates_enabled')
|
|
}
|
|
|
|
export async function getUpdateSize(updateRid) {
|
|
return await invoke('get_update_size', { rid: updateRid })
|
|
}
|
|
|
|
export async function enqueueUpdateForInstallation(updateRid) {
|
|
return await invoke('enqueue_update_for_installation', { rid: updateRid })
|
|
}
|
|
|
|
export async function removeEnqueuedUpdate() {
|
|
return await invoke('remove_enqueued_update')
|
|
}
|
|
|
|
export async function setRestartAfterPendingUpdate(should_restart) {
|
|
return await invoke('set_restart_after_pending_update', { shouldRestart: should_restart })
|
|
}
|
|
|
|
// One of 'Windows', 'Linux', 'MacOS'
|
|
export async function getOS() {
|
|
return await invoke('plugin:utils|get_os')
|
|
}
|
|
|
|
export async function isNetworkMetered() {
|
|
return await invoke('plugin:utils|is_network_metered')
|
|
}
|
|
|
|
export async function openPath(path) {
|
|
return await invoke('plugin:utils|open_path', { path })
|
|
}
|
|
|
|
export async function highlightInFolder(path) {
|
|
return await invoke('plugin:utils|highlight_in_folder', { path })
|
|
}
|
|
|
|
export async function showLauncherLogsFolder() {
|
|
return await invoke('plugin:utils|show_launcher_logs_folder', {})
|
|
}
|
|
|
|
export async function createInstanceShortcut(instanceName, instanceId, options = {}) {
|
|
const outputPath = await save({
|
|
defaultPath: `Modrinth - ${instanceName}`,
|
|
})
|
|
|
|
if (!outputPath) return null
|
|
|
|
return await invoke('plugin:shortcuts|create_instance_shortcut', {
|
|
instanceName,
|
|
instanceId,
|
|
outputPath,
|
|
server: options.server,
|
|
singleplayerWorld: options.singleplayerWorld,
|
|
})
|
|
}
|
|
|
|
export async function showAppDbBackupsFolder() {
|
|
return await invoke('plugin:utils|show_app_db_backups_folder', {})
|
|
}
|
|
|
|
// Opens an instance's folder in the OS file explorer
|
|
export async function showInstanceInFolder(instanceId) {
|
|
const fullPath = await get_full_path(instanceId)
|
|
return await openPath(fullPath)
|
|
}
|
|
|
|
export async function highlightModInInstance(instanceId, projectPath) {
|
|
const fullPath = await get_mod_full_path(instanceId, projectPath)
|
|
return await highlightInFolder(fullPath)
|
|
}
|
|
|
|
export async function restartApp() {
|
|
return await invoke('restart_app')
|
|
}
|
|
|
|
export const releaseColor = (releaseType) => {
|
|
switch (releaseType) {
|
|
case 'release':
|
|
return 'green'
|
|
case 'beta':
|
|
return 'orange'
|
|
case 'alpha':
|
|
return 'red'
|
|
default:
|
|
return ''
|
|
}
|
|
}
|
|
|
|
export async function copyToClipboard(text) {
|
|
await navigator.clipboard.writeText(text)
|
|
}
|