Swapped pull and push buttons on dashboard
reverted auto detect for max intensity and limited to conceal
This commit is contained in:
parent
d1cc0aa3df
commit
e88ba694e6
3 changed files with 16 additions and 16 deletions
26
index.html
26
index.html
|
@ -223,19 +223,6 @@
|
|||
},
|
||||
buttons: [
|
||||
'colvis',
|
||||
{
|
||||
text: '<i class="fa fa-download"> Pull miner config</i>',
|
||||
className: 'btn-info',
|
||||
enabled: false,
|
||||
action: function () {
|
||||
table.rows({selected: true}).eq(0).each(function (index) {
|
||||
var row = table.row(index);
|
||||
var data = row.data();
|
||||
|
||||
sendAction("PUBLISH_CONFIG", data.client_status.client_id);
|
||||
});
|
||||
}
|
||||
},
|
||||
{
|
||||
text: '<i class="fa fa-upload"> Push miner config</i>',
|
||||
className: 'btn-primary',
|
||||
|
@ -249,6 +236,19 @@
|
|||
});
|
||||
}
|
||||
},
|
||||
{
|
||||
text: '<i class="fa fa-download"> Pull miner config</i>',
|
||||
className: 'btn-info',
|
||||
enabled: false,
|
||||
action: function () {
|
||||
table.rows({selected: true}).eq(0).each(function (index) {
|
||||
var row = table.row(index);
|
||||
var data = row.data();
|
||||
|
||||
sendAction("PUBLISH_CONFIG", data.client_status.client_id);
|
||||
});
|
||||
}
|
||||
},
|
||||
{
|
||||
text: '<i class="fa fa-play"> Start miner</i>',
|
||||
className: 'btn-success',
|
||||
|
|
|
@ -290,7 +290,7 @@ void xmrig::HwlocCpuInfo::processTopLevelCache(hwloc_obj_t cache, const Algorith
|
|||
}
|
||||
# endif
|
||||
|
||||
if (CnAlgo<>::base(algorithm) == Algorithm::CN_0 || CnAlgo<>::base(algorithm) == Algorithm::CN_1) {
|
||||
if (algorithm == Algorithm::CN_CONCEAL)
|
||||
intensity = std::min<uint32_t >(static_cast<const uint32_t &>(cacheHashes / PUs), algorithm.maxIntensity());
|
||||
}
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#define APP_ID "XMRigCC"
|
||||
#define APP_NAME "XMRigCC"
|
||||
#define APP_DESC "XMRigCC CPU miner"
|
||||
#define APP_VERSION "2.1.0"
|
||||
#define APP_VERSION "2.1.1"
|
||||
#define APP_DOMAIN ""
|
||||
#define APP_SITE "https://github.com/BenDr0id/xmrigCC/"
|
||||
#define APP_COPYRIGHT "Copyright (C) 2017- XMRigCC"
|
||||
|
@ -36,7 +36,7 @@
|
|||
|
||||
#define APP_VER_MAJOR 2
|
||||
#define APP_VER_MINOR 1
|
||||
#define APP_VER_PATCH 0
|
||||
#define APP_VER_PATCH 1
|
||||
|
||||
#ifndef NDEBUG
|
||||
#define BUILD_TYPE "DEBUG"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue