2021-04-12 21:18 UTC+0200 Aleksander Czajczynski (hb fki.pl)
* src/rtl/hbfilehi.prg
* hb_DirBuild() will now honor UNC "\\server\share\dir\tree" parameter
on Windows and correctly create specified "\dir\tree" on remote
server. If your code used a malformed "\\local\path" a regression
in .prg code may happen on Windows. Previously a "\local\path"
folder was created on current drive, as if the UNC specifier was
omitted. It was more or less consistent with other platforms but
not expected for this platform. Spotted by Maurizio la Cecilia (#233)
[INCOMPATIBLE]
* contrib/hbdoc/hbdoc.prg
* contrib/hbformat/utils/hbformat.prg
* contrib/hbnetio/utils/hbnetio/hbnetio.prg
* package/harbour.mft
* package/harbour.rc
* src/compiler/hbusage.c
* utils/hbi18n/hbi18n.prg
* utils/hbtest/hbtest.prg
* bumped copyright year to 2021
This commit is contained in:
@@ -7,6 +7,27 @@
|
||||
Entries may not always be in chronological/commit order.
|
||||
See license at the end of file. */
|
||||
|
||||
2021-04-12 21:18 UTC+0200 Aleksander Czajczynski (hb fki.pl)
|
||||
* src/rtl/hbfilehi.prg
|
||||
* hb_DirBuild() will now honor UNC "\\server\share\dir\tree" parameter
|
||||
on Windows and correctly create specified "\dir\tree" on remote
|
||||
server. If your code used a malformed "\\local\path" a regression
|
||||
in .prg code may happen on Windows. Previously a "\local\path"
|
||||
folder was created on current drive, as if the UNC specifier was
|
||||
omitted. It was more or less consistent with other platforms but
|
||||
not expected for this platform. Spotted by Maurizio la Cecilia (#233)
|
||||
[INCOMPATIBLE]
|
||||
|
||||
* contrib/hbdoc/hbdoc.prg
|
||||
* contrib/hbformat/utils/hbformat.prg
|
||||
* contrib/hbnetio/utils/hbnetio/hbnetio.prg
|
||||
* package/harbour.mft
|
||||
* package/harbour.rc
|
||||
* src/compiler/hbusage.c
|
||||
* utils/hbi18n/hbi18n.prg
|
||||
* utils/hbtest/hbtest.prg
|
||||
* bumped copyright year to 2021
|
||||
|
||||
2021-04-10 23:32 UTC+0200 Aleksander Czajczynski (hb fki.pl)
|
||||
* contrib/hbfbird/firebird.c
|
||||
+ added optional <cCollate> as 7-th parameter of FBCREATEDB( <cDB>,
|
||||
|
||||
@@ -768,7 +768,7 @@ STATIC PROCEDURE ShowHelp( cExtraMessage, aArgs )
|
||||
aHelp := { ;
|
||||
cExtraMessage, ;
|
||||
"Harbour Document Compiler (hbdoc) " + HBRawVersion(), ;
|
||||
"Copyright (c) 1999-2020, " + hb_Version( HB_VERSION_URL_BASE ), ;
|
||||
"Copyright (c) 1999-2021, " + hb_Version( HB_VERSION_URL_BASE ), ;
|
||||
"", ;
|
||||
"Syntax:", ;
|
||||
"", ;
|
||||
|
||||
@@ -160,7 +160,7 @@ STATIC PROCEDURE About()
|
||||
OutStd( ;
|
||||
"Harbour Source Formatter " + HBRawVersion() + hb_eol() + ;
|
||||
"Copyright (c) 2010-" + ;
|
||||
"2020" + ", " + ;
|
||||
"2021" + ", " + ;
|
||||
hb_Version( HB_VERSION_URL_BASE ) + hb_eol() + ;
|
||||
"Copyright (c) 2009, Alexander S.Kresin" + hb_eol() + ;
|
||||
hb_eol() )
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<!-- Copyright © 1999-2020 (see application banner) -->
|
||||
<!-- Copyright © 1999-2021 (see application banner) -->
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<assemblyIdentity
|
||||
version="3.2.0.0"
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
#define HB_VER_FILEVERSION_STR HB_VER_PRODUCTVERSION_STR
|
||||
|
||||
#define HB_NAME "Harbour\0"
|
||||
#define HB_COPYRIGHT "Copyright \xA9 1999-2020 (see application banner)\0"
|
||||
#define HB_COPYRIGHT "Copyright \xA9 1999-2021 (see application banner)\0"
|
||||
|
||||
/* Version info */
|
||||
|
||||
|
||||
@@ -261,7 +261,7 @@ void hb_compPrintLogo( HB_COMP_DECL )
|
||||
{
|
||||
char * szVer = hb_verHarbour();
|
||||
|
||||
#define HB_VER_COMMIT_YEAR "2020"
|
||||
#define HB_VER_COMMIT_YEAR "2021"
|
||||
#define HB_VER_ORIGIN_URL "https://harbour.github.io/"
|
||||
|
||||
hb_compOutStd( HB_COMP_PARAM, szVer );
|
||||
|
||||
@@ -284,6 +284,11 @@ FUNCTION hb_DirBuild( cDir )
|
||||
( tmp := At( hb_osDriveSeparator(), cDir ) ) > 0
|
||||
cDirTemp := Left( cDir, tmp )
|
||||
cDir := SubStr( cDir, tmp + 1 )
|
||||
#ifdef __PLATFORM__WINDOWS
|
||||
ELSEIF Left( cDir, 2 ) == "\\" /* UNC Path, network share */
|
||||
cDirTemp := Left( cDir, hb_At( "\", cDir, 3 ) )
|
||||
cDir := SubStr( cDir, Len( cDirTemp ) + 1 )
|
||||
#endif
|
||||
ELSEIF Left( cDir, 1 ) == hb_ps()
|
||||
cDirTemp := Left( cDir, 1 )
|
||||
cDir := SubStr( cDir, 2 )
|
||||
|
||||
@@ -168,7 +168,7 @@ STATIC PROCEDURE Logo()
|
||||
OutStd( ;
|
||||
"Harbour i18n .pot/.hbl file manager " + HBRawVersion() + hb_eol() + ;
|
||||
"Copyright (c) 2009-" + ;
|
||||
"2020" + ", " + ;
|
||||
"2021" + ", " + ;
|
||||
"Przemyslaw Czerpak" + hb_eol() + ;
|
||||
hb_Version( HB_VERSION_URL_BASE ) + hb_eol() + ;
|
||||
hb_eol() )
|
||||
|
||||
@@ -95,7 +95,7 @@ STATIC s_lDBFAvail := .F.
|
||||
ANNOUNCE HB_GTSYS
|
||||
REQUEST HB_GT_CGI_DEFAULT
|
||||
|
||||
#define COPYRIGHT_YEAR "2020"
|
||||
#define COPYRIGHT_YEAR "2021"
|
||||
#else
|
||||
#define COPYRIGHT_YEAR "present"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user