Skip to content

Commit 81776d6

Browse files
committed
Version 1.1.3
1 parent 1d635af commit 81776d6

5 files changed

Lines changed: 87 additions & 6 deletions

File tree

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
22
AC_PREREQ([2.60])
33
define(_CLIENT_VERSION_MAJOR, 1)
44
define(_CLIENT_VERSION_MINOR, 1)
5-
define(_CLIENT_VERSION_REVISION, 2)
5+
define(_CLIENT_VERSION_REVISION, 3)
66
define(_CLIENT_VERSION_BUILD, 0)
77
define(_CLIENT_VERSION_IS_RELEASE, true)
8-
define(_COPYRIGHT_YEAR, 2022)
8+
define(_COPYRIGHT_YEAR, 2025)
99
AC_INIT([BitBlocks Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[www.bitblocks.org],[bitblocks])
1010
AC_CONFIG_SRCDIR([src/main.cpp])
1111
AC_CONFIG_HEADERS([src/config/bitblocks-config.h])
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
BitBlocks Core version 1.1.3 is now available from:
2+
3+
<https://github.com/bitblocks-project/bitblocks/releases>
4+
5+
This is a new patch version release, including various bug fixes, performance improvements, GUI enhancements, and updated translations.
6+
7+
Please report bugs using the issue tracker at github:
8+
9+
<https://github.com/bitblocks-project/bitblocks/issues>
10+
11+
Compatibility
12+
==============
13+
14+
BitBlocks Core is extensively tested on multiple operating systems using
15+
the Linux kernel, macOS 10.8+, and Windows Vista and later.
16+
17+
BitBlocks Core should also work on most other Unix-like systems but is not
18+
frequently tested on them.
19+
20+
Notable Changes
21+
===============
22+
23+
### GUI Improvements
24+
- Modernized GUI with card-based design, improved UX, and visual enhancements
25+
- Implemented stable sort in TransactionFilterProxy using sortKey and hash
26+
27+
### Performance Improvements
28+
- Optimized wallet rescan performance and prevented UI freezing
29+
30+
### Network and Consensus
31+
- Updated mainnet checkpoints to block 3685080
32+
- Added new DNS seeds
33+
- Refactored: Separated PoW and PoS target spacing/timespan parameters
34+
- Fixed: Corrected fShouldBan flag in Misbehaving()
35+
36+
### Build System
37+
- Fixed Windows compilation with MinGW-w64
38+
- Cleaned repository: removed autotools generated files
39+
- Added .gitignore to prevent committing generated files
40+
41+
### Translations
42+
- Completed pt_BR translations and fixed typo
43+
44+
### Bug Fixes
45+
- Fixed block reward error
46+
47+
1.1.3 Change log
48+
=================
49+
50+
Detailed release notes follow. This overview includes changes that affect
51+
behavior, not code moves, refactors and string updates.
52+
53+
### GUI
54+
- Modernized GUI with card-based design, improved UX, and visual enhancements
55+
- Implemented stable sort in TransactionFilterProxy using sortKey and hash
56+
57+
### Wallet
58+
- Optimized wallet rescan performance and prevented UI freezing
59+
60+
### Network
61+
- Updated mainnet checkpoints to block 3685080
62+
- Added new DNS seeds
63+
64+
### Consensus
65+
- Refactored: Separated PoW and PoS target spacing/timespan parameters
66+
- Fixed: Corrected fShouldBan flag in Misbehaving()
67+
- Fixed block reward error (2022)
68+
69+
### Build System
70+
- Fixed Windows compilation with MinGW-w64
71+
- Cleaned repository: removed autotools generated files
72+
- Added .gitignore to prevent committing generated files
73+
74+
### Translations
75+
- Completed pt_BR translations and fixed typo
76+
77+
Credits
78+
=======
79+
80+
Thanks to everyone who directly contributed to this release:
81+
- Healseyn (Edson Guimarães)

src/clientversion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//! These need to be macros, as clientversion.cpp's and bitblocks*-res.rc's voodoo requires it
1717
#define CLIENT_VERSION_MAJOR 1
1818
#define CLIENT_VERSION_MINOR 1
19-
#define CLIENT_VERSION_REVISION 2
19+
#define CLIENT_VERSION_REVISION 3
2020
#define CLIENT_VERSION_BUILD 0
2121

2222
//! Set to true for release, false for prerelease or test build
@@ -26,7 +26,7 @@
2626
* Copyright year (2009-this)
2727
* Todo: update this when changing our copyright comments in the source
2828
*/
29-
#define COPYRIGHT_YEAR 2022
29+
#define COPYRIGHT_YEAR 2025
3030

3131
#endif //HAVE_CONFIG_H
3232

src/qt/splashscreen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ SplashScreen::SplashScreen(Qt::WindowFlags f, const NetworkStyle* networkStyle)
3535

3636
// define text to place
3737
QString titleText = tr("BitBlocks Core");
38-
QString versionText = QString(tr("Version: 1.1.2")).arg(QString::fromStdString(FormatFullVersion()));
38+
QString versionText = QString(tr("Version: 1.1.3")).arg(QString::fromStdString(FormatFullVersion()));
3939
QString copyrightTextBtc = QChar(0xA9) + QString(tr(" 2009-2014 The Bitcoin developers"));
4040
QString copyrightTextDash = QChar(0xA9) + QString(tr(" 2014-2015 The Dash developers"));
4141
QString copyrightTextPivx = QChar(0xA9) + QString(tr(" 2015-2017 The Pivx developers"));

src/qt/utilitydialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ HelpMessageDialog::HelpMessageDialog(QWidget* parent, bool about) : QDialog(pare
3636
ui->setupUi(this);
3737
GUIUtil::restoreWindowGeometry("nHelpMessageDialogWindow", this->size(), this);
3838

39-
QString version = tr("BitBlocks Core") + " " + tr("version v1.1.2");
39+
QString version = tr("BitBlocks Core") + " " + tr("version v1.1.3");
4040
/* On x86 add a bit specifier to the version so that users can distinguish between
4141
* 32 and 64 bit builds. On other architectures, 32/64 bit may be more ambigious.
4242
*/

0 commit comments

Comments
 (0)