Prepared v1.5.1
This commit is contained in:
parent
f2da61a9e2
commit
17f00585c9
3 changed files with 16 additions and 8 deletions
|
@ -1,3 +1,6 @@
|
|||
# 1.5.1
|
||||
- Applied changes for Monero v7 PoW starting 03/28/18 (No changes in config needed)
|
||||
- Applied new design / icons
|
||||
# 1.5.0
|
||||
- Full SSL/TLS support for the whole communication:
|
||||
- XMRigCCServer Dashboard <-> Browser
|
||||
|
|
|
@ -15,6 +15,7 @@ The modified version can also handle commands like "update config", "start/stop
|
|||
Full Windows/Linux compatible, and you can mix Linux and Windows miner on one XMRigCCServer.
|
||||
|
||||
## Additional features of XMRigCC (on top of XMRig)
|
||||
* **NEW: Ready for Monero v7 PoW changes on 03/28/18**
|
||||
* **NEW: Full SSL/TLS support for the whole communication: [Howto](https://github.com/Bendr0id/xmrigCC/wiki/tls)**
|
||||
- XMRigCCServer Dashboard <-> Browser
|
||||
- XMRigCCServer <-> XMRigMiner
|
||||
|
@ -80,6 +81,9 @@ xmrigCCServer --cc-port=3344 --cc-user=admin --cc-pass=pass --cc-access-token=SE
|
|||
--cc-pass=PASSWORD CC Server admin pass
|
||||
--cc-access-token=T CC Server access token for CC Client
|
||||
--cc-port=N CC Server
|
||||
--cc-use-tls enable tls encryption for CC communication
|
||||
--cc-cert-file=FILE when tls is turned on, use this to point to the right cert file (default: server.pem)
|
||||
--cc-key-file=FILE when tls is turned on, use this to point to the right key file (default: server.key)
|
||||
--cc-client-config-folder=FOLDER Folder contains the client config files
|
||||
--cc-custom-dashboard=FILE loads a custom dashboard and serve it to '/'
|
||||
--no-color disable colored output
|
||||
|
@ -89,7 +93,6 @@ xmrigCCServer --cc-port=3344 --cc-user=admin --cc-pass=pass --cc-access-token=SE
|
|||
-l, --log-file=FILE log all output to a file
|
||||
-h, --help display this help and exit
|
||||
-V, --version output version information and exit
|
||||
|
||||
```
|
||||
|
||||
Also you can use configuration via config file, default **[config_cc.json](https://github.com/Bendr0id/xmrigCC/wiki/Config-XMRigCCServer)**. You can load multiple config files and combine it with command line options.
|
||||
|
@ -122,11 +125,13 @@ xmrigDaemon -o pool.minemonero.pro:5555 -u YOUR_WALLET -p x -k --cc-url=IP_OF_CC
|
|||
--max-cpu-usage=N maximum CPU usage for automatic threads mode (default 75)
|
||||
--safe safe adjust threads and av settings for current CPU
|
||||
--nicehash enable nicehash/xmrig-proxy support
|
||||
--use-tls enable tls on pool communication
|
||||
--print-time=N print hashrate report every N seconds
|
||||
--api-port=N port for the miner API
|
||||
--api-access-token=T access token for API
|
||||
--api-worker-id=ID custom worker-id for API
|
||||
--cc-url=URL url of the CC Server
|
||||
--cc-use-tls enable tls encryption for CC communication
|
||||
--cc-access-token=T access token for CC Server
|
||||
--cc-worker-id=ID custom worker-id for CC Server
|
||||
--cc-update-interval-s=N status update interval in seconds (default: 10 min: 1)
|
||||
|
@ -244,7 +249,7 @@ Here are some result reported by users. Feel free to share your results, i'll ad
|
|||
|
||||
* 4x Intel XEON e7-4820
|
||||
|
||||
XMR: ~2500 h/s (XMRig Stock ~2200h/s)
|
||||
AEON: ~2500 h/s (XMRig Stock ~2200h/s)
|
||||
|
||||
* 2x Intel XEON 2x e5-2670
|
||||
|
||||
|
|
|
@ -36,14 +36,14 @@
|
|||
#define APP_DESC "XMRigCC CPU miner"
|
||||
#define APP_COPYRIGHT "Copyright (C) 2017- BenDr0id"
|
||||
#endif
|
||||
#define APP_VERSION "1.5.0 (based on XMRig 2.4.5)"
|
||||
#define APP_VERSION "1.5.1 (based on XMRig 2.4.5)"
|
||||
#define APP_DOMAIN ""
|
||||
#define APP_SITE "https://github.com/Bendr0id/xmrigCC"
|
||||
#define APP_KIND "cpu"
|
||||
|
||||
#define APP_VER_MAJOR 1
|
||||
#define APP_VER_MINOR 5
|
||||
#define APP_VER_BUILD 0
|
||||
#define APP_VER_BUILD 1
|
||||
#define APP_VER_REV 0
|
||||
|
||||
#ifndef NDEBUG
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue