summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2021-10-16 11:14:11 +0200
committeraristocratos <gnmjpl@gmail.com>2021-10-16 11:14:11 +0200
commit3e936bfa8ef1d70a9b7582ad452f5d7be3916934 (patch)
treefe1cd2e36f90ffadc68e604267a05670dfbbdafc
parent070691d5d050c97e54703d099ae85880ea2fbd18 (diff)
v1.0.16 Bug fixesv1.0.16
-rw-r--r--CHANGELOG.md16
-rw-r--r--src/btop.cpp2
2 files changed, 17 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ac7a881..69f1507 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,19 @@
+## v1.0.16
+
+* Fixed: atomic_wait() and atomic_lock{} use cpu pause instructions instead of thread sleep
+
+* Fixed: Swapped from atomic bool spinlocks to mutexes to fix rare deadlock
+
+* Added: Continuous Build workflow for OSX branch, by @ShrirajHegde
+
+* Changed: Reverted thread mutex lock to atomic bool with wait and timeout
+
+* Changed: Removed unnecessary async threads in Runner thread
+
+* Added: Try to restart secondary thread in case of stall and additional error checks for ifstream in Proc::collect()
+
+* Fixed: change [k]ill to [K]ill when enabling vim keys, by @jlopezcur
+
## v1.0.15
* Fixed: Extra "root" partition when running in snap
diff --git a/src/btop.cpp b/src/btop.cpp
index 86bba5f..ff35ec0 100644
--- a/src/btop.cpp
+++ b/src/btop.cpp
@@ -54,7 +54,7 @@ namespace Global {
{"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"},
{"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"},
};
- const string Version = "1.0.15";
+ const string Version = "1.0.16";
int coreCount;
string overlay;