mirror of
https://github.com/xmrig/xmrig.git
synced 2025-12-11 09:22:48 -05:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bea3bc74b2 | ||
|
|
7e4d0d83ff | ||
|
|
4138d4a178 | ||
|
|
f9202c6951 |
@@ -1,3 +1,6 @@
|
|||||||
|
# v2.4.1
|
||||||
|
- [#147](https://github.com/xmrig/xmrig/issues/147) Fixed comparability with monero-stratum.
|
||||||
|
|
||||||
# v2.4.0
|
# v2.4.0
|
||||||
- Added [HTTP API](https://github.com/xmrig/xmrig/wiki/API).
|
- Added [HTTP API](https://github.com/xmrig/xmrig/wiki/API).
|
||||||
- Added comments support in config file.
|
- Added comments support in config file.
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ XMRig is high performance Monero (XMR) CPU miner, with the official full Windows
|
|||||||
Originally based on cpuminer-multi with heavy optimizations/rewrites and removing a lot of legacy code, since version 1.0.0 complete rewritten from scratch on C++.
|
Originally based on cpuminer-multi with heavy optimizations/rewrites and removing a lot of legacy code, since version 1.0.0 complete rewritten from scratch on C++.
|
||||||
|
|
||||||
* This is the CPU-mining version, there is also a [NVIDIA GPU version](https://github.com/xmrig/xmrig-nvidia).
|
* This is the CPU-mining version, there is also a [NVIDIA GPU version](https://github.com/xmrig/xmrig-nvidia).
|
||||||
|
* [Roadmap](https://github.com/xmrig/xmrig/issues/106) for next releases.
|
||||||
|
|
||||||
<img src="http://i.imgur.com/OKZRVDh.png" width="619" >
|
<img src="http://i.imgur.com/OKZRVDh.png" width="619" >
|
||||||
|
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
const size_t size = strlen(id);
|
const size_t size = strlen(id);
|
||||||
if (size < 4 || size >= sizeof(m_data)) {
|
if (size >= sizeof(m_data)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
#define APP_ID "xmrig"
|
#define APP_ID "xmrig"
|
||||||
#define APP_NAME "XMRig"
|
#define APP_NAME "XMRig"
|
||||||
#define APP_DESC "XMRig CPU miner"
|
#define APP_DESC "XMRig CPU miner"
|
||||||
#define APP_VERSION "2.4.0"
|
#define APP_VERSION "2.4.1"
|
||||||
#define APP_DOMAIN "xmrig.com"
|
#define APP_DOMAIN "xmrig.com"
|
||||||
#define APP_SITE "www.xmrig.com"
|
#define APP_SITE "www.xmrig.com"
|
||||||
#define APP_COPYRIGHT "Copyright (C) 2016-2017 xmrig.com"
|
#define APP_COPYRIGHT "Copyright (C) 2016-2017 xmrig.com"
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
#define APP_VER_MAJOR 2
|
#define APP_VER_MAJOR 2
|
||||||
#define APP_VER_MINOR 4
|
#define APP_VER_MINOR 4
|
||||||
#define APP_VER_BUILD 0
|
#define APP_VER_BUILD 1
|
||||||
#define APP_VER_REV 0
|
#define APP_VER_REV 0
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
|
|||||||
Reference in New Issue
Block a user