Author: cfinck Date: Tue Jun 23 19:27:12 2009 New Revision: 41592
URL: http://svn.reactos.org/svn/reactos?rev=41592&view=rev Log: - Change the version to 0.3.10 - Set "Angelus_02_ROSWP.bmp" as the default wallpaper - Add a shortcut to "Download !" to the Desktop
Modified: branches/ros-branch-0_3_10/reactos/base/shell/explorer/res/logov.bmp branches/ros-branch-0_3_10/reactos/boot/bootdata/hivedef_i386.inf branches/ros-branch-0_3_10/reactos/dll/win32/syssetup/install.c branches/ros-branch-0_3_10/reactos/include/reactos/version.h
Modified: branches/ros-branch-0_3_10/reactos/base/shell/explorer/res/logov.bmp URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_10/reactos/base/s... ============================================================================== Binary files - no diff available.
Modified: branches/ros-branch-0_3_10/reactos/boot/bootdata/hivedef_i386.inf URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_10/reactos/boot/b... ============================================================================== --- branches/ros-branch-0_3_10/reactos/boot/bootdata/hivedef_i386.inf [iso-8859-1] (original) +++ branches/ros-branch-0_3_10/reactos/boot/bootdata/hivedef_i386.inf [iso-8859-1] Tue Jun 23 19:27:12 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\Desktop","FontSmoothing",2,"0" HKCU,"Control Panel\Desktop","DragFullWindows",2,"0" HKCU,"Control Panel\Desktop","SmoothScroll",3,00,00,00,00
Modified: branches/ros-branch-0_3_10/reactos/dll/win32/syssetup/install.c URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_10/reactos/dll/wi... ============================================================================== --- branches/ros-branch-0_3_10/reactos/dll/win32/syssetup/install.c [iso-8859-1] (original) +++ branches/ros-branch-0_3_10/reactos/dll/win32/syssetup/install.c [iso-8859-1] Tue Jun 23 19:27:12 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_10/reactos/include/reactos/version.h URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_10/reactos/includ... ============================================================================== --- branches/ros-branch-0_3_10/reactos/include/reactos/version.h [iso-8859-1] (original) +++ branches/ros-branch-0_3_10/reactos/include/reactos/version.h [iso-8859-1] Tue Jun 23 19:27:12 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 10
#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