Skip to content

Commit

Permalink
2024-09-14 21:26 UTC+0200 Aleksander Czajczynski (hb fki.pl)
Browse files Browse the repository at this point in the history
  * tests/speedtst.prg
    ! fix recursion bug i've made

  * 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 2024
  • Loading branch information
alcz committed Sep 14, 2024
1 parent 26849d3 commit 1044334
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 8 deletions.
14 changes: 14 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@
Entries may not always be in chronological/commit order.
See license at the end of file. */

2024-09-14 21:26 UTC+0200 Aleksander Czajczynski (hb fki.pl)
* tests/speedtst.prg
! fix recursion bug i've made

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

2024-09-14 18:36 UTC+0200 Aleksander Czajczynski (hb fki.pl)
+ config/win/msvcarm.mk
+ config/win/msvcarm64.mk
Expand Down
2 changes: 1 addition & 1 deletion contrib/hbdoc/hbdoc.prg
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ STATIC PROCEDURE ShowHelp( cExtraMessage, aArgs )
aHelp := { ;
cExtraMessage, ;
"Harbour Document Compiler (hbdoc) " + HBRawVersion(), ;
"Copyright (c) 1999-2021, " + hb_Version( HB_VERSION_URL_BASE ), ;
"Copyright (c) 1999-2024, " + hb_Version( HB_VERSION_URL_BASE ), ;
"", ;
"Syntax:", ;
"", ;
Expand Down
2 changes: 1 addition & 1 deletion contrib/hbformat/utils/hbformat.prg
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ STATIC PROCEDURE About()
OutStd( ;
"Harbour Source Formatter " + HBRawVersion() + hb_eol() + ;
"Copyright (c) 2010-" + ;
"2021" + ", " + ;
"2024" + ", " + ;
hb_Version( HB_VERSION_URL_BASE ) + hb_eol() + ;
"Copyright (c) 2009, Alexander S.Kresin" + hb_eol() + ;
hb_eol() )
Expand Down
2 changes: 1 addition & 1 deletion package/harbour.mft
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Copyright © 1999-2021 (see application banner) -->
<!-- Copyright © 1999-2024 (see application banner) -->
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="3.2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion package/harbour.rc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define HB_VER_FILEVERSION_STR HB_VER_PRODUCTVERSION_STR

#define HB_NAME "Harbour\0"
#define HB_COPYRIGHT "Copyright \xA9 1999-2021 (see application banner)\0"
#define HB_COPYRIGHT "Copyright \xA9 1999-2024 (see application banner)\0"

/* Version info */

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/hbusage.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ void hb_compPrintLogo( HB_COMP_DECL )
{
char * szVer = hb_verHarbour();

#define HB_VER_COMMIT_YEAR "2021"
#define HB_VER_COMMIT_YEAR "2024"
#define HB_VER_ORIGIN_URL "https://harbour.github.io/"

hb_compOutStd( HB_COMP_PARAM, szVer );
Expand Down
2 changes: 1 addition & 1 deletion tests/speedtst.prg
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ return
#ifdef __HARBOUR__
#ifndef __XHARBOUR__
static function spd_cpu()
if right( hb_compiler(), len( spd_cpu() ) ) == spd_cpu()
if right( hb_compiler(), len( hb_version( HB_VERSION_CPU ) ) ) == hb_version( HB_VERSION_CPU )
return ""
endif
return hb_version( HB_VERSION_CPU )
Expand Down
2 changes: 1 addition & 1 deletion utils/hbi18n/hbi18n.prg
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ STATIC PROCEDURE Logo()
OutStd( ;
"Harbour i18n .pot/.hbl file manager " + HBRawVersion() + hb_eol() + ;
"Copyright (c) 2009-" + ;
"2021" + ", " + ;
"2024" + ", " + ;
"Przemyslaw Czerpak" + hb_eol() + ;
hb_Version( HB_VERSION_URL_BASE ) + hb_eol() + ;
hb_eol() )
Expand Down
2 changes: 1 addition & 1 deletion utils/hbtest/hbtest.prg
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ STATIC s_lDBFAvail := .F.
ANNOUNCE HB_GTSYS
REQUEST HB_GT_CGI_DEFAULT

#define COPYRIGHT_YEAR "2021"
#define COPYRIGHT_YEAR "2024"
#else
#define COPYRIGHT_YEAR "present"

Expand Down

0 comments on commit 1044334

Please sign in to comment.