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

Fixes SoapboxRaceWorld/GameLauncher_NFSW#262 #263

Open
wants to merge 1 commit into
base: Net.Standard
Choose a base branch
from
Open
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
10 changes: 10 additions & 0 deletions SBRW.Launcher.Net/App/UI_Forms/Main_Screen/Screen_Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -982,6 +982,16 @@ private void Game_Check_Launch()
{
Presence_Launcher.Start(false, Presence_Launcher.ApplicationID());

/* Reset Sever Mods File Download Count (Visual Only) */
CurrentModFileCount = 0;
TotalModFileCount = 0;

if (ModFilesDownloadUrls != default)
{
/* If Server Mod List is not Empty, Empty it just in case */
ModFilesDownloadUrls.Clear();
}

try
{
if (UI_MODE != 12)
Expand Down
2 changes: 1 addition & 1 deletion SBRW.Launcher.Net/SBRW.Launcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
You can specify this option only for projects that target .NET Framework 4.5 or later.
<PlatformTarget>x86</PlatformTarget>-->
<Copyright>© Soapbox Race World</Copyright>
<GlobalVersion>2.2.2</GlobalVersion>
<GlobalVersion>2.2.3</GlobalVersion>
<GlobalVersion Condition=" '$(GlobalVersion)' == '' ">2.2.0.$([System.DateTime]::UtcNow.ToString(mmff))</GlobalVersion>
<Version>$(GlobalVersion)</Version>
<AssemblyVersion>$(GlobalVersion)</AssemblyVersion>
Expand Down
2 changes: 1 addition & 1 deletion SBRW.Launcher.RunTime/InsiderKit/KitEnabler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class InsiderInfo
/* Current month, day, year (2 digits), and letter! Ex: 12-15-20-A */
/* If a second build gets release within the same day bump letter version up (No R2 or D2)*/

private static string InsiderBuildNumber { get; set; } = "05-18-23-C";
private static string InsiderBuildNumber { get; set; } = "10-31-23-A";

public static string BuildNumberOnly()
{
Expand Down