Author: cfinck Date: Sat Apr 18 17:43:38 2009 New Revision: 40572
URL: http://svn.reactos.org/svn/reactos?rev=40572&view=rev Log: - Change the version to 0.3.9 - Set "Angelus_02_ROSWP.bmp" as the default wallpaper - Add a shortcut to "Download !" to the Desktop
Modified: branches/ros-branch-0_3_9/reactos/base/shell/explorer/res/logov.bmp branches/ros-branch-0_3_9/reactos/boot/bootdata/hivedef_i386.inf branches/ros-branch-0_3_9/reactos/dll/win32/syssetup/install.c branches/ros-branch-0_3_9/reactos/include/reactos/version.h
Modified: branches/ros-branch-0_3_9/reactos/base/shell/explorer/res/logov.bmp URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_9/reactos/base/sh... ============================================================================== Binary files - no diff available.
Modified: branches/ros-branch-0_3_9/reactos/boot/bootdata/hivedef_i386.inf URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_9/reactos/boot/bo... ============================================================================== --- branches/ros-branch-0_3_9/reactos/boot/bootdata/hivedef_i386.inf [iso-8859-1] (original) +++ branches/ros-branch-0_3_9/reactos/boot/bootdata/hivedef_i386.inf [iso-8859-1] Sat Apr 18 17:43:38 2009 @@ -20,7 +20,7 @@ HKCU,"Control Panel\Desktop","HungAppTimeout",0x00000002,"5000" HKCU,"Control Panel\Desktop","SCRNSAVE.EXE",0x00000000,"" HKCU,"Control Panel\Desktop","WaitToKillAppTimeout",0x00000002,"20000" -HKCU,"Control Panel\Desktop","Wallpaper",0x00000000,"" +HKCU,"Control Panel\Desktop","Wallpaper",0x00000000,"%SystemRoot%\Angelus_02_ROSWP.bmp" HKCU,"Control Panel\International",,0x00000012 HKCU,"Control Panel\International","Locale",0x00000000,"0409" HKCU,"Control Panel\International\Geo","Nation",0x00000000,"1"
Modified: branches/ros-branch-0_3_9/reactos/dll/win32/syssetup/install.c URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_9/reactos/dll/win... ============================================================================== --- branches/ros-branch-0_3_9/reactos/dll/win32/syssetup/install.c [iso-8859-1] (original) +++ branches/ros-branch-0_3_9/reactos/dll/win32/syssetup/install.c [iso-8859-1] Sat Apr 18 17:43:38 2009 @@ -756,6 +756,7 @@
/* Create desktop shortcuts */ CreateShortcut(CSIDL_DESKTOP, NULL, IDS_SHORT_CMD, _T("%SystemRoot%\system32\cmd.exe"), IDS_CMT_CMD, TRUE); + CreateShortcut(CSIDL_DESKTOP, NULL, IDS_SHORT_DOWNLOADER, _T("%SystemRoot%\system32\downloader.exe"), IDS_CMT_DOWNLOADER, TRUE);
/* Create program startmenu shortcuts */ CreateShortcut(CSIDL_PROGRAMS, NULL, IDS_SHORT_EXPLORER, _T("%SystemRoot%\explorer.exe"), IDS_CMT_EXPLORER, TRUE);
Modified: branches/ros-branch-0_3_9/reactos/include/reactos/version.h URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_9/reactos/include... ============================================================================== --- branches/ros-branch-0_3_9/reactos/include/reactos/version.h [iso-8859-1] (original) +++ branches/ros-branch-0_3_9/reactos/include/reactos/version.h [iso-8859-1] Sat Apr 18 17:43:38 2009 @@ -18,13 +18,13 @@ #define __VERSION_H
#define KERNEL_VERSION_MAJOR 0 -#define KERNEL_VERSION_MINOR 4 -#define KERNEL_VERSION_PATCH_LEVEL 0 +#define KERNEL_VERSION_MINOR 3 +#define KERNEL_VERSION_PATCH_LEVEL 9
#define COPYRIGHT_YEAR "2009"
/* KERNEL_VERSION_BUILD_TYPE is L"SVN", L"RC1", L"RC2" or L"" (for the release) */ -#define KERNEL_VERSION_BUILD_TYPE L"SVN" +#define KERNEL_VERSION_BUILD_TYPE L""
#endif