Preparation for #1.3.1

This commit is contained in:
BenDroid 2018-01-04 21:19:13 +01:00
parent 0a0f18322e
commit 0d652508b1
2 changed files with 14 additions and 2 deletions

View file

@ -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 # v1.3.0
- Fixed Soft-aes modes (av=3, av=4) Bug: #11 - Fixed Soft-aes modes (av=3, av=4) Bug: #11
- Added static build for linux with old libc (CentOs 5/6, debian, ...) - Added static build for linux with old libc (CentOs 5/6, debian, ...)

View file

@ -35,6 +35,10 @@ void App::background()
Cpu::setAffinity(-1, m_options->affinity()); 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" if (m_options->background()) {
: "\nBackground mode is not supported by %s on *nix Systems. Please use screen/tmux or systemd service instead.\n", APP_NAME); 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);
}
} }