[ros-diffs] [dreimer] 27885: Try to fix the following scenario. RosBE is being booted up, and directory is being changed. Then there shuld be made a RosBE-Logs Dir too, if theres a .svn folder. This runs... but if the dir is being changed to another by using DrFred's tool, it does not make ANY logs.... dunno why yet... HELP MEEEE

dreimer at svn.reactos.org dreimer at svn.reactos.org
Thu Jul 26 22:41:57 CEST 2007


Author: dreimer
Date: Fri Jul 27 00:41:56 2007
New Revision: 27885

URL: http://svn.reactos.org/svn/reactos?rev=27885&view=rev
Log:
Try to fix the following scenario. RosBE is being booted up, and directory is being changed. Then there shuld be made a RosBE-Logs Dir too, if theres a .svn folder. This runs... but if the dir is being changed to another by using DrFred's tool, it does not make ANY logs.... dunno why yet... HELP MEEEE

Modified:
    trunk/tools/RosBE-Windows/Root/Build-Shared.cmd
    trunk/tools/RosBE-Windows/Root/ChangeLog.txt
    trunk/tools/RosBE-Windows/Root/RosBE.cmd
    trunk/tools/RosBE-Windows/RosBE.nsi

Modified: trunk/tools/RosBE-Windows/Root/Build-Shared.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Build-Shared.cmd?rev=27885&r1=27884&r2=27885&view=diff
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Build-Shared.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Build-Shared.cmd Fri Jul 27 00:41:56 2007
@@ -29,8 +29,8 @@
 ::
 :: Check if our log directory exists, if it doesn't, create it.
 ::
-if %ROSBE_LOGPATH% == %CD%\RosBE-Logs (
-echo 1
+set logdiff
+if %logdiff% == 0 (
 if not exist "%CD%\RosBE-Logs\." (
         if not exist "%CD%\.svn\." (
             echo Folder is empty. No Build can be performed.
@@ -42,9 +42,7 @@
     ) else (
         set _ROSBELOGDIR=%CD%\RosBE-Logs
     )
-    
 ) else (
-echo 2
    if not exist "%ROSBE_LOGPATH%\." (
         echo LogFolder does not exist.
     ) else (

Modified: trunk/tools/RosBE-Windows/Root/ChangeLog.txt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/ChangeLog.txt?rev=27885&r1=27884&r2=27885&view=diff
==============================================================================
--- trunk/tools/RosBE-Windows/Root/ChangeLog.txt (original)
+++ trunk/tools/RosBE-Windows/Root/ChangeLog.txt Fri Jul 27 00:41:56 2007
@@ -1,4 +1,8 @@
-*** July 26th, 2007 - RosBE 0.3.7 Released
+*** Oct XXth, 2007 - RosBE 0.3.8 Released
+
+- Added DrFred's Config Tool.
+
+*** July 26th, 2007 - RosBE 0.3.7.1 Released
 
 - Fixed: "No SVN Tree found" message in Vista.
 - All commands use the current dir now. SO you can use several SVN Source Trees now.

Modified: trunk/tools/RosBE-Windows/Root/RosBE.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/RosBE.cmd?rev=27885&r1=27884&r2=27885&view=diff
==============================================================================
--- trunk/tools/RosBE-Windows/Root/RosBE.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/RosBE.cmd Fri Jul 27 00:41:56 2007
@@ -14,14 +14,30 @@
 :: Set Defaults to work with and override if needed.
 ::
 color 0A
-set _VER=0.3.7.1
+set _VER=0.3.8
 set ROSBEBASEDIR=%~dp0
 set ROSBE_SHOWTIME=1
 set ROSBE_WRITELOG=1
-set ROSBE_LOGPATH=%CD%\RosBE-Logs
+set _LOGDIR=%CD%\RosBE-Logs
 
+if exist %ROSBEBASEDIR%\options.cmd (
+    goto :PREV
+) else (
+    set logdiff=0
+    goto :NEXT
+
+)
+
+:PREV
 call %ROSBEBASEDIR%\options.cmd
+if %_LOGDIR% == %ROSBE_LOGPATH% (
+    set logdiff=0
+) else (
+    set logdiff=1
+)
 
+
+:NEXT
 title ReactOS Build Environment %_VER%
 
 if "%1" == "" (

Modified: trunk/tools/RosBE-Windows/RosBE.nsi
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/RosBE.nsi?rev=27885&r1=27884&r2=27885&view=diff
==============================================================================
--- trunk/tools/RosBE-Windows/RosBE.nsi (original)
+++ trunk/tools/RosBE-Windows/RosBE.nsi Fri Jul 27 00:41:56 2007
@@ -1,5 +1,5 @@
 !define PRODUCT_NAME "ReactOS Build Environment for Windows"
-!define PRODUCT_VERSION "0.3.7.1"
+!define PRODUCT_VERSION "0.3.8"
 !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.7.1"
+VIAddVersionKey /LANG=1033 "FileVersion" "0.3.8.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/)"
@@ -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.7.1"
+VIProductVersion "0.3.8.0"
 
 CRCCheck force
 SetCompressor /FINAL /SOLID lzma
@@ -118,6 +118,8 @@
                        "$INSTDIR\Uninstall-${PRODUCT_VERSION}.exe"
         CreateShortCut "$SMPROGRAMS\$ICONS_GROUP\Readme.lnk" \
                        "$INSTDIR\readme.pdf"
+        CreateShortCut "$SMPROGRAMS\$ICONS_GROUP\Options.lnk" \
+                       "$INSTDIR\options.exe"
     !insertmacro MUI_STARTMENU_WRITE_END
 SectionEnd
 




More information about the Ros-diffs mailing list