mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-18 16:41:36 -07:00
104 lines
3.7 KiB
C#
104 lines
3.7 KiB
C#
using System.Windows;
|
|
|
|
namespace Bloxstrap
|
|
{
|
|
public class Updater
|
|
{
|
|
public static void CheckInstalledVersion()
|
|
{
|
|
const string LOG_IDENT = "Updater::CheckInstalledVersion";
|
|
|
|
if (Environment.ProcessPath is null || !File.Exists(Paths.Application) || Environment.ProcessPath == Paths.Application)
|
|
return;
|
|
|
|
// 2.0.0 downloads updates to <BaseFolder>/Updates so lol
|
|
bool isAutoUpgrade = Environment.ProcessPath.StartsWith(Path.Combine(Paths.Base, "Updates")) || Environment.ProcessPath.StartsWith(Path.Combine(Paths.LocalAppData, "Temp"));
|
|
|
|
FileVersionInfo currentVersionInfo = FileVersionInfo.GetVersionInfo(Environment.ProcessPath);
|
|
|
|
if (MD5Hash.FromFile(Environment.ProcessPath) == MD5Hash.FromFile(Paths.Application))
|
|
return;
|
|
|
|
MessageBoxResult result;
|
|
|
|
// silently upgrade version if the command line flag is set or if we're launching from an auto update
|
|
if (App.IsUpgrade || isAutoUpgrade)
|
|
{
|
|
result = MessageBoxResult.Yes;
|
|
}
|
|
else
|
|
{
|
|
result = Controls.ShowMessageBox(
|
|
$"The version of {App.ProjectName} you've launched is different to the version you currently have installed.\nWould you like to upgrade your currently installed version?",
|
|
MessageBoxImage.Question,
|
|
MessageBoxButton.YesNo
|
|
);
|
|
}
|
|
|
|
if (result != MessageBoxResult.Yes)
|
|
return;
|
|
|
|
// yes, this is EXTREMELY hacky, but the updater process that launched the
|
|
// new version may still be open and so we have to wait for it to close
|
|
int attempts = 0;
|
|
while (attempts < 10)
|
|
{
|
|
attempts++;
|
|
|
|
try
|
|
{
|
|
File.Delete(Paths.Application);
|
|
break;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
if (attempts == 1)
|
|
App.Logger.WriteLine(LOG_IDENT, "Waiting for write permissions to update version");
|
|
|
|
Thread.Sleep(500);
|
|
}
|
|
}
|
|
|
|
if (attempts == 10)
|
|
{
|
|
App.Logger.WriteLine(LOG_IDENT, "Failed to update! (Could not get write permissions after 5 seconds)");
|
|
return;
|
|
}
|
|
|
|
File.Copy(Environment.ProcessPath, Paths.Application);
|
|
|
|
Bootstrapper.Register();
|
|
|
|
// update migrations
|
|
|
|
if (App.BuildMetadata.CommitRef.StartsWith("tag") && App.Version == "2.4.1")
|
|
{
|
|
App.FastFlags.SetValue("DFFlagDisableDPIScale", null);
|
|
App.FastFlags.SetValue("DFFlagVariableDPIScale2", null);
|
|
App.FastFlags.Save();
|
|
}
|
|
|
|
if (isAutoUpgrade)
|
|
{
|
|
App.NotifyIcon?.ShowAlert(
|
|
$"Bloxstrap has been upgraded to v{currentVersionInfo.ProductVersion}",
|
|
"See what's new in this version",
|
|
30,
|
|
(_, _) => Utilities.ShellExecute($"https://github.com/{App.ProjectRepository}/releases/tag/v{currentVersionInfo.ProductVersion}")
|
|
);
|
|
}
|
|
else if (!App.IsQuiet)
|
|
{
|
|
Controls.ShowMessageBox(
|
|
$"{App.ProjectName} has been updated to v{currentVersionInfo.ProductVersion}",
|
|
MessageBoxImage.Information,
|
|
MessageBoxButton.OK
|
|
);
|
|
|
|
Controls.ShowMenu();
|
|
|
|
App.Terminate();
|
|
}
|
|
}
|
|
}
|
|
} |