2020-01-31 15:34 UTC+0100 Aleksander Czajczynski (hb fki.pl)

* src/rtl/listbox.prg
    ! fix listbox scroll bar position calculation to not rely on
      default Cl*pper compatible division by zero error handler.
      Thanks to tarpauwatratar for the report and fix suggestion
      on the developers list.

  * 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 2020

  * ChangeLog.txt
    * function name typo + file case corrected
This commit is contained in:
Aleksander Czajczynski
2020-01-31 15:34:40 +01:00
parent 1257255fc3
commit b337909ce6
10 changed files with 36 additions and 10 deletions

View File

@@ -7,6 +7,26 @@
Entries may not always be in chronological/commit order.
See license at the end of file. */
2020-01-31 15:34 UTC+0100 Aleksander Czajczynski (hb fki.pl)
* src/rtl/listbox.prg
! fix listbox scroll bar position calculation to not rely on
default Cl*pper compatible division by zero error handler.
Thanks to tarpauwatratar for the report and fix suggestion
on the developers list.
* 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 2020
* ChangeLog.txt
* function name typo + file case corrected
2020-01-13 19:15 UTC+0100 Aleksander Czajczynski (hb fki.pl)
* src/rtl/gtwin/gtwin.c
* src/rtl/gtwvt/gtwvt.c
@@ -18,7 +38,7 @@
https://github.com/harbour/core/commit/8465bce36bbfab6026673f1c597a91028f96079a
2019-12-03 11:42 UTC+0100 Maurizio la Cecilia (m.lacecilia/at/gmail.com)
* changelog.txt
* ChangeLog.txt
* restored UTF-8 encoding after previous wrong commit (Sorry!!!)
2019-12-03 10:55 UTC+0100 Maurizio la Cecilia (m.lacecilia/at/gmail.com)
@@ -41,7 +61,7 @@
Syntax:
wapi_ShellExecuteWait([<hWnd>], [<cOperation>], [<cFile>], [<cParameters>],
[<cWorkDirectory>], [<nShowCmd>]) ? nResult
The function acts as wapi_ShelleExecute() but it waits for the completion
The function acts as wapi_ShellExecute() but it waits for the completion
before returning
* src/rtl/tmenusys.prg
* forced the menu system to not close current popup after menu action

View File

@@ -768,7 +768,7 @@ STATIC PROCEDURE ShowHelp( cExtraMessage, aArgs )
aHelp := { ;
cExtraMessage, ;
"Harbour Document Compiler (hbdoc) " + HBRawVersion(), ;
"Copyright (c) 1999-2019, " + hb_Version( HB_VERSION_URL_BASE ), ;
"Copyright (c) 1999-2020, " + hb_Version( HB_VERSION_URL_BASE ), ;
"", ;
"Syntax:", ;
"", ;

View File

@@ -160,7 +160,7 @@ STATIC PROCEDURE About()
OutStd( ;
"Harbour Source Formatter " + HBRawVersion() + hb_eol() + ;
"Copyright (c) 2010-" + ;
"2019" + ", " + ;
"2020" + ", " + ;
hb_Version( HB_VERSION_URL_BASE ) + hb_eol() + ;
"Copyright (c) 2009, Alexander S.Kresin" + hb_eol() + ;
hb_eol() )

View File

@@ -836,7 +836,7 @@ STATIC PROCEDURE HB_Logo()
OutStd( ;
"Harbour NETIO Server " + StrTran( Version(), "Harbour " ) + hb_eol() + ;
"Copyright (c) 2009-" + ;
"2019" + ", " + ;
"2020" + ", " + ;
"Przemyslaw Czerpak, Viktor Szakats" + hb_eol() + ;
hb_Version( HB_VERSION_URL_BASE ) + hb_eol() + ;
hb_eol() )

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Copyright © 1999-2019 (see application banner) -->
<!-- Copyright © 1999-2020 (see application banner) -->
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="3.2.0.0"

View File

@@ -11,7 +11,7 @@
#define HB_VER_FILEVERSION_STR HB_VER_PRODUCTVERSION_STR
#define HB_NAME "Harbour\0"
#define HB_COPYRIGHT "Copyright \xA9 1999-2019 (see application banner)\0"
#define HB_COPYRIGHT "Copyright \xA9 1999-2020 (see application banner)\0"
/* Version info */

View File

@@ -261,7 +261,7 @@ void hb_compPrintLogo( HB_COMP_DECL )
{
char * szVer = hb_verHarbour();
#define HB_VER_COMMIT_YEAR "2019"
#define HB_VER_COMMIT_YEAR "2020"
#define HB_VER_ORIGIN_URL "https://harbour.github.io/"
hb_compOutStd( HB_COMP_PARAM, szVer );

View File

@@ -829,6 +829,12 @@ METHOD scrollbarPos() CLASS ListBox
LOCAL nCount := ::nItemCount
LOCAL nLength := ::oVScroll:barLength
#ifndef HB_CLP_STRICT
/* NOTE: Cl*pper will RTE with non default division by zero error handler */
IF nCount == nSize
RETURN 0
ENDIF
#endif
RETURN ( ( nCount - nLength ) * ::nTopItem + nLength - nSize ) / ( nCount - nSize )
/* --- */

View File

@@ -168,7 +168,7 @@ STATIC PROCEDURE Logo()
OutStd( ;
"Harbour i18n .pot/.hbl file manager " + HBRawVersion() + hb_eol() + ;
"Copyright (c) 2009-" + ;
"2019" + ", " + ;
"2020" + ", " + ;
"Przemyslaw Czerpak" + hb_eol() + ;
hb_Version( HB_VERSION_URL_BASE ) + hb_eol() + ;
hb_eol() )

View File

@@ -95,7 +95,7 @@ STATIC s_lDBFAvail := .F.
ANNOUNCE HB_GTSYS
REQUEST HB_GT_CGI_DEFAULT
#define COPYRIGHT_YEAR "2019"
#define COPYRIGHT_YEAR "2020"
#else
#define COPYRIGHT_YEAR "present"