Skip to content

Commit

Permalink
Version
Browse files Browse the repository at this point in the history
  • Loading branch information
demuskov committed Aug 8, 2022
1 parent d6ed31a commit 473d8d2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion qt/app/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<manifest package="app.buzzer.mobile" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="0.1.6.84" android:versionCode="106084" android:installLocation="auto">
<manifest package="app.buzzer.mobile" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="0.1.6.85" android:versionCode="106085" android:installLocation="auto">
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
Remove the comment if you do not require these default permissions. -->
<!-- %%INSERT_PERMISSIONS -->
Expand Down
2 changes: 1 addition & 1 deletion qt/app/android/buzzer-app.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"style": "Material",
"debug": true,
"interceptOutput": false,
"peers": "212.42.43.24:20415,212.42.43.9:21416,212.42.43.8:22417",
"peers": "46.8.220.7:20415,46.8.220.95:21416,46.8.220.98:22417,93.84.87.87:31415,93.84.87.87:31417,212.42.43.24:20415",
"peers_t": "",
"peers_d": "",
"logCategories": "warn,error,info,client",
Expand Down
4 changes: 2 additions & 2 deletions qt/app/buzzer-app.pro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ else: QT += qml quick quickcontrols2 multimedia

CONFIG += c++11

VERSION = 0.1.6.84
VERSION = 0.1.6.85
DEFINES += VERSION_STRING=\\\"$${VERSION}\\\"
DEFINES += QT_ENVIRONMENT
DEFINES += BUZZER_MOD
Expand All @@ -18,7 +18,7 @@ DEFINES += CLIENT_PLATFORM
DEFINES += QBIT_VERSION_MAJOR=0
DEFINES += QBIT_VERSION_MINOR=1
DEFINES += QBIT_VERSION_REVISION=6
DEFINES += QBIT_VERSION_BUILD=84
DEFINES += QBIT_VERSION_BUILD=85

DEFINES += BUZZER_MOD
DEFINES += CUBIX_MOD
Expand Down
4 changes: 2 additions & 2 deletions qt/app/buzzer-daemon.pro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ else: QT += qml quick

CONFIG += c++11

VERSION = 0.1.6.84
VERSION = 0.1.6.85
DEFINES += VERSION_STRING=\\\"$${VERSION}\\\"
DEFINES += QT_ENVIRONMENT
DEFINES += BUZZER_MOD
Expand All @@ -18,7 +18,7 @@ DEFINES += CLIENT_PLATFORM
DEFINES += QBIT_VERSION_MAJOR=0
DEFINES += QBIT_VERSION_MINOR=1
DEFINES += QBIT_VERSION_REVISION=6
DEFINES += QBIT_VERSION_BUILD=84
DEFINES += QBIT_VERSION_BUILD=85

DEFINES += BUZZER_MOD
DEFINES += CUBIX_MOD
Expand Down
2 changes: 1 addition & 1 deletion qt/app/peerslistmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ QVariant PeersListModel::data(const QModelIndex& index, int role) const {
for (std::vector<qbit::State::BlockInfo>::const_iterator lInfo = lItem->chains().begin(); lInfo != lItem->chains().end(); lInfo++) {
std::string lName = (lInfo->dApp().size() ? lInfo->dApp() : "none");
std::string lHash = lInfo->hash().toHex();
std::string lBlock = lHash.substr(0, 8) + "..." + lHash.substr(lHash.size()-9, lHash.size()-1);
std::string lBlock = lHash.substr(0, 6) + "..." + lHash.substr(lHash.size()-6, lHash.size()-1);
lChains += strprintf("<li>%s - (%s, %s)</li>", lBlock, lInfo->height(), lName);
}

Expand Down

0 comments on commit 473d8d2

Please sign in to comment.