summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2021-09-28 16:37:02 +0200
committeraristocratos <gnmjpl@gmail.com>2021-09-28 16:37:02 +0200
commit5fba94c96ced784cc210821e68d8a30d23ef1c53 (patch)
tree3eda012dd1591076ead32f5674c43bd0c342e6a3
parent8296c1a8d560081e78b03843d3053a8510534d20 (diff)
v1.0.10 Bug fixesv1.0.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 7354364..10532f5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,19 @@
+## v1.0.10
+
+* Added: Wait for terminal size properties to be available at start
+
+* Changed: Stop second thread before updating terminal size variables
+
+* Changed: Moved check for valid terminal dimensions to before platform init
+
+* Added: Check for empty percentage deques
+
+* Changed: Cpu temp values check for existing values
+
+* Fixed: Cpu percent cutting off above 1000 percent and added scaling with "k" prefix above 10'000
+
+* Fixed: Crash when rapidly resizing terminal at start
+
## v1.0.9
* Added: ifstream check and try-catch for stod() in Tools::system_uptime()
diff --git a/src/btop.cpp b/src/btop.cpp
index 4f69977..0bd5ab8 100644
--- a/src/btop.cpp
+++ b/src/btop.cpp
@@ -55,7 +55,7 @@ namespace Global {
{"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"},
{"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"},
};
- const string Version = "1.0.9";
+ const string Version = "1.0.10";
int coreCount;
string overlay;