snapshot release :D
This commit is contained in:
parent
e36882b824
commit
5aaed0bed5
|
|
@ -143,6 +143,7 @@ namespace Novetus.Core
|
||||||
/// </summary>
|
/// </summary>
|
||||||
static VCPPRedistInstallationDetector()
|
static VCPPRedistInstallationDetector()
|
||||||
{
|
{
|
||||||
|
//TODO: make clients detect if a vc++ install is required upon launch.
|
||||||
foreach (var kvPair in _VCRedistToRedistKeysMap)
|
foreach (var kvPair in _VCRedistToRedistKeysMap)
|
||||||
{
|
{
|
||||||
VCPPRedist redist = kvPair.Key;
|
VCPPRedist redist = kvPair.Key;
|
||||||
|
|
|
||||||
|
|
@ -764,7 +764,7 @@ namespace NovetusLauncher
|
||||||
|
|
||||||
public void GeneratePlayerID()
|
public void GeneratePlayerID()
|
||||||
{
|
{
|
||||||
NovetusFuncs.GeneratePlayerID();
|
GlobalVars.UserConfiguration.SaveSettingInt("UserID", NovetusFuncs.GeneratePlayerID());
|
||||||
PlayerIDTextBox.Text = GlobalVars.UserConfiguration.ReadSetting("UserID");
|
PlayerIDTextBox.Text = GlobalVars.UserConfiguration.ReadSetting("UserID");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,8 @@ EDGE Snapshot v23.8753.23583.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.
|
||||||
|
- Fixed the "Regen ID" buttons not working.
|
||||||
|
- Updated the Dependency Installer.
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
EDGE Snapshot v23.8745.28516.1
|
EDGE Snapshot v23.8745.28516.1
|
||||||
Enhancements:
|
Enhancements:
|
||||||
|
|
|
||||||
|
|
@ -36,22 +36,16 @@ ECHO.
|
||||||
ECHO NOVETUS DEPENDENCY INSTALLER
|
ECHO NOVETUS DEPENDENCY INSTALLER
|
||||||
ECHO.
|
ECHO.
|
||||||
ECHO Please install the following if you haven't already:
|
ECHO Please install the following if you haven't already:
|
||||||
ECHO 1 - Microsoft .NET Framework 2.0 (REQUIRED for the ROBLOX Script Generator SDK tool)
|
ECHO 1 - Microsoft .NET Framework 4.5.1 (REQUIRED for the Novetus Launcher, not needed for Windows 8.1 and up.)
|
||||||
ECHO 2 - Microsoft .NET Framework 4.8 (REQUIRED for the Novetus Launcher)
|
ECHO 2 - Microsoft .NET Framework 2.0 (REQUIRED for the ROBLOX Script Generator SDK tool)
|
||||||
ECHO 3 - .NET 4.0 Update (KB2468871, REQUIRED for Windows XP and Vista)
|
ECHO 3 - Windows Media Player (REQUIRED for 2010L+)
|
||||||
ECHO 4 - Microsoft Visual C++ Redistributables 2005 (32-bit, REQUIRED for 2007)
|
ECHO 4 - Exit
|
||||||
ECHO 5 - Microsoft Visual C++ Redistributables 2008 (32-bit, REQUIRED for 2008 and above)
|
|
||||||
ECHO 6 - Windows Media Player (REQUIRED for 2010L+)
|
|
||||||
ECHO 7 - Exit
|
|
||||||
ECHO.
|
ECHO.
|
||||||
SET /P M=Choose an option by typing the number corresponding to which depenency you want to install:
|
SET /P M=Choose an option by typing the number corresponding to which depenency you want to install:
|
||||||
IF %M%==1 goto net2
|
IF %M%==1 goto net4
|
||||||
IF %M%==2 goto net4
|
IF %M%==2 goto net2
|
||||||
IF %M%==3 goto net4update
|
IF %M%==3 goto mfp
|
||||||
IF %M%==4 goto vc2005
|
IF %M%==4 EXIT
|
||||||
IF %M%==5 goto vc2008
|
|
||||||
IF %M%==6 goto mfp
|
|
||||||
IF %M%==7 EXIT
|
|
||||||
EXIT
|
EXIT
|
||||||
|
|
||||||
:net2
|
:net2
|
||||||
|
|
@ -66,32 +60,8 @@ goto REDISTINSTALLER
|
||||||
|
|
||||||
:net4
|
:net4
|
||||||
CLS
|
CLS
|
||||||
echo Installing Microsoft .NET Framework 4.8...
|
echo Installing Microsoft .NET Framework 4.5.1...
|
||||||
"%CD%/_redist/NET Framework/ndp48-x86-x64-allos-enu.exe"
|
"%CD%/_redist/NET Framework/NDP451-KB2858728-x86-x64-AllOS-ENU.exe"
|
||||||
pause
|
|
||||||
goto REDISTINSTALLER
|
|
||||||
|
|
||||||
:net4update
|
|
||||||
CLS
|
|
||||||
echo Installing .NET 4.0 Update (KB2468871)...
|
|
||||||
reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > NUL && set OS=32BIT || set OS=64BIT
|
|
||||||
|
|
||||||
if %OS%==32BIT "%CD%/_redist/NET Framework/NDP40-KB2468871-v2-x86 (XP and Vista Only).exe"
|
|
||||||
if %OS%==64BIT "%CD%/_redist/NET Framework/NDP40-KB2468871-v2-x64 (XP and Vista Only).exe"
|
|
||||||
pause
|
|
||||||
goto REDISTINSTALLER
|
|
||||||
|
|
||||||
:vc2005
|
|
||||||
CLS
|
|
||||||
echo Installing Microsoft Visual C++ Redistributables 2005 (32-bit)...
|
|
||||||
"%CD%/_redist/Visual C++ Redistributables/vcredist2005_x86.exe"
|
|
||||||
pause
|
|
||||||
goto REDISTINSTALLER
|
|
||||||
|
|
||||||
:vc2008
|
|
||||||
CLS
|
|
||||||
echo Installing Microsoft Visual C++ Redistributables 2008 (32-bit)...
|
|
||||||
"%CD%/_redist/Visual C++ Redistributables/vcredist2008_x86.exe"
|
|
||||||
pause
|
pause
|
||||||
goto REDISTINSTALLER
|
goto REDISTINSTALLER
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue