diff --git a/reactos/base/shell/explorer-new/res/logov.bmp b/reactos/base/shell/explorer-new/res/logov.bmp index b4404ba9b90..ca6b444c4b4 100644 Binary files a/reactos/base/shell/explorer-new/res/logov.bmp and b/reactos/base/shell/explorer-new/res/logov.bmp differ diff --git a/reactos/base/shell/explorer/res/logov.bmp b/reactos/base/shell/explorer/res/logov.bmp index 109246c0bc7..ca6b444c4b4 100644 Binary files a/reactos/base/shell/explorer/res/logov.bmp and b/reactos/base/shell/explorer/res/logov.bmp differ diff --git a/reactos/boot/bootdata/hivedef.inf b/reactos/boot/bootdata/hivedef.inf index 8868895778e..d287761c394 100644 --- a/reactos/boot/bootdata/hivedef.inf +++ b/reactos/boot/bootdata/hivedef.inf @@ -63,7 +63,7 @@ HKCU,"Control Panel\Desktop","ScreenSaveActive",2,"0" HKCU,"Control Panel\Desktop","ScreenSaverIsSecure",2,"1" HKCU,"Control Panel\Desktop","ScreenSaveTimeOut",0,"600" HKCU,"Control Panel\Desktop","WaitToKillAppTimeout",2,"20000" -HKCU,"Control Panel\Desktop","Wallpaper",0x00000000,"" +HKCU,"Control Panel\Desktop","Wallpaper",0x00000000,"%SystemRoot%\5DJGG-clt2014.bmp" HKCU,"Control Panel\Desktop","FontSmoothing",0,"1" HKCU,"Control Panel\Desktop","FontSmoothingOrientation",0x00010003,0x00000001 HKCU,"Control Panel\Desktop","FontSmoothingType",0x00010003,0x00000001 diff --git a/reactos/hybridcd_freeldr.ini b/reactos/hybridcd_freeldr.ini new file mode 100644 index 00000000000..3577a842237 --- /dev/null +++ b/reactos/hybridcd_freeldr.ini @@ -0,0 +1,32 @@ +[FREELOADER] +DefaultOS=Install +Timeout=10 + +[Display] +TitleText=ReactOS 0.3.16 - CLT 2014 +StatusBarColor=Cyan +StatusBarTextColor=Black +BackdropTextColor=White +BackdropColor=Blue +BackdropFillStyle=Medium +TitleBoxTextColor=White +TitleBoxColor=Red +MessageBoxTextColor=White +MessageBoxColor=Blue +MenuTextColor=White +MenuColor=Blue +TextColor=Yellow +SelectedTextColor=Black +SelectedColor=Gray + +[Operating Systems] +Install="ReactOS-Installation starten" +Live="ReactOS Live-System starten" + +[Install] +BootType=ReactOSSetup + +[Live] +BootType=Windows2003 +SystemPath=LiveCD\live +Options=/DEBUGPORT=COM1 /SOS /MININT diff --git a/reactos/include/reactos/version.cmake b/reactos/include/reactos/version.cmake index b9b2ec8c7f1..40cbc0e313c 100644 --- a/reactos/include/reactos/version.cmake +++ b/reactos/include/reactos/version.cmake @@ -32,11 +32,11 @@ endmacro() today(KERNEL_VERSION_BUILD) set(KERNEL_VERSION_MAJOR "0") -set(KERNEL_VERSION_MINOR "4") -set(KERNEL_VERSION_PATCH_LEVEL "0") +set(KERNEL_VERSION_MINOR "3") +set(KERNEL_VERSION_PATCH_LEVEL "16") set(COPYRIGHT_YEAR "2014") # KERNEL_VERSION_BUILD_TYPE is "SVN", "RC1", "RC2" or "" (for the release) -set(KERNEL_VERSION_BUILD_TYPE "SVN") +set(KERNEL_VERSION_BUILD_TYPE "CLT2014") set(KERNEL_VERSION "${KERNEL_VERSION_MAJOR}.${KERNEL_VERSION_MINOR}") diff --git a/reactos/make_hybridcd.cmd b/reactos/make_hybridcd.cmd new file mode 100644 index 00000000000..b6ca2cac32e --- /dev/null +++ b/reactos/make_hybridcd.cmd @@ -0,0 +1,57 @@ +:: Script to create a Hybrid-CD (Boot-CD + Live-CD) for demo purposes. +:: Only run it from the root "reactos" dir (where you would also call "make"). +:: +:: Written by Colin Finck (2010-03-10) +:: + +@echo off + +:: Ensure that +:: - the user already built Boot-CDs and Live-CDs +:: - put his extra stuff into "hybridcd_extras" +:: - added a copy of mkisofs +if exist "boot\bootcd\." ( + if exist "boot\livecd\." ( + if exist "hybridcd_extras\." ( + if exist "hybridcd_freeldr.ini" ( + if exist "mkisofs.exe" ( + goto NEXT + ) + ) + ) + ) +) + +echo Please make sure to copy this file (make_hybridcd.cmd) and +echo hybridcd_freeldr.ini to the "reactos" subfolder in your build directory. +echo You should run make_hybridcd from there. +echo. +echo Also build regular Boot-CDs and Live-CDs first, and create a directory +echo "hybridcd_extras" (inside the reactos folder). Put everything else +echo that should go in the CD root into that directory. +echo. +echo You also need to put a version of "mkisofs.exe" into the reactos +echo directory. Get one from e.g. "PE Builder" at http://nu2.nu/. +echo Our cdmake doesn't support creating an ISO9660:1999 filesystem, which is +echo important for a universally usable disc. +goto :EOF + +:: Create directories and copy the basic stuff there +:NEXT +rd /s /q "hybridcd" +mkdir "hybridcd" +mkdir "hybridcd\live" +mkdir "hybridcd\Profiles" + +xcopy /e "boot\bootcd" "hybridcd" +xcopy /e "boot\livecd\reactos" "hybridcd\live" +xcopy /e "boot\livecd\Profiles" "hybridcd\Profiles" + +:: Copy our modified "freeldr.ini" +copy /y "hybridcd_freeldr.ini" "hybridcd\freeldr.ini" + +:: Copy the extra stuff +xcopy /e "hybridcd_extras" "hybridcd" + +:: Create the ISO +mkisofs -iso-level 4 -volid "ReactOS-HybridCD" -b "loader/isoboot.bin" -no-emul-boot -boot-load-size 4 -hide "boot.catalog" -o "hybridcd.iso" "hybridcd" diff --git a/reactos/modules/wallpaper/5DJGG-clt2014.bmp b/reactos/modules/wallpaper/5DJGG-clt2014.bmp new file mode 100644 index 00000000000..a99481c9866 Binary files /dev/null and b/reactos/modules/wallpaper/5DJGG-clt2014.bmp differ diff --git a/reactos/modules/wallpaper/CMakeLists.txt b/reactos/modules/wallpaper/CMakeLists.txt new file mode 100644 index 00000000000..e7f1371bca0 --- /dev/null +++ b/reactos/modules/wallpaper/CMakeLists.txt @@ -0,0 +1 @@ +add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/5DJGG-clt2014.bmp DESTINATION reactos FOR all)