fix dev menu being a dungus
This commit is contained in:
parent
5aaed0bed5
commit
325ae81ea9
|
|
@ -255,7 +255,7 @@ namespace NovetusLauncher
|
||||||
|
|
||||||
private void regenerateIDButton_Click(object sender, RoutedEventArgs e)
|
private void regenerateIDButton_Click(object sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
NovetusFuncs.GeneratePlayerID();
|
GlobalVars.UserConfiguration.SaveSettingInt("UserID", NovetusFuncs.GeneratePlayerID());
|
||||||
userIDBox.Text = GlobalVars.UserConfiguration.ReadSetting("UserID");
|
userIDBox.Text = GlobalVars.UserConfiguration.ReadSetting("UserID");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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:
|
Fixes:
|
||||||
- Fixed AwardBadge and HasBadge extension database names.
|
- Fixed AwardBadge and HasBadge extension database names.
|
||||||
- Fixed 2010L's 3D Preview not working properly.
|
- Fixed 2010L's 3D Preview not working properly.
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,11 @@ IF %M%==2 GOTO CLEANUP_DRY
|
||||||
IF %M%==3 GOTO MENU
|
IF %M%==3 GOTO MENU
|
||||||
|
|
||||||
:CLEANJUNK
|
: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.
|
echo Junk files cleaned. Updating GitHub scripts.
|
||||||
call github_sync.bat
|
call github_sync.bat
|
||||||
IF %cleanupval%==1 GOTO POSTCLEANUP
|
IF %cleanupval%==1 GOTO POSTCLEANUP
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,6 @@ ExtendedVersionNumber=True
|
||||||
//ExtendedVersionTemplate=%version% vX.23.%extended-revision% (%version-name%)
|
//ExtendedVersionTemplate=%version% vX.23.%extended-revision% (%version-name%)
|
||||||
//ExtendedVersionTemplate=%version% Snapshot v23.%build%.%revision%.%extended-revision%
|
//ExtendedVersionTemplate=%version% Snapshot v23.%build%.%revision%.%extended-revision%
|
||||||
ExtendedVersionTemplate=EDGE Snapshot v23.%build%.%revision%.%extended-revision%
|
ExtendedVersionTemplate=EDGE Snapshot v23.%build%.%revision%.%extended-revision%
|
||||||
ExtendedVersionRevision=1
|
ExtendedVersionRevision=2
|
||||||
InitialBootup=False
|
InitialBootup=False
|
||||||
IsLite=False
|
IsLite=False
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue