summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2021-10-18 18:56:27 +0200
committeraristocratos <gnmjpl@gmail.com>2021-10-18 18:56:27 +0200
commit997bfd2712c87200019e91204952beda2db0498e (patch)
tree9c70eee1dc430764dca9eae2826982820e57887e
parent7d89c75abb3771005ed6fbbb56aa75859cf4f00b (diff)
v1.0.17 New features and bug fixesv1.0.17
-rw-r--r--CHANGELOG.md12
-rw-r--r--src/btop.cpp2
2 files changed, 13 insertions, 1 deletions
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;