Updated changelog/version

This commit is contained in:
BenDroid 2017-12-03 21:21:27 +01:00
parent 9e9f708fd8
commit 71bc6e224d
3 changed files with 8 additions and 4 deletions

View file

@ -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 # v1.1.1
- Fixed table sorting for client id column on Dashboard - Fixed table sorting for client id column on Dashboard
- Fixed Windows compilation with msys2 (gcc) - Fixed Windows compilation with msys2 (gcc)

View file

@ -93,7 +93,7 @@ static void print_cpu()
static void print_threads() static void print_threads()
{ {
char dhtMaskBuf[256]; char dhtMaskBuf[256];
if (Options::i()->doubleHashThreadMask() != -1L) { if (Options::i()->doubleHash() && Options::i()->doubleHashThreadMask() != -1L) {
std::string singleThreads; std::string singleThreads;
std::string doubleThreads; std::string doubleThreads;

View file

@ -36,14 +36,14 @@
#define APP_DESC "XMRigCC CPU miner" #define APP_DESC "XMRigCC CPU miner"
#define APP_COPYRIGHT "Copyright (C) 2017- BenDr0id" #define APP_COPYRIGHT "Copyright (C) 2017- BenDr0id"
#endif #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_DOMAIN ""
#define APP_SITE "https://github.com/Bendr0id/xmrigCC" #define APP_SITE "https://github.com/Bendr0id/xmrigCC"
#define APP_KIND "cpu" #define APP_KIND "cpu"
#define APP_VER_MAJOR 1 #define APP_VER_MAJOR 1
#define APP_VER_MINOR 1 #define APP_VER_MINOR 2
#define APP_VER_BUILD 1 #define APP_VER_BUILD 0
#define APP_VER_REV 0 #define APP_VER_REV 0
#ifdef _MSC_VER #ifdef _MSC_VER