From fa3b4a4d494ebbc4231831ca3431f70dbd383888 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 18 Dec 2009 17:54:58 +0000 Subject: [PATCH] 2009-12-18 18:53 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * doc/whatsnew.txt + Added text documenting whatsnew missing parts. * utils/hbmk2/hbmk2.prg ! Potential fix to external commands when using script and called in a loop. --- harbour/ChangeLog | 8 ++++++++ harbour/doc/whatsnew.txt | 14 ++++++++++++-- harbour/utils/hbmk2/hbmk2.prg | 5 +++++ 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d098b8c121..cb76dcc664 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,14 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-12-18 18:53 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * doc/whatsnew.txt + + Added text documenting whatsnew missing parts. + + * utils/hbmk2/hbmk2.prg + ! Potential fix to external commands when using script and called + in a loop. + 2009-12-18 14:52 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * package/winuni/RELNOTES + Added Cairo version. diff --git a/harbour/doc/whatsnew.txt b/harbour/doc/whatsnew.txt index 91e8cd7ddf..baa72b6786 100644 --- a/harbour/doc/whatsnew.txt +++ b/harbour/doc/whatsnew.txt @@ -12,10 +12,20 @@ The license applies to all entries on or after Version 1.1.0. */ -Version 2.0.0 (2009-0?-??) +Version 2.0.0 (2009-12-??) + +Note +============================= + +Too many to list, it's yet to be collected and sorted in +digestible form. [ Incomplete, unordered. - Processed from now until 2008-12-19 19:46 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) ] + This section only contains update between + 2008-12-19 19:46 UTC+0100 and 2009-03-11 08:51 UTC+0100. + + 2008-08/09 - 2008-12-19 and + 2009-03-11 - 2009-12-22 are missing. ] General ============================= diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index 1379a35397..ab1e732758 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -3969,6 +3969,7 @@ FUNCTION hbmk( aArgs, /* @ */ lPause ) cOpt_Res := AllTrim( cOpt_Res ) /* Handle moving the whole command line to a script, if requested. */ + cScriptFile := NIL IF "{SCRIPT}" $ cOpt_Res fhnd := hb_FTempCreateEx( @cScriptFile, NIL, NIL, ".lnk" ) IF fhnd != F_ERROR @@ -4104,6 +4105,7 @@ FUNCTION hbmk( aArgs, /* @ */ lPause ) cOpt_CompCLoop := AllTrim( StrTran( cOpt_CompC, "{LC}" , ArrayToList( aTODO,, nOpt_Esc ) ) ) /* Handle moving the whole command line to a script, if requested. */ + cScriptFile := NIL IF "{SCRIPT}" $ cOpt_CompCLoop fhnd := hb_FTempCreateEx( @cScriptFile, NIL, NIL, ".cpl" ) IF fhnd != F_ERROR @@ -4266,6 +4268,7 @@ FUNCTION hbmk( aArgs, /* @ */ lPause ) cOpt_Link := AllTrim( cOpt_Link ) /* Handle moving the whole command line to a script, if requested. */ + cScriptFile := NIL IF "{SCRIPT}" $ cOpt_Link fhnd := hb_FTempCreateEx( @cScriptFile, NIL, NIL, ".lnk" ) IF fhnd != F_ERROR @@ -4353,6 +4356,7 @@ FUNCTION hbmk( aArgs, /* @ */ lPause ) cOpt_Dyn := AllTrim( cOpt_Dyn ) /* Handle moving the whole command line to a script, if requested. */ + cScriptFile := NIL IF "{SCRIPT}" $ cOpt_Dyn fhnd := hb_FTempCreateEx( @cScriptFile, NIL, NIL, ".lnk" ) IF fhnd != F_ERROR @@ -4413,6 +4417,7 @@ FUNCTION hbmk( aArgs, /* @ */ lPause ) cOpt_Lib := AllTrim( cOpt_Lib ) /* Handle moving the whole command line to a script, if requested. */ + cScriptFile := NIL IF "{SCRIPT}" $ cOpt_Lib fhnd := hb_FTempCreateEx( @cScriptFile, NIL, NIL, ".lnk" ) IF fhnd != F_ERROR