diff --git a/README.md b/README.md index 9f15b85..70db9c3 100644 --- a/README.md +++ b/README.md @@ -27,10 +27,8 @@ run `rustup update` ### Building -- Windows Installer - run `yarn tauri build`. It will build your Frontend, compile the Rust binary, collect all external binaries and resources and finally produce neat platform-specific bundles and installers. -- macOS Bundle - run `yarn tauri build`. It will build your frontend (if configured, see [beforeBuildCommand](https://tauri.app/v1/api/config#buildconfig.beforebuildcommand)), compile the Rust binary, collect all external binaries and resources and finally produce neat platform-specific bundles and installers. +- **Windows Installer**: run `yarn tauri build`. It will build your Frontend, compile the Rust binary, collect all external binaries and resources and finally produce neat platform-specific bundles and installers. +- **macOS Bundle**: run `yarn tauri build`. It will build your frontend (if configured, see [beforeBuildCommand](https://tauri.app/v1/api/config#buildconfig.beforebuildcommand)), compile the Rust binary, collect all external binaries and resources and finally produce neat platform-specific bundles and installers. ### Update diff --git a/src/main.ts b/src/main.ts index 85a2b56..abb63aa 100644 --- a/src/main.ts +++ b/src/main.ts @@ -4,17 +4,17 @@ import App from './App.vue' createApp(App).mount('#app') // update -import {checkUpdate, installUpdate} from '@tauri-apps/api/updater' -import {relaunch} from '@tauri-apps/api/process' - -try { - const {shouldUpdate, manifest} = await checkUpdate() - if (shouldUpdate) { - // display dialog - await installUpdate() - // install complete, restart app - await relaunch() - } -} catch (error) { - console.log(error) -} \ No newline at end of file +// import {checkUpdate, installUpdate} from '@tauri-apps/api/updater' +// import {relaunch} from '@tauri-apps/api/process' +// +// try { +// const {shouldUpdate, manifest} = await checkUpdate() +// if (shouldUpdate) { +// // display dialog +// await installUpdate() +// // install complete, restart app +// await relaunch() +// } +// } catch (error) { +// console.log(error) +// } \ No newline at end of file