From 0d652508b1f41efd62a198f089115222cd51a80e Mon Sep 17 00:00:00 2001 From: BenDroid Date: Thu, 4 Jan 2018 21:19:13 +0100 Subject: [PATCH] Preparation for #1.3.1 --- CHANGELOG.md | 8 ++++++++ src/App_unix.cpp | 8 ++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d53f04b0..cfe22b9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# v1.3.1 +- 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 +- Fixed notification when sending command is successful or error +- Fixed #16 FreeBSD build +- Fixed miner to keep sending status to server when its not temp unavailable +- Fixed #10 CCServer spontaneously freezes and holds CPU 100% +- Merged latest xmrig master # v1.3.0 - Fixed Soft-aes modes (av=3, av=4) Bug: #11 - Added static build for linux with old libc (CentOs 5/6, debian, ...) diff --git a/src/App_unix.cpp b/src/App_unix.cpp index 84cfc337..73dd3f8f 100644 --- a/src/App_unix.cpp +++ b/src/App_unix.cpp @@ -35,6 +35,10 @@ void App::background() Cpu::setAffinity(-1, m_options->affinity()); } - Log::i()->text(Options::i()->colors() ? "\x1B[01;31m\nBackground mode is not supported by %s on *nix Systems. Please use screen/tmux or systemd service instead.\n" - : "\nBackground mode is not supported by %s on *nix Systems. Please use screen/tmux or systemd service instead.\n", APP_NAME); + if (m_options->background()) { + Log::i()->text(Options::i()->colors() + ? "\x1B[01;31m\nBackground mode is not supported by %s on *nix Systems. Please use screen/tmux or systemd service instead.\n" + : "\nBackground mode is not supported by %s on *nix Systems. Please use screen/tmux or systemd service instead.\n", + APP_NAME); + } }