Remove InstallingUpdate progress notification

Velopack won't install the updates while the program is open, it'll do
it in between restarts or before starting.
This commit is contained in:
smallketchup82 2024-07-04 17:32:30 -04:00
parent cae3607caf
commit c13f24d553
No known key found for this signature in database
GPG Key ID: 7345B7C561243F1E
2 changed files with 0 additions and 11 deletions

View File

@ -135,11 +135,6 @@ public static class NotificationsStrings
/// </summary>
public static LocalisableString DownloadingUpdate => new TranslatableString(getKey(@"downloading_update"), @"Downloading update...");
/// <summary>
/// "Installing update..."
/// </summary>
public static LocalisableString InstallingUpdate => new TranslatableString(getKey(@"installing_update"), @"Installing update...");
private static string getKey(string key) => $@"{prefix}:{key}";
}
}

View File

@ -176,12 +176,6 @@ public void StartDownload()
Text = NotificationsStrings.DownloadingUpdate;
}
public void StartInstall()
{
Progress = 0;
Text = NotificationsStrings.InstallingUpdate;
}
public void FailDownload()
{
State = ProgressNotificationState.Cancelled;