summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2022-10-06 22:16:34 +0200
committeraristocratos <gnmjpl@gmail.com>2022-10-06 22:16:34 +0200
commit7a2556eae51286f8c170b4f73c03ba8ff7f97731 (patch)
tree2e2b45b74fcc1ffc09c195b812c8d564144f3e7a
parentd58a17afb16ed7244567cb04c3a587e4bcb68f7e (diff)
v1.2.10 Bug fixes, cleanup + a new themev1.2.10
-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 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;