mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
Fix updater bug and update readme
This commit is contained in:
parent
bacb650ddc
commit
6152bce70d
@ -14,7 +14,7 @@ namespace Bloxstrap.Helpers
|
|||||||
FileVersionInfo currentVersionInfo = FileVersionInfo.GetVersionInfo(Environment.ProcessPath);
|
FileVersionInfo currentVersionInfo = FileVersionInfo.GetVersionInfo(Environment.ProcessPath);
|
||||||
FileVersionInfo installedVersionInfo = FileVersionInfo.GetVersionInfo(Program.FilePath);
|
FileVersionInfo installedVersionInfo = FileVersionInfo.GetVersionInfo(Program.FilePath);
|
||||||
|
|
||||||
if (installedVersionInfo != currentVersionInfo)
|
if (installedVersionInfo.ProductVersion != currentVersionInfo.ProductVersion)
|
||||||
{
|
{
|
||||||
DialogResult result = MessageBox.Show(
|
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}?",
|
$"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}?",
|
||||||
|
@ -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:
|
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)
|
* 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)
|
* Ability to choose where to install Roblox to
|
||||||
* Support for the old death sound (no messing around with your install folder, and it persists on updates!)
|
* Old death sound can be re-enabled permanently
|
||||||
|
* Support for Discord Rich Presence
|
||||||
Some more features that we hope to add include more custom styles, and Discord Rich Presence support.
|
|
||||||
|
|
||||||
## Installing
|
## 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.
|
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.
|
||||||
|
Loading…
Reference in New Issue
Block a user