Finishing touches

This commit is contained in:
pizzaboxer 2024-10-02 23:50:54 +01:00
parent 876480464b
commit 6cb1ca6170
No known key found for this signature in database
GPG Key ID: 59D4A1DBAD0F2BA8
2 changed files with 1 additions and 11 deletions

View File

@ -401,14 +401,11 @@ namespace Bloxstrap
if (App.LaunchSettings.TestModeFlag.Active) if (App.LaunchSettings.TestModeFlag.Active)
args += " -testmode"; args += " -testmode";
// TODO: look into if this needs to be launched *before* roblox starts
if (ipl.IsAcquired) if (ipl.IsAcquired)
Process.Start(Paths.Process, args); Process.Start(Paths.Process, args);
} }
} }
// TODO: the bootstrapper dialogs call this function directly.
// this should probably be behind an event invocation.
public void Cancel() public void Cancel()
{ {
const string LOG_IDENT = "Bootstrapper::Cancel"; const string LOG_IDENT = "Bootstrapper::Cancel";
@ -660,10 +657,6 @@ namespace Bloxstrap
if (Dialog is not null) if (Dialog is not null)
{ {
// allow progress bar to 100% before continuing (purely ux reasons lol)
// TODO: come up with a better way of handling this that is non-blocking
await Task.Delay(1000);
Dialog.ProgressStyle = ProgressBarStyle.Marquee; Dialog.ProgressStyle = ProgressBarStyle.Marquee;
SetStatus(Strings.Bootstrapper_Status_Configuring); SetStatus(Strings.Bootstrapper_Status_Configuring);
} }
@ -994,9 +987,6 @@ namespace Bloxstrap
if (File.Exists(package.DownloadPath)) if (File.Exists(package.DownloadPath))
return; return;
// TODO: telemetry for this. chances are that this is completely unnecessary and that it can be removed.
// but, we need to ensure this doesn't work before we can do that.
const int maxTries = 5; const int maxTries = 5;
bool statIsRetrying = false; bool statIsRetrying = false;

View File

@ -132,7 +132,7 @@
<controls:MarkdownTextBlock MarkdownText="[CubesterYT](https://github.com/CubesterYT)" /> <controls:MarkdownTextBlock MarkdownText="[CubesterYT](https://github.com/CubesterYT)" />
<controls:MarkdownTextBlock MarkdownText="[TheRealSpriteMan1337](https://github.com/TheRealSpriteMan1337)" /> <controls:MarkdownTextBlock MarkdownText="[TheRealSpriteMan1337](https://github.com/TheRealSpriteMan1337)" />
<controls:MarkdownTextBlock MarkdownText="[ms-gitblox](https://github.com/ms-gitblox)" /> <controls:MarkdownTextBlock MarkdownText="[ms-gitblox](https://github.com/ms-gitblox)" />
<controls:MarkdownTextBlock MarkdownText="[ Luximoz](https://github.com/ Luximoz)" /> <controls:MarkdownTextBlock MarkdownText="[Luximoz](https://github.com/Luximoz)" />
</StackPanel> </StackPanel>
</controls:Expander> </controls:Expander>