Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Typos #558

Merged
merged 2 commits into from
Aug 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Bloxstrap/Bootstrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,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
4 changes: 2 additions & 2 deletions Bloxstrap/UI/NotifyIconWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public async void OnGameJoin()
string serverLocation = await _activityWatcher!.GetServerLocation();

ShowAlert(
$"Connnected to {_activityWatcher.ActivityServerType.ToString().ToLower()} server",
$"Connected to {_activityWatcher.ActivityServerType.ToString().ToLower()} server",
$"Located at {serverLocation}\nClick for more information",
10,
(_, _) => _menuContainer?.ShowServerInformationWindow()
Expand Down 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
Loading