From 997bfd2712c87200019e91204952beda2db0498e Mon Sep 17 00:00:00 2001 From: aristocratos Date: Mon, 18 Oct 2021 18:56:27 +0200 Subject: [PATCH] v1.0.17 New features and bug fixes --- CHANGELOG.md | 12 ++++++++++++ src/btop.cpp | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69f1507..7fdd495 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## v1.0.17 + +* Changed: Reverted mutexes back to custom atomic bool based locks + +* Added: Static binaries switched to building with musl + more platforms, by @jan-guenter + +* Fixed: Improved battery detection, by @jan-guenter + +* Added: Displayed battery selectable in options menu + +* Fixed: Battery error if non existent battery named is entered + ## v1.0.16 * Fixed: atomic_wait() and atomic_lock{} use cpu pause instructions instead of thread sleep diff --git a/src/btop.cpp b/src/btop.cpp index d58991d..872c9b1 100644 --- a/src/btop.cpp +++ b/src/btop.cpp @@ -53,7 +53,7 @@ namespace Global { {"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"}, {"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"}, }; - const string Version = "1.0.16"; + const string Version = "1.0.17"; int coreCount; string overlay;