From 01c11f6a23c621d9401f8103321bdf3c0b95f9db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ben=20Gr=C3=A4f?= Date: Thu, 4 Jan 2018 17:32:56 +0100 Subject: [PATCH] Added cpu sockets to dashboard client info popup * Removed not working background mode for *nix --- config_cc.json | 12 ++++++++++++ index.html | 4 ++-- src/App.cpp | 4 ++++ src/App_unix.cpp | 34 ++++------------------------------ src/Summary.cpp | 2 +- src/cc/CCClient.cpp | 2 +- src/cc/ClientStatus.cpp | 16 ++++++++++++++++ src/cc/ClientStatus.h | 4 ++++ src/cc/XMRigd.cpp | 12 +++++++++--- src/config.json | 2 +- src/default_config.json | 2 +- src/version.h | 4 ++-- 12 files changed, 57 insertions(+), 41 deletions(-) create mode 100644 config_cc.json diff --git a/config_cc.json b/config_cc.json new file mode 100644 index 00000000..734b8633 --- /dev/null +++ b/config_cc.json @@ -0,0 +1,12 @@ +{ + "background": false, + "colors": true, + "log-file": null, + "syslog": false, + "cc-server": { + "port": 3344, // port the CC Server will listens on + "access-token": "mySecret", // access token for CC Clients + "user": "admin", // admin user for access CC Dashboard + "pass": "pass" // admin pass for access CC Dashboard + } +} diff --git a/index.html b/index.html index 6cf1f5d3..27b1e0e4 100644 --- a/index.html +++ b/index.html @@ -49,7 +49,7 @@