Skip to content

Commit

Permalink
Update 6.0.8
Browse files Browse the repository at this point in the history
- Add a few nodes to src/Settings.cpp
- Updated Splash
- Updated Hunter PM Version to v0.23.314
  • Loading branch information
exploshot committed Oct 13, 2021
1 parent a613692 commit 2cf7968
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -32,8 +32,8 @@ set(HUNTER_CONFIGURATION_TYPES Release;Debug CACHE STRING "Hunter configuration
set(HUNTER_JOBS_NUMBER 4 CACHE STRING "Hunter jobs number")
include(hunter/HunterGate)
HunterGate(
URL "https://github.com/cpp-pm/hunter/archive/v0.23.254.tar.gz"
SHA1 "017e688b9848c1f695303e8cfe9f35d40e154112"
URL "https://github.com/cpp-pm/hunter/archive/v0.23.314.tar.gz"
SHA1 "95c47c92f68edb091b5d6d18924baabe02a6962a"
FILEPATH "${CMAKE_CURRENT_LIST_DIR}/cmake/hunter/HunterConfig.cmake"
)

Expand Down
11 changes: 10 additions & 1 deletion src/Settings.cpp
Expand Up @@ -102,7 +102,16 @@ void Settings::load() {
}

QStringList defaultNodesList;
defaultNodesList << "node-00.qwertycoin.org:8197" << "node-01.qwertycoin.org:8197" << "node-02.qwertycoin.org:8197" << "node-03.qwertycoin.org:8197" << "node-04.qwertycoin.org:8197" << "node-05.qwertycoin.org:8197";
defaultNodesList << "node-00.qwertycoin.org:8197"
<< "node-01.qwertycoin.org:8197"
<< "node-02.qwertycoin.org:8197"
<< "node-03.qwertycoin.org:8197"
<< "node-04.qwertycoin.org:8197"
<< "node-05.qwertycoin.org:8197"
<< "node-06.qwertycoin.org:8197"
<< "node-07.qwertycoin.org:8197"
<< "node-08.qwertycoin.org:8197"
<< "node-09.qwertycoin.org:8197";
if (!m_settings.contains(OPTION_RPCNODES)) {
setRpcNodesList(QStringList() << defaultNodesList);
} else {
Expand Down
Binary file modified src/images/splash.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/version.h.in
Expand Up @@ -8,8 +8,8 @@
#define PROJECT_COPYRIGHT "@PROJECT_COPYRIGHT@"
#define APP_VER_MAJOR 6
#define APP_VER_MINOR 0
#define APP_VER_REV 3
#define APP_VER_BUILD 6073
#define APP_VER_REV 8
#define APP_VER_BUILD 6112

#define BUILD_COMMIT_ID "@PROJECT_GIT_COMMIT_ID@"
#define PROJECT_VERSION STR(APP_VER_MAJOR) "." STR(APP_VER_MINOR) "." STR(APP_VER_REV)
Expand Down

0 comments on commit 2cf7968

Please sign in to comment.