Preparation for #1.3.2

This commit is contained in:
BenDroid 2018-01-14 19:15:08 +01:00
parent e4b1c8844d
commit 2a0b575420
3 changed files with 10 additions and 5 deletions

View file

@ -1,3 +1,7 @@
# v1.3.2
- Added start xmrigDaemonr without config file and only CCServer/auth token as params needed #14
- Dashboard now uses servertime for calculation to avoid clock drifts and false offline detection
- Finally fixed freebsd build
# v1.3.1 # v1.3.1
- Removed not working background mode for xmrigMiner/xmrigDaemon on *nix systems -> use screen/tmux or systemd service instead - Removed not working background mode for xmrigMiner/xmrigDaemon on *nix systems -> use screen/tmux or systemd service instead
- Added cpu socket to client Id tooltip on dashboard - Added cpu socket to client Id tooltip on dashboard

View file

@ -31,7 +31,10 @@
#include <signal.h> #include <signal.h>
#include <chrono> #include <chrono>
#include <thread> #include <thread>
#else
#include <sys/wait.h>
#endif #endif
int main(int argc, char **argv) { int main(int argc, char **argv) {
std::string ownPath(argv[0]); std::string ownPath(argv[0]);

View file

@ -36,14 +36,14 @@
#define APP_DESC "XMRigCC CPU miner" #define APP_DESC "XMRigCC CPU miner"
#define APP_COPYRIGHT "Copyright (C) 2017- BenDr0id" #define APP_COPYRIGHT "Copyright (C) 2017- BenDr0id"
#endif #endif
#define APP_VERSION "1.3.1 (based on XMRig 2.4.3)" #define APP_VERSION "1.3.2 (based on XMRig 2.4.3)"
#define APP_DOMAIN "" #define APP_DOMAIN ""
#define APP_SITE "https://github.com/Bendr0id/xmrigCC" #define APP_SITE "https://github.com/Bendr0id/xmrigCC"
#define APP_KIND "cpu" #define APP_KIND "cpu"
#define APP_VER_MAJOR 1 #define APP_VER_MAJOR 1
#define APP_VER_MINOR 3 #define APP_VER_MINOR 3
#define APP_VER_BUILD 1 #define APP_VER_BUILD 2
#define APP_VER_REV 0 #define APP_VER_REV 0
#ifndef NDEBUG #ifndef NDEBUG
@ -66,11 +66,9 @@
# else # else
# define MSVC_VERSION 0 # define MSVC_VERSION 0
# endif # endif
#include <string>
#else
#include <string.h>
#endif #endif
#include <string>
class Version class Version
{ {