Skip to content

Commit 0f8498f

Browse files
committed
v1.2.13 Bug fixes
1 parent 9dc5753 commit 0f8498f

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## v1.2.13
2+
3+
* Makefile: VERBOSE=true flag for Makefile to display all compiler commands and fixed so already set CXXFLAGS and LDFLAGS are displayed.
4+
5+
* Makefile: Added autodetection for gcc12 to make compiling on macos Ventura easier.
6+
7+
* 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
8+
9+
* Fixed: Ignore disks that fails in statvfs64() to avoid slowdowns and possible crashes.
10+
11+
* Fixed: Moved up get_cpuHz() in the execution order to get better cpu clock reading.
12+
13+
* Added: proc tree view: if there's more than 40 width left, try to print full cmd, by @Superty
14+
15+
* Fixed: Show the first IP of the interface in NET box instead of the last, by @correabuscar
16+
17+
* Changed: Replace getnameinfo with inet_ntop [on Linux], by @correabuscar
18+
19+
* Fixed: Not picking up last username from /etc/passwd
20+
21+
* Fixed: Process nice value underflowing, issue #461
22+
23+
* Changed: Replace getnameinfo with inet_ntop [on FreeBSD], by @correabuscar
24+
25+
* Changed: Replace getnameinfo with inet_ntop [on macos], by @correabuscar
26+
127
## v1.2.12
228

329
* Added: Dynamic updating of max number of CPU cores.

src/btop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ namespace Global {
7373
{"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"},
7474
{"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"},
7575
};
76-
const string Version = "1.2.12";
76+
const string Version = "1.2.13";
7777

7878
int coreCount;
7979
string overlay;

0 commit comments

Comments
 (0)