Skip to content

Commit

Permalink
feat: updater includes Qopy in the title
Browse files Browse the repository at this point in the history
  • Loading branch information
0PandaDEV committed Nov 16, 2024
1 parent 6250a3e commit 344db99
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"postinstall": "nuxt prepare"
},
"dependencies": {
"@tauri-apps/api": "2.1.1",
"@tauri-apps/api": "2.0.3",
"@tauri-apps/cli": "2.1.0",
"@tauri-apps/plugin-autostart": "2.0.0",
"@tauri-apps/plugin-fs": "2.0.2",
Expand All @@ -21,6 +21,6 @@
"overlayscrollbars": "2.10.0",
"overlayscrollbars-vue": "0.5.9",
"sass": "1.81.0",
"vue": "3.5.12"
"vue": "3.5.13"
}
}
}
4 changes: 2 additions & 2 deletions src-tauri/src/api/updater.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub async fn check_for_updates(app: AppHandle) {

app.dialog()
.message(msg)
.title("Update Available")
.title("Qopy Update Available")
.buttons(MessageDialogButtons::OkCancelCustom(String::from("Install"), String::from("Cancel")))
.show(move |response| {
if !response {
Expand All @@ -31,7 +31,7 @@ pub async fn check_for_updates(app: AppHandle) {
Ok(_) => {
app.dialog()
.message("Update installed successfully. The application needs to restart to apply the changes.")
.title("Update Installed")
.title("Qopy Update Installed")
.buttons(MessageDialogButtons::OkCancelCustom(String::from("Restart"), String::from("Cancel")))
.show(move |response| {
if response {
Expand Down

0 comments on commit 344db99

Please sign in to comment.