From 325ae81ea97e49ee837fca254eade4daa297998e Mon Sep 17 00:00:00 2001 From: Bitl Date: Fri, 5 Jan 2024 17:13:34 -0700 Subject: [PATCH] fix dev menu being a dungus --- .../Stylish/LauncherFormStylishInterface.xaml.cs | 2 +- changelog.txt | 6 +++++- scripts/batch/dev_menu.bat | 6 +++++- scripts/launcher/info.ini | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Novetus/NovetusLauncher/Forms/LauncherForm/Stylish/LauncherFormStylishInterface.xaml.cs b/Novetus/NovetusLauncher/Forms/LauncherForm/Stylish/LauncherFormStylishInterface.xaml.cs index 1b0ce19..8149d99 100644 --- a/Novetus/NovetusLauncher/Forms/LauncherForm/Stylish/LauncherFormStylishInterface.xaml.cs +++ b/Novetus/NovetusLauncher/Forms/LauncherForm/Stylish/LauncherFormStylishInterface.xaml.cs @@ -255,7 +255,7 @@ namespace NovetusLauncher private void regenerateIDButton_Click(object sender, RoutedEventArgs e) { - NovetusFuncs.GeneratePlayerID(); + GlobalVars.UserConfiguration.SaveSettingInt("UserID", NovetusFuncs.GeneratePlayerID()); userIDBox.Text = GlobalVars.UserConfiguration.ReadSetting("UserID"); } diff --git a/changelog.txt b/changelog.txt index 92be51b..c4770bd 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,8 @@ -EDGE Snapshot v23.8753.23583.1 +EDGE Snapshot v23.8770.30764.2 +Fixes: +- Fixed the "Regen ID" buttons not working in the Stylish style. +---------------------------------------------------------------------------- +EDGE Snapshot v23.8770.30096.1 Fixes: - Fixed AwardBadge and HasBadge extension database names. - Fixed 2010L's 3D Preview not working properly. diff --git a/scripts/batch/dev_menu.bat b/scripts/batch/dev_menu.bat index f31caea..96e550e 100644 --- a/scripts/batch/dev_menu.bat +++ b/scripts/batch/dev_menu.bat @@ -43,7 +43,11 @@ IF %M%==2 GOTO CLEANUP_DRY IF %M%==3 GOTO MENU :CLEANJUNK -call Novetus/clean_junk.bat +SET oldcd=%CD% +cd %CD%/Novetus +call clean_junk.bat +cd %oldcd% +echo %CD% echo Junk files cleaned. Updating GitHub scripts. call github_sync.bat IF %cleanupval%==1 GOTO POSTCLEANUP diff --git a/scripts/launcher/info.ini b/scripts/launcher/info.ini index f30735a..64efae7 100644 --- a/scripts/launcher/info.ini +++ b/scripts/launcher/info.ini @@ -9,6 +9,6 @@ ExtendedVersionNumber=True //ExtendedVersionTemplate=%version% vX.23.%extended-revision% (%version-name%) //ExtendedVersionTemplate=%version% Snapshot v23.%build%.%revision%.%extended-revision% ExtendedVersionTemplate=EDGE Snapshot v23.%build%.%revision%.%extended-revision% -ExtendedVersionRevision=1 +ExtendedVersionRevision=2 InitialBootup=False IsLite=False