diff --git a/changelog.txt b/changelog.txt index 5b76fad..b464471 100644 --- a/changelog.txt +++ b/changelog.txt @@ -21,6 +21,7 @@ - Added the XML Content Editor: a Excel-like editor that allows you to edit and add content providers and part colors. - The Novetus Launcher will now remove any invalid characters from a map's file name. - Fixed an issue with the Launcher where the internal map file path wouldn't automatically change if the directory changed. Portable installations should work properly now. +- Added a listing in the Dependency Installer for "Media Feature Pack list for Windows N editions". Added the following T-Shirts: Blue Ring of Fire Ring of Fire diff --git a/scripts/batch/Novetus_dependency_installer.bat b/scripts/batch/Novetus_dependency_installer.bat index 327bcbb..f625215 100644 --- a/scripts/batch/Novetus_dependency_installer.bat +++ b/scripts/batch/Novetus_dependency_installer.bat @@ -41,7 +41,8 @@ ECHO 2 - Microsoft .NET Framework 4.0 (REQUIRED for the Novetus Launcher) ECHO 3 - .NET 4.0 Update (KB2468871, REQUIRED for Windows XP and Vista) ECHO 4 - Microsoft Visual C++ Redistributables 2005 (32-bit, REQUIRED for 2007) ECHO 5 - Microsoft Visual C++ Redistributables 2008 (32-bit, REQUIRED for 2008 and above) -ECHO 6 - Exit +ECHO 6 - Media Feature Pack for Windows N Editions (REQUIRED for 2011+) +ECHO 7 - Exit ECHO. SET /P M=Choose an option by typing the number corresponding to which depenency you want to install: IF %M%==1 goto net2 @@ -49,7 +50,8 @@ IF %M%==2 goto net4 IF %M%==3 goto net4update IF %M%==4 goto vc2005 IF %M%==5 goto vc2008 -IF %M%==6 EXIT +IF %M%==6 goto mfp +IF %M%==7 EXIT EXIT :net2 @@ -92,3 +94,14 @@ echo Installing Microsoft Visual C++ Redistributables 2008 (32-bit)... "%CD%/_redist/Visual C++ Redistributables/vcredist2008_x86.exe" pause goto REDISTINSTALLER + +:mfp +CLS +echo Please install the Media Feature Pack from Microsoft's website for your respective version of Windows. +echo https://support.microsoft.com/en-us/topic/media-feature-pack-list-for-windows-n-editions-c1c6fffa-d052-8338-7a79-a4bb980a700a +echo A web browser window to the site will pop up after you press a key. +echo Note: you can check what version you are on by goting to Settings, then System, then go down to About. +pause +start "" https://support.microsoft.com/en-us/topic/media-feature-pack-list-for-windows-n-editions-c1c6fffa-d052-8338-7a79-a4bb980a700a +pause +goto REDISTINSTALLER \ No newline at end of file diff --git a/scripts/batch/github_sync.bat b/scripts/batch/github_sync.bat index 3ce0d6f..d35dbe3 100644 --- a/scripts/batch/github_sync.bat +++ b/scripts/batch/github_sync.bat @@ -103,9 +103,10 @@ rmdir "%basedir%" /s /q echo. echo Coying additional files to GitHub folder... if not exist "%dest%\scripts\batch" mkdir "%scriptsdir%\batch" -XCOPY /y "%cd%\dev_menu.bat" "%scriptsdir%\batch" -XCOPY /y "%cd%\github_sync.bat" "%scriptsdir%\batch" -XCOPY /y "%cd%\Novetus\changelog.txt" "%dest%" +XCOPY /y "%cd%\dev_menu.bat" "%scriptsdir%\batch" +XCOPY /y "%cd%\github_sync.bat" "%scriptsdir%\batch" +XCOPY /y "%cd%\Novetus\Novetus_dependency_installer.bat" "%scriptsdir%\batch" +XCOPY /y "%cd%\Novetus\Novetus_launcher_legacy.bat" "%scriptsdir%\batch" XCOPY /y "%cd%\Novetus\documentation.txt" "%dest%" XCOPY /y /c "%cd%\Novetus\.itch.toml" "%dest%" XCOPY /y "%cd%\Novetus\query.php" "%dest%"