Sharing logs (#325)

* Sharing

* Mod UI changes

* Final touches

* update UI

* Run lint

* Addressed changes
This commit is contained in:
Adrian O.V
2023-07-20 12:56:48 -04:00
committed by GitHub
parent 1f478ec9fc
commit 448de384d1
19 changed files with 957 additions and 297 deletions

View File

@@ -57,3 +57,13 @@ export const installVersionDependencies = async (profile, version) => {
}
}
}
export const openLink = (url) => {
window.__TAURI_INVOKE__('tauri', {
__tauriModule: 'Shell',
message: {
cmd: 'open',
path: url,
},
})
}