diff --git a/Bloxstrap/Helpers/UpdateChecker.cs b/Bloxstrap/Helpers/UpdateChecker.cs index b335ec88..291ac89d 100644 --- a/Bloxstrap/Helpers/UpdateChecker.cs +++ b/Bloxstrap/Helpers/UpdateChecker.cs @@ -14,7 +14,7 @@ public static void CheckInstalledVersion() FileVersionInfo currentVersionInfo = FileVersionInfo.GetVersionInfo(Environment.ProcessPath); FileVersionInfo installedVersionInfo = FileVersionInfo.GetVersionInfo(Program.FilePath); - if (installedVersionInfo != currentVersionInfo) + if (installedVersionInfo.ProductVersion != currentVersionInfo.ProductVersion) { DialogResult result = MessageBox.Show( $"The version of {Program.ProjectName} you've launched is newer than the version you currently have installed.\nWould you like to update your installed version of {Program.ProjectName}?", diff --git a/README.md b/README.md index b3686a6a..6ad8a2c0 100644 --- a/README.md +++ b/README.md @@ -15,10 +15,9 @@ Please keep in mind that **Bloxstrap is in very early development**, and you'll Here's some of the features that Bloxstrap provides over the stock Roblox bootstrapper: * Bootstrapper style can be customized (including being able to emulate older version looks) -* Install location can be selected (useful if you usually install all your games on a separate drive) -* Support for the old death sound (no messing around with your install folder, and it persists on updates!) - -Some more features that we hope to add include more custom styles, and Discord Rich Presence support. +* Ability to choose where to install Roblox to +* Old death sound can be re-enabled permanently +* Support for Discord Rich Presence ## Installing Bloxstrap requires the [x86 .NET 6 Desktop Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-desktop-6.0.7-windows-x86-installer). If you don't already have it installed, you'll be prompted to install it when running Bloxstrap.