summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2022-02-15 18:39:36 +0100
committeraristocratos <gnmjpl@gmail.com>2022-02-15 18:39:36 +0100
commit17979139c3c4f3dc197cb7c23370c7f807f25387 (patch)
tree14350027aa0a83502a662cd38c921720340f3f9c
parent2aeae24b880651291a684f14bc7b9a356e8f3980 (diff)
v1.2.3 Bug fixesv1.2.3
-rw-r--r--CHANGELOG.md8
-rw-r--r--src/btop.cpp2
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fcdc3d0..2588935 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+## v1.2.3
+
+* Changed: floating_humanizer() now show fractions when shortened and value is < 10
+
+* Fixed: Process tree not redrawing properly
+
+* Fixed: string to wstring conversion crash when string is too big
+
## v1.2.2
* Changed: Reverted uncolor() back to using regex to fix delay in opening menu when compiled with musl
diff --git a/src/btop.cpp b/src/btop.cpp
index 1504ecf..6a4942b 100644
--- a/src/btop.cpp
+++ b/src/btop.cpp
@@ -60,7 +60,7 @@ namespace Global {
{"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"},
{"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"},
};
- const string Version = "1.2.2";
+ const string Version = "1.2.3";
int coreCount;
string overlay;