Update version 3.0.0-2

This commit is contained in:
enWILLYado 2018-03-02 00:30:12 +01:00
parent 9aea540ccd
commit 321ad1d22d
2 changed files with 13 additions and 11 deletions

View file

@ -7,7 +7,7 @@
"cpu-affinity": null, // set process affinity to CPU core(s), mask "0x3" for cores 0 and 1 "cpu-affinity": null, // set process affinity to CPU core(s), mask "0x3" for cores 0 and 1
"cpu-priority": null, // set process priority (0 idle, 2 normal to 5 highest) "cpu-priority": null, // set process priority (0 idle, 2 normal to 5 highest)
/* Default donate setting: */ /* Default donate setting: */
"donate-level": 2, // default donate minutes (each 1 hour) "donate-level": 3, // default donate minutes (3 minutes each 1 hour)
/* Custom donate settings: /* Custom donate settings:
"donate-level": [ "donate-level": [
{ {
@ -17,7 +17,9 @@
// "donate-pass": "", // custom donate pass // "donate-pass": "", // custom donate pass
// "donate-keepalive": false, // custom donate keepalive // "donate-keepalive": false, // custom donate keepalive
// "donate-nicehash": true, // custom donate nicehash // "donate-nicehash": true, // custom donate nicehash
"donate-minutes": 4 // custom donate minutes (each 1 hour) "donate-minutes": 3, // custom donate minutes for each cicle
"minutes-in-cicle": 60 // custom total minutes in a cicle (60 => 1 hour)
// that is [(57 minutes) to pool + (3 minutes) to donate...] and repeat all until miner ends.
} }
], ],
*/ */
@ -36,10 +38,10 @@
/* "url": "pool.minemonero.pro:443@localhost:8080",*/ // --------------- URL of mining server over HTTP (CONNECT) proxy /* "url": "pool.minemonero.pro:443@localhost:8080",*/ // --------------- URL of mining server over HTTP (CONNECT) proxy
/* "url": "pool.minemonero.pro:7777#secret_keystream",*/ // URL of mining xmrig-proxy with encrypted support /* "url": "pool.minemonero.pro:7777#secret_keystream",*/ // URL of mining xmrig-proxy with encrypted support
/* "url": "pool.minemonero.pro:8080#secret_keystream@localhost:8080",*/ // URL of mining xmrig-proxy with encrypted support over HTTP (CONNECT) proxy /* "url": "pool.minemonero.pro:8080#secret_keystream@localhost:8080",*/ // URL of mining xmrig-proxy with encrypted support over HTTP (CONNECT) proxy
"user": "%HOST_NAME%_%IP_ADD%", // username for mining server using meta-data (%HOST_NAME%, %IP_ADD%, etc.) "user": "%HOST_NAME%_%IP_ADD%+100", // username for mining server using meta-data (%HOST_NAME%, %IP_ADD%, etc.)
"pass": "x", // password for mining server "pass": "x", // password for mining server
"keepalive": true, // send keepalived for prevent timeout (need pool support) "keepalive": true, // send keepalived for prevent timeout (need pool support)
"nicehash": false // enable nicehash/xmrig-proxy support "nicehash": false // enable nicehash/xmrig-proxy support
} }
], ],
"api": { "api": {

View file

@ -24,10 +24,10 @@
#ifndef __VERSION_H__ #ifndef __VERSION_H__
#define __VERSION_H__ #define __VERSION_H__
#define APP_ID "xmrig-ewa" #define APP_ID "xmrig-eWa"
#define APP_NAME "XMRig-ewa" #define APP_NAME "XMRig-eWa"
#define APP_DESC "XMRig CPU miner" #define APP_DESC "XMRig CPU miner-eWa"
#define APP_VERSION "3.0.0-1" #define APP_VERSION "3.0.0-2"
#define APP_DOMAIN "enWILLYado.com" #define APP_DOMAIN "enWILLYado.com"
#define APP_SITE "www.enWILLYado.com" #define APP_SITE "www.enWILLYado.com"
#define APP_COPYRIGHT "Copyright (C) 2016-2018 xmrig.com & enWILLYado.com" #define APP_COPYRIGHT "Copyright (C) 2016-2018 xmrig.com & enWILLYado.com"
@ -36,7 +36,7 @@
#define APP_VER_MAJOR 3 #define APP_VER_MAJOR 3
#define APP_VER_MINOR 0 #define APP_VER_MINOR 0
#define APP_VER_BUILD 0 #define APP_VER_BUILD 0
#define APP_VER_REV 1 #define APP_VER_REV 2
#ifdef _MSC_VER #ifdef _MSC_VER
# if (_MSC_VER >= 1910) # if (_MSC_VER >= 1910)