Skip to content

Commit 9d37ac1

Browse files
committed
Version 1.1.2
1 parent 2057f95 commit 9d37ac1

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

configure

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for BitBlocks Core 1.1.1
3+
# Generated by GNU Autoconf 2.69 for BitBlocks Core 1.1.2
44
#
55
# Report bugs to <www.bitblocks.org>.
66
#
@@ -590,7 +590,7 @@ MAKEFLAGS=
590590
# Identity of this package.
591591
PACKAGE_NAME='BitBlocks Core'
592592
PACKAGE_TARNAME='bitblocks'
593-
PACKAGE_VERSION='1.1.1'
593+
PACKAGE_VERSION='1.1.2'
594594
PACKAGE_STRING='BitBlocks Core'
595595
PACKAGE_BUGREPORT='www.bitblocksproject.com'
596596
PACKAGE_URL=''
@@ -1553,7 +1553,7 @@ if test "$ac_init_help" = "long"; then
15531553
# Omit some internal or obsolete options to make the list less imposing.
15541554
# This message is too long to be a string in the A/UX 3.1 sh.
15551555
cat <<_ACEOF
1556-
\`configure' configures BitBlocks Core 1.1.1 to adapt to many kinds of systems.
1556+
\`configure' configures BitBlocks Core 1.1.2 to adapt to many kinds of systems.
15571557

15581558
Usage: $0 [OPTION]... [VAR=VALUE]...
15591559

@@ -1624,7 +1624,7 @@ fi
16241624

16251625
if test -n "$ac_init_help"; then
16261626
case $ac_init_help in
1627-
short | recursive ) echo "Configuration of BitBlocks Core 1.1.1:";;
1627+
short | recursive ) echo "Configuration of BitBlocks Core 1.1.2:";;
16281628
esac
16291629
cat <<\_ACEOF
16301630

@@ -1871,7 +1871,7 @@ fi
18711871
test -n "$ac_init_help" && exit $ac_status
18721872
if $ac_init_version; then
18731873
cat <<\_ACEOF
1874-
BitBlocks Core configure 1.1.1
1874+
BitBlocks Core configure 1.1.2
18751875
generated by GNU Autoconf 2.69
18761876

18771877
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2554,7 +2554,7 @@ cat >config.log <<_ACEOF
25542554
This file contains any messages produced by compilers while
25552555
running configure, to aid debugging if configure makes a mistake.
25562556

2557-
It was created by BitBlocks Core $as_me 1.1.1, which was
2557+
It was created by BitBlocks Core $as_me 1.1.2, which was
25582558
generated by GNU Autoconf 2.69. Invocation command line was
25592559

25602560
$ $0 $@
@@ -3500,7 +3500,7 @@ fi
35003500

35013501
# Define the identity of the package.
35023502
PACKAGE='bitblocks'
3503-
VERSION='1.1.1'
3503+
VERSION='1.1.2'
35043504

35053505

35063506
# Some tools Automake needs.
@@ -29144,7 +29144,7 @@ CLIENT_VERSION_MAJOR=1
2914429144

2914529145
CLIENT_VERSION_MINOR=1
2914629146

29147-
CLIENT_VERSION_REVISION=1
29147+
CLIENT_VERSION_REVISION=2
2914829148

2914929149
CLIENT_VERSION_BUILD=0
2915029150

@@ -29819,7 +29819,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2981929819
# report actual input values of CONFIG_FILES etc. instead of their
2982029820
# values after options handling.
2982129821
ac_log="
29822-
This file was extended by BitBlocks Core $as_me 1.1.1, which was
29822+
This file was extended by BitBlocks Core $as_me 1.1.2, which was
2982329823
generated by GNU Autoconf 2.69. Invocation command line was
2982429824

2982529825
CONFIG_FILES = $CONFIG_FILES
@@ -29885,7 +29885,7 @@ _ACEOF
2988529885
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2988629886
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2988729887
ac_cs_version="\\
29888-
BitBlocks Core config.status 1.1.1
29888+
BitBlocks Core config.status 1.1.2
2988929889
configured by $0, generated by GNU Autoconf 2.69,
2989029890
with options \\"\$ac_cs_config\\"
2989129891

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ 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, 1)
5+
define(_CLIENT_VERSION_REVISION, 2)
66
define(_CLIENT_VERSION_BUILD, 0)
77
define(_CLIENT_VERSION_IS_RELEASE, true)
88
define(_COPYRIGHT_YEAR, 2022)

src/clientversion.h

Lines changed: 1 addition & 1 deletion
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 1
19+
#define CLIENT_VERSION_REVISION 2
2020
#define CLIENT_VERSION_BUILD 0
2121

2222
//! Set to true for release, false for prerelease or test build

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.1")).arg(QString::fromStdString(FormatFullVersion()));
38+
QString versionText = QString(tr("Version: 1.1.2")).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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Copyright (c) 2014-2015 The Dash developers
33
// Copyright (c) 2015-2017 The PIVX developers
44
// Copyright (c) 2018 LightPayCoin developers
5-
// Copyright (c) 2018-2020 The BitBlocks developers
5+
// Copyright (c) 2018-2022 The BitBlocks developers
66
// Distributed under the MIT/X11 software license, see the accompanying
77
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
88

@@ -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.1");
39+
QString version = tr("BitBlocks Core") + " " + tr("version v1.1.2");
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)