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.
This commit is contained in:
Viktor Szakats
2009-12-18 17:54:58 +00:00
parent 79a8e43186
commit fa3b4a4d49
3 changed files with 25 additions and 2 deletions

View File

@@ -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.

View File

@@ -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
=============================

View File

@@ -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