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;