Skip to content

Commit 666d31b

Browse files
committed
v1.4.1
1 parent ffb7647 commit 666d31b

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
## v1.4.1
2+
3+
References | Description | Author(s)
4+
--- | --- | ---
5+
#1111 #1112 | Various code fixes | @imwints
6+
#930 #931 | Various code fixes | @bad-co-de
7+
#1061 | Fixed typo | @polluks
8+
#1110 | Move the config parser in it's own module | @imwints
9+
#1101 | Adding a menu option to show bitrates in base 10 separate from the setting to show bytes/bits in base 10 | @georgev93
10+
#1079 | Allow MidnightBSD to build btop using the existing freebsd support. | @laffer1
11+
#1098 | Use XDG_STATE_HOME to save logs | @imwints
12+
#1092 | Bump CMake version to 3.25 required for LINUX variable | @imwints
13+
#1058 | Replace brackets with arrows in net and proc box | @taha-yassine
14+
#1091 | Bump bundled fmt to 11.1.4 | @imwints
15+
#725 | cmake: link to CMAKE_DL_LIBS | @alalazo
16+
#990 | Fix phoenix-night.theme marked as executable | @sertonix
17+
#1034 | Add Kanagawa-lotus and Kanagawa-wave themes | @philikarus
18+
#973 | Bump NetBSD version to 10.1 and FreeBSD version to 14.2. | @fraggerfox
19+
#1072 | Add dark version of adwaita theme: adwaita-dark | @k0tran
20+
#1036 | Resetting last selection on page navigation in optionsMenu to avoid unordered_map error | @seth-wood
21+
#1029 | Share the CPU name trimming code between platforms | @yarrick
22+
#1033 | Update Ryzen name trimming | @yarrick
23+
#1030 | Drop macos 12 build, add v14 and v15 | @yarrick
24+
#1028 | Fix cmake-macos workflow | @yarrick
25+
#1027 | Bump version of deprecated upload-artifact step | @yarrick
26+
#1025 | Update obsolete egrep call | @tywkeene
27+
b52069c | Fix menu crash when GPU_SUPPORT=false, issue #989 | @aristocratos
28+
#961 | Add 'Everforest Ligth Medium' theme | @mstuttgart
29+
#960 | Support intel GPUs before Gen-6 (patch from upstream) | @w8jcik
30+
#958 | intel_name_lookup_shim.c (get_intel_device_name): Fix SEGFAULT | @artyom-poptsov
31+
2e7208d | Fix rsmi_measure_pcie_speeds not saving, issue #934 | @aristocratos
32+
f3446ed | Show GPU Watt fractions when below 100W | @aristocratos
33+
34+
| + more from @imwints @aristocratos
35+
36+
Big thanks to @imwints for helping out with project maintenance, PR reviews and merging!
37+
138
## v1.4.0
239

340
References | Description | Author(s)

src/btop.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ namespace Global {
8181
{"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"},
8282
{"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"},
8383
};
84-
const string Version = "1.4.0";
84+
const string Version = "1.4.1";
8585

8686
int coreCount;
8787
string overlay;
@@ -823,7 +823,7 @@ int main(const int argc, const char** argv) {
823823
return ret;
824824
}
825825
}
826-
826+
827827
{
828828
const auto config_dir = Config::get_config_dir();
829829
if (config_dir.has_value()) {

0 commit comments

Comments
 (0)