diff --git a/CHANGELOG.md b/CHANGELOG.md index d1421ba2..3e58ef29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.2.0 +- Added configurability for thread based doublehash mode which helps you to use more of your l3 cache +- Memory optimizations +- Updated to latest XMRig (2.4.3) -> Added ARM support # v1.1.1 - Fixed table sorting for client id column on Dashboard - Fixed Windows compilation with msys2 (gcc) diff --git a/src/Summary.cpp b/src/Summary.cpp index 4f90fd77..1d259f3f 100644 --- a/src/Summary.cpp +++ b/src/Summary.cpp @@ -93,7 +93,7 @@ static void print_cpu() static void print_threads() { char dhtMaskBuf[256]; - if (Options::i()->doubleHashThreadMask() != -1L) { + if (Options::i()->doubleHash() && Options::i()->doubleHashThreadMask() != -1L) { std::string singleThreads; std::string doubleThreads; diff --git a/src/version.h b/src/version.h index bb205bf4..bc75b025 100644 --- a/src/version.h +++ b/src/version.h @@ -36,14 +36,14 @@ #define APP_DESC "XMRigCC CPU miner" #define APP_COPYRIGHT "Copyright (C) 2017- BenDr0id" #endif -#define APP_VERSION "1.1.1 (based on XMRig 2.4.2)" +#define APP_VERSION "1.2.0 (based on XMRig 2.4.3)" #define APP_DOMAIN "" #define APP_SITE "https://github.com/Bendr0id/xmrigCC" #define APP_KIND "cpu" #define APP_VER_MAJOR 1 -#define APP_VER_MINOR 1 -#define APP_VER_BUILD 1 +#define APP_VER_MINOR 2 +#define APP_VER_BUILD 0 #define APP_VER_REV 0 #ifdef _MSC_VER