File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
27
## v1.2.12
2
28
3
29
* Added: Dynamic updating of max number of CPU cores.
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ namespace Global {
73
73
{" #801414" , " ██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝" },
74
74
{" #000000" , " ╚═════╝ ╚═╝ ╚═════╝ ╚═╝" },
75
75
};
76
- const string Version = " 1.2.12 " ;
76
+ const string Version = " 1.2.13 " ;
77
77
78
78
int coreCount;
79
79
string overlay;
You can’t perform that action at this time.
0 commit comments