Skip to content

Commit

Permalink
Merge pull request #558 from apprehensions/main
Browse files Browse the repository at this point in the history
Fix Typos
  • Loading branch information
pizzaboxer authored Aug 19, 2023
2 parents e5bd4f3 + 473cb5c commit 30b0694
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Bloxstrap/Bootstrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ private void Uninstall()
};
}

Dialog?.ShowSuccess($"{App.ProjectName} has succesfully uninstalled", callback);
Dialog?.ShowSuccess($"{App.ProjectName} has successfully uninstalled", callback);
}
#endregion

Expand Down
2 changes: 1 addition & 1 deletion Bloxstrap/RobloxDeployment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public static class RobloxDeployment

private static Dictionary<string, ClientVersion> ClientVersionCache = new();

// a list of roblox delpoyment locations that we check for, in case one of them don't work
// a list of roblox deployment locations that we check for, in case one of them don't work
private static List<string> BaseUrls = new()
{
"https://setup.rbxcdn.com",
Expand Down
2 changes: 1 addition & 1 deletion Bloxstrap/UI/NotifyIconWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public void ShowAlert(string caption, string message, int duration, EventHandler
if (_alertClickHandler == clickHandler)
_alertClickHandler = null;
else
App.Logger.WriteLine(LOG_IDENT, "Click handler has been overriden by another alert");
App.Logger.WriteLine(LOG_IDENT, "Click handler has been overridden by another alert");
});
}

Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,16 @@ Bloxstrap is only supported for PCs running Windows.
## Installing
Download the [latest release of Bloxstrap](https://github.com/pizzaboxer/bloxstrap/releases/latest), and run it. Configure your preferences if needed, and install. That's about it!

Alternatively, you can install Bloxstrap via [Winget](https://winstall.app/apps/pizzaboxer.Bloxstrap) by running this in a Command Prompt window:
```
> winget install bloxstrap
```

You will also need the [.NET 6 Desktop Runtime](https://aka.ms/dotnet-core-applaunch?missing_runtime=true&arch=x64&rid=win11-x64&apphost_version=6.0.16&gui=true). If you don't already have it installed, you'll be prompted to install it anyway. Be sure to install Bloxstrap after you've installed this.

It's not unlikely that Windows Smartscreen will show a popup when you run Bloxstrap for the first time. This happens because it's an unknown program, not because it's actually detected as being malicious. To dismiss it, just click on "More info" and then "Run anyway".

Once installed, Bloxstrap is added to your Start Menu, where you can access the menu and reconfigure your preferences if needed.

If you would like to build Bloxstrap's source code, see the [guide for building from source](https://github.com/pizzaboxer/bloxstrap/wiki/Building-Bloxstrap-from-source).

## Features
Here's some of the features that Bloxstrap provides over the stock Roblox bootstrapper:
Expand Down

0 comments on commit 30b0694

Please sign in to comment.