Author: dreimer
Date: Mon Jul 30 01:34:03 2007
New Revision: 28025
URL:
http://svn.reactos.org/svn/reactos?rev=28025&view=rev
Log:
- I did not know that I abused %CD% so much...
- Update Changelog and all other files for the Bugfix release, which will be released as
soon as everything runs for EVERYONE.
P.S. Why do I release Beta Versions when noone tests them?
Modified:
trunk/tools/RosBE-Windows/Root/ChangeLog.txt
trunk/tools/RosBE-Windows/Root/RosBE.cmd
trunk/tools/RosBE-Windows/Root/sSVN.cmd
trunk/tools/RosBE-Windows/RosBE.nsi
Modified: trunk/tools/RosBE-Windows/Root/ChangeLog.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/ChangeLog…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/ChangeLog.txt (original)
+++ trunk/tools/RosBE-Windows/Root/ChangeLog.txt Mon Jul 30 01:34:03 2007
@@ -7,6 +7,9 @@
- Fixed the double \\ Bug introduced in 0.3.7. (Daniel Reimer)
- Added Build Begin Time into Topic. (Daniel Reimer)
- Added svnversion. (Daniel Reimer)
+- Updated Tools. (Daniel Reimer)
+- sSVN asks you if you wanna update if Offline Source Tree is old. (Daniel Reimer)
+- Fixed DOZENS of bugs/stupid coded parts/things you could get easier... (Daniel Reimer)
*** July 26th, 2007 - RosBE 0.3.7.1 Released
Modified: trunk/tools/RosBE-Windows/Root/RosBE.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/RosBE.cmd…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/RosBE.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/RosBE.cmd Mon Jul 30 01:34:03 2007
@@ -14,7 +14,7 @@
:: Set Defaults to work with and override if needed.
::
color 0A
-set _VER=0.3.8
+set _VER=0.3.7.2
set ROSBEBASEDIR=%~dp0
echo %ROSBEBASEDIR%|%ROSBEBASEDIR%Tools\sed "s/.$//g" >
"C:\aaa.tmp"
set /P ROSBEBASEDIR=< "C:\aaa.tmp"
Modified: trunk/tools/RosBE-Windows/Root/sSVN.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/sSVN.cmd?…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/sSVN.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/sSVN.cmd Mon Jul 30 01:34:03 2007
@@ -18,15 +18,15 @@
if "%1" == "update" (
title Updating...
if not "%2" == "" (
- svn update "%CD%" -r %2
+ svn update -r %2
) else (
- svn update "%CD%"
+ svn update
)
goto :ExitSVN
)
if "%1" == "cleanup" (
title Cleaning...
- svn cleanup "%CD%"
+ svn cleanup
goto :ExitSVN
)
::
@@ -39,9 +39,9 @@
echo Folder already cotains a Reposority. Exiting
goto :ExitSVN
)
- dir /b "%CD%" 2>nul|findstr "." >nul
+ dir /b 2>nul|findstr "." >nul
if errorlevel 1 (
- svn checkout
svn://svn.reactos.org/reactos/trunk/reactos "%CD%"
+ svn checkout
svn://svn.reactos.org/reactos/trunk/reactos
) else (
echo Folder is not empty. Continuing is dangerous and can cause errors. ABORTED
)
Modified: trunk/tools/RosBE-Windows/RosBE.nsi
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/RosBE.nsi?rev=…
==============================================================================
--- trunk/tools/RosBE-Windows/RosBE.nsi (original)
+++ trunk/tools/RosBE-Windows/RosBE.nsi Mon Jul 30 01:34:03 2007
@@ -1,5 +1,5 @@
!define PRODUCT_NAME "ReactOS Build Environment for Windows"
-!define PRODUCT_VERSION "0.3.8"
+!define PRODUCT_VERSION "0.3.7.2"
!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"
@@ -18,7 +18,7 @@
;;
;; Add version/product information metadata to the installation file.
;;
-VIAddVersionKey /LANG=1033 "FileVersion" "0.3.8.0"
+VIAddVersionKey /LANG=1033 "FileVersion" "0.3.7.2"
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/)"
@@ -26,7 +26,7 @@
VIAddVersionKey /LANG=1033 "LegalTrademarks" "Copyright © 2007 ReactOS
Team"
VIAddVersionKey /LANG=1033 "LegalCopyright" "Copyright © 2007 ReactOS
Team"
VIAddVersionKey /LANG=1033 "FileDescription" "${PRODUCT_NAME} Setup"
-VIProductVersion "0.3.8.0"
+VIProductVersion "0.3.7.2"
CRCCheck force
SetCompressor /FINAL /SOLID lzma
@@ -185,6 +185,7 @@
Delete /REBOOTOK "$INSTDIR\sSVN.cmd"
Delete /REBOOTOK "$INSTDIR\Build-Shared.cmd"
Delete /REBOOTOK "$INSTDIR\RAddr.cmd"
+;; Delete /REBOOTOK "$INSTDIR\options.exe"
Delete /REBOOTOK "$INSTDIR\TimeDate.cmd"
Delete /REBOOTOK "$INSTDIR\ChangeLog.txt"
Delete /REBOOTOK "$INSTDIR\LICENSE.txt"