Author: dreimer Date: Thu Dec 10 12:19:38 2009 New Revision: 44520
URL: http://svn.reactos.org/svn/reactos?rev=44520&view=rev Log: Update changelog. Get ready for RosBE64 1.3. Add log2lines to RosBE setup.
Modified: trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt trunk/tools/RosBE/RosBE-Windows/RosBE.nsi trunk/tools/RosBE/RosBE-Windows/RosBE64.nsi
Modified: trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/Root/Chan... ============================================================================== --- trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt [iso-8859-1] (original) +++ trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt [iso-8859-1] Thu Dec 10 12:19:38 2009 @@ -1,11 +1,13 @@ -*** Nov XXth, 2009 - RosBE 1.5 Released +*** Dec XXth, 2009 - RosBE 1.5 Released
- Updated Binutils to 2.20.51-20091017 (snapshot) - Updated GCC to 4.4.2 (including backported GCC r153606) - Updated MinGW Runtime to 3.16 - Updated w32api to 3.13 +- Updated NSIS to 2.46 (Daniel Reimer) - Added Remake command (Daniel Reimer) - Fixed a few renaming bugs (Daniel Reimer) +- Added log2lines v1.8 to RosBE (Daniel Reimer)
*** Oct 26th, 2009 - RosBE 1.4.5 Released
Modified: trunk/tools/RosBE/RosBE-Windows/RosBE.nsi URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/RosBE.nsi... ============================================================================== --- trunk/tools/RosBE/RosBE-Windows/RosBE.nsi [iso-8859-1] (original) +++ trunk/tools/RosBE/RosBE-Windows/RosBE.nsi [iso-8859-1] Thu Dec 10 12:19:38 2009 @@ -270,6 +270,7 @@ SetOverwrite try File /r Components\Tools\echoh.exe File /r Components\Tools\raddr2line.exe + File /r Components\Tools\log2lines.exe File /r Components\Tools\chkslash.exe SectionEnd
Modified: trunk/tools/RosBE/RosBE-Windows/RosBE64.nsi URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/RosBE64.n... ============================================================================== --- trunk/tools/RosBE/RosBE-Windows/RosBE64.nsi [iso-8859-1] (original) +++ trunk/tools/RosBE/RosBE-Windows/RosBE64.nsi [iso-8859-1] Thu Dec 10 12:19:38 2009 @@ -1,5 +1,5 @@ !define PRODUCT_NAME "ReactOS Build Environment for Windows - 64 Bit Target Compiler" -!define PRODUCT_VERSION "1.2" +!define PRODUCT_VERSION "1.3" !define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\RosBE.cmd" !define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall${PRODUCT_NAME}" !define PRODUCT_UNINST_ROOT_KEY "HKCU" @@ -17,7 +17,7 @@ ;; ;; Add version/product information metadata to the installation file. ;; -VIAddVersionKey /LANG=1033 "FileVersion" "1.2.0.0" +VIAddVersionKey /LANG=1033 "FileVersion" "1.3.0.0" VIAddVersionKey /LANG=1033 "ProductVersion" "${PRODUCT_VERSION}" VIAddVersionKey /LANG=1033 "ProductName" "${PRODUCT_NAME}" VIAddVersionKey /LANG=1033 "Comments" "This installer was written by Peter Ward and Daniel Reimer using Nullsoft Scriptable Install System (http://nsis.sourceforge.net/)" @@ -25,7 +25,7 @@ VIAddVersionKey /LANG=1033 "LegalTrademarks" "Copyright © 2009 ReactOS Team" VIAddVersionKey /LANG=1033 "LegalCopyright" "Copyright © 2009 ReactOS Team" VIAddVersionKey /LANG=1033 "FileDescription" "${PRODUCT_NAME} Setup" -VIProductVersion "1.2.0.0" +VIProductVersion "1.3.0.0"
CRCCheck force SetDatablockOptimize on @@ -109,6 +109,14 @@ SetOutPath "$INSTDIR\amd64" SetOverwrite try File /r Components\amd64*.* + SetOutPath "$INSTDIR" + SetOverwrite try + File /r Root\options.cmd + IfFileExists "$INSTDIR\RosBE.ps1" 0 +3 + File /r Components\Powershell\options.ps1 + SetOutPath "$INSTDIR\Tools" + SetOverwrite try + File /r Components\Tools\options.exe SectionEnd
Section -StartMenuShortcuts SEC02 @@ -125,14 +133,14 @@ IfFileExists "$INSTDIR\RosBE.ps1" 0 +2 CreateShortCut "$SMPROGRAMS$ICONS_GROUP\ReactOS Build Environment 64-bit - Powershell.lnk" "$SYSDIR\WindowsPowerShell\v1.0\powershell.exe" "-noexit &'$INSTDIR\RosBE.ps1' amd64" "$INSTDIR\rosbe.ico" IfFileExists "$INSTDIR\Tools\options.exe" 0 +2 - CreateShortCut "$SMPROGRAMS$ICONS_GROUP\Options 64-bit.lnk" "$INSTDIR\Tools\options.exe" "amd64" + CreateShortCut "$SMPROGRAMS$ICONS_GROUP\Options 64-bit.lnk" "$INSTDIR\Tools\options.exe" amd64 SetOutPath $INSTDIR CreateShortCut "$SMPROGRAMS$ICONS_GROUP\Uninstall RosBE - 64 Bit Target.lnk" \ "$INSTDIR\Uninstall64-${PRODUCT_VERSION}.exe" !insertmacro MUI_STARTMENU_WRITE_END SectionEnd
-Section /o "Desktop Shortcuts" SEC04 +Section /o "Desktop Shortcuts" SEC03 SetShellVarContext current
;; @@ -145,7 +153,7 @@ CreateShortCut "$DESKTOP\ReactOS Build Environment 64-bit - Powershell.lnk" "$SYSDIR\WindowsPowerShell\v1.0\powershell.exe" "-noexit &'$INSTDIR\RosBE.ps1' amd64" "$INSTDIR\rosbe.ico" SectionEnd
-Section /o "Quick Launch Shortcuts" SEC05 +Section /o "Quick Launch Shortcuts" SEC04 SetShellVarContext current
;;