Skip to content

Commit

Permalink
Fix updater bug and update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
pizzaboxer committed Aug 11, 2022
1 parent bacb650 commit 6152bce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Bloxstrap/Helpers/UpdateChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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}?",
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 6152bce

Please sign in to comment.