feat: updater includes Qopy in the title

This commit is contained in:
PandaDEV 2024-11-16 21:16:56 +10:00
parent 6250a3e84b
commit 344db99d35
No known key found for this signature in database
GPG key ID: 13EFF9BAF70EE75C
2 changed files with 5 additions and 5 deletions

View file

@ -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 {
@ -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 {