summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2022-11-06 22:36:34 +0100
committeraristocratos <gnmjpl@gmail.com>2022-11-06 22:36:34 +0100
commit0f8498fa4e68e3af36a50b1d9f97b931b41b0824 (patch)
treecb5ea7dcaae5f44288e101331c8bf30f323f4a04
parent9dc57534b1856df8fe88fd5e92596fb3c3c960ac (diff)
v1.2.13 Bug fixesv1.2.13
-rw-r--r--CHANGELOG.md26
-rw-r--r--src/btop.cpp2
2 files changed, 27 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3e94474..2a4eceb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,29 @@
+## v1.2.13
+
+* Makefile: VERBOSE=true flag for Makefile to display all compiler commands and fixed so already set CXXFLAGS and LDFLAGS are displayed.
+
+* Makefile: Added autodetection for gcc12 to make compiling on macos Ventura easier.
+
+* Changed: Reverted back to sysconf(_SC_NPROCESSORS_ONLN) for Cpu core count ant let the new dynamic update fix if cores are turned on later
+
+* Fixed: Ignore disks that fails in statvfs64() to avoid slowdowns and possible crashes.
+
+* Fixed: Moved up get_cpuHz() in the execution order to get better cpu clock reading.
+
+* Added: proc tree view: if there's more than 40 width left, try to print full cmd, by @Superty
+
+* Fixed: Show the first IP of the interface in NET box instead of the last, by @correabuscar
+
+* Changed: Replace getnameinfo with inet_ntop [on Linux], by @correabuscar
+
+* Fixed: Not picking up last username from /etc/passwd
+
+* Fixed: Process nice value underflowing, issue #461
+
+* Changed: Replace getnameinfo with inet_ntop [on FreeBSD], by @correabuscar
+
+* Changed: Replace getnameinfo with inet_ntop [on macos], by @correabuscar
+
## v1.2.12
* Added: Dynamic updating of max number of CPU cores.
diff --git a/src/btop.cpp b/src/btop.cpp
index 6a88511..225abd4 100644
--- a/src/btop.cpp
+++ b/src/btop.cpp
@@ -73,7 +73,7 @@ namespace Global {
{"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"},
{"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"},
};
- const string Version = "1.2.12";
+ const string Version = "1.2.13";
int coreCount;
string overlay;