From 7a2556eae51286f8c170b4f73c03ba8ff7f97731 Mon Sep 17 00:00:00 2001 From: aristocratos Date: Thu, 6 Oct 2022 22:16:34 +0200 Subject: [PATCH] v1.2.10 Bug fixes, cleanup + a new theme --- CHANGELOG.md | 16 ++++++++++++++++ src/btop.cpp | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0e8760..fc8e9e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## v1.2.10 + +* Fixed: Process tree filtering not case insensitive + +* Added: Paper theme, by @s6muel + +* Fixed: Extra checks to avoid crash on trying to replace empty strings in tree mode + +* Fixed: Crashing when cores are offline + +* Fixed: Cpu::collect() core count counter... + +* Changed: Using sysconf(_SC_NPROCESSORS_CONF) for number of cores instead of sysconf(_SC_NPROCESSORS_ONLN) + +* Maintenance: Code cleanup, by @stefanos82 + ## v1.2.9 * Fixed: Memory values not clearing properly when not in graph mode in mem box diff --git a/src/btop.cpp b/src/btop.cpp index d75ef22..6df4fc7 100644 --- a/src/btop.cpp +++ b/src/btop.cpp @@ -73,7 +73,7 @@ namespace Global { {"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"}, {"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"}, }; - const string Version = "1.2.9"; + const string Version = "1.2.10"; int coreCount; string overlay;