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;