diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d6ecf560c..416626e670 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 1.6.5 +- Hashrate improve -> add autodetection mode for cpu-affinity +- Hashrate improve, more stable hashrates -> refactor memory allocation +- Add Arto (RTO) support (cn [2mb scratchpag] + ipbc mod) +- Add TubeV4 (TUBE) support (cn-heavy [4mb scratchpad] + ipbc mod + soft-aes mod) +- Add external IP to log view +- Fix memory leak in RemoteLog +- Fix crash Filelog +- Fix stop/freeze of cc communication on some miners +- Fix cn-heavy on arm processors # 1.6.4 - Fix connection issues #130 - Remote logging (Miner log on the Dashboard) diff --git a/README.md b/README.md index 9e637a821b..4ad7948255 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,10 @@ Full Windows/Linux compatible, and you can mix Linux and Windows miner on one XM ## Additional features of XMRigCC (on top of XMRig) Check the [Coin Configuration](https://github.com/Bendr0id/xmrigCC/wiki/Coin-configurations) guide -* **NEW: Support of Crytptonight Masari (MSR) v7 variant (use variant "msr" to be ready for the fork, with autodetect)** -* **NEW: Support of Crytptonight-Heavy Haven Protocol (XHV) v3 variant (use variant "xhv")** +* **NEW: Support of Crytptonight-Heavy BitTube (TUBE) v4 variant (will fork on Block 110000)** +* **NEW: Support of Crytptonight Arto (RTO) variant** +* **Support of Crytptonight Masari (MSR) v7 variant (use variant "msr" to be ready for the fork, with autodetect)** +* **Support of Crytptonight-Heavy Haven Protocol (XHV) v3 variant (use variant "xhv")** * **Support of Crytptonight Stellite (XTL) v4 variant** * **Support of Crytptonight Alloy (XAO) variant** * **Support of Crytptonight-Lite IPBC/TUBE variant** @@ -132,7 +134,7 @@ xmrigDaemon -o pool.minemonero.pro:5555 -u YOUR_WALLET -p x -k --cc-url=IP_OF_CC -k, --keepalive send keepalived for prevent timeout (need pool support) -r, --retries=N number of times to retry before switch to backup server (default: 5) -R, --retry-pause=N time to pause between retries (default: 5) - --pow-variant=V specificy the PoW variat to use: -> auto (default), 0 (v0), 1 (v1, aka monerov7, aeonv7), ipbc (tube), alloy, xtl (including autodetect for v5) + --pow-variant=V specificy the PoW variat to use: -> auto (default), 0 (v0), 1 (v1, aka monerov7, aeonv7), tube (ipbc), alloy, xtl (including autodetect for v5), msr, xhv, rto for further help see: https://github.com/Bendr0id/xmrigCC/wiki/Coin-configurations --multihash-factor=N number of hash blocks to process at a time (don't set or 0 enables automatic selection of optimal number of hash blocks) --multihash-thread-mask=MASK limits multihash to given threads (mask), (default: all threads) diff --git a/src/config.json b/src/config.json index 41c0fa519f..2a8aab50da 100644 --- a/src/config.json +++ b/src/config.json @@ -4,7 +4,7 @@ "threads": 0, // number of miner threads (not set or 0 enables automatic selection of optimal thread count) "multihash-factor": 0, // number of hash blocks to process at a time (not set or 0 enables automatic selection of optimal number of hash blocks) "multihash-thread-mask" : null, // for multihash-factors>0 only, limits multihash to given threads (mask), mask "0x3" means run multihash on thread 0 and 1 only (default: all threads) - "pow-variant" : "auto", // specificy the PoW variat to use: -> auto (default), 0 (v0), 1 (v1, aka monerov7, aeonv7), ipbc (tube), alloy, xtl (including autodetect for v5) + "pow-variant" : "auto", // specificy the PoW variat to use: -> auto (default), 0 (v0), 1 (v1, aka monerov7, aeonv7), tube (ipbc), alloy, xtl (including autodetect for v5), msr, xhv, rto // for further help see: https://github.com/Bendr0id/xmrigCC/wiki/Coin-configurations "background": false, // true to run the miner in the background (Windows only, for *nix plase use screen/tmux or systemd service instead) "colors": true, // false to disable colored output @@ -20,8 +20,8 @@ "syslog": false, // use system log for output messages "pools": [ { - "url": "", // URL of mining server - "user": "", // username for mining server + "url": "donate2.graef.in:80", // URL of mining server + "user": "YOUR_WALLET_ID", // username for mining server "pass": "x", // password for mining server "use-tls" : false, // enable tls for pool communication (need pool support) "keepalive": true, // send keepalived for prevent timeout (need pool support) diff --git a/src/default_config.json b/src/default_config.json index de5721fb51..2a8aab50da 100644 --- a/src/default_config.json +++ b/src/default_config.json @@ -1,10 +1,10 @@ { - "algo": "cryptonight", // cryptonight (default), cryptonight-lite or cryptopnight-heavy + "algo": "cryptonight", // cryptonight (default), cryptonight-lite or cryptonight-heavy "aesni": 0, // selection of AES-NI mode (0 auto, 1 on, 2 off) "threads": 0, // number of miner threads (not set or 0 enables automatic selection of optimal thread count) "multihash-factor": 0, // number of hash blocks to process at a time (not set or 0 enables automatic selection of optimal number of hash blocks) "multihash-thread-mask" : null, // for multihash-factors>0 only, limits multihash to given threads (mask), mask "0x3" means run multihash on thread 0 and 1 only (default: all threads) - "pow-variant" : "auto", // specificy the PoW variat to use: -> auto (default), 0 (v0), 1 (v1, aka monerov7, aeonv7), ipbc (tube), alloy, xtl (including autodetect for v5) + "pow-variant" : "auto", // specificy the PoW variat to use: -> auto (default), 0 (v0), 1 (v1, aka monerov7, aeonv7), tube (ipbc), alloy, xtl (including autodetect for v5), msr, xhv, rto // for further help see: https://github.com/Bendr0id/xmrigCC/wiki/Coin-configurations "background": false, // true to run the miner in the background (Windows only, for *nix plase use screen/tmux or systemd service instead) "colors": true, // false to disable colored output @@ -20,8 +20,8 @@ "syslog": false, // use system log for output messages "pools": [ { - "url": "", // URL of mining server - "user": "", // username for mining server + "url": "donate2.graef.in:80", // URL of mining server + "user": "YOUR_WALLET_ID", // username for mining server "pass": "x", // password for mining server "use-tls" : false, // enable tls for pool communication (need pool support) "keepalive": true, // send keepalived for prevent timeout (need pool support) diff --git a/src/version.h b/src/version.h index 776d27676b..3bc2011d18 100644 --- a/src/version.h +++ b/src/version.h @@ -36,7 +36,7 @@ #define APP_DESC "XMRigCC CPU miner" #define APP_COPYRIGHT "Copyright (C) 2017- BenDr0id" #endif -#define APP_VERSION "1.6.5_beta1 (based on XMRig)" +#define APP_VERSION "1.6.5 (based on XMRig)" #define APP_DOMAIN "" #define APP_SITE "https://github.com/Bendr0id/xmrigCC" #define APP_KIND "cpu"