Skip to content

Commit 1d57e61

Browse files
authored
Merge branch 'fastfetch-cli:dev' into dev
2 parents 07ec519 + 8681d2f commit 1d57e61

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+8593
-1091
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -659,9 +659,6 @@ jobs:
659659
- name: copy necessary dlls
660660
run: cp /clang64/bin/{OpenCL,vulkan-1}.dll .
661661

662-
- name: download amd_ags
663-
run: curl -LO https://github.com/GPUOpen-LibrariesAndSDKs/AGS_SDK/raw/master/ags_lib/lib/amd_ags_x64.dll
664-
665662
- name: list features
666663
run: ./fastfetch --list-features
667664

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 2.39.1
2+
3+
Bugfixes:
4+
* Fix a regression that PublicIP detection fails randomly (PublicIP, #1629)
5+
16
# 2.39.0
27

38
Changes:
@@ -9,11 +14,15 @@ Features:
914
* Improve performance of SSID detection on macOS Sequoia (Wifi, macOS, #1597)
1015
* Support warp terminal version detection on Windows (Terminal, Windows)
1116
* Support default route detection on OpenBSD & DragonFly BSD (LocalIP, OpenBSD / DragonFly)
17+
* Improve bash completion script
18+
* Improve performance of networking (PublicIP / Weather)
19+
* Support pkgsrc package manager detection on Linux (Packages, Linux)
1220

1321
Logo:
1422
* Add Common Torizon OS
1523
* Change FoxOS to WolfOS
1624
* Add Bredos
25+
* Add NetBSD2
1726

1827
# 2.38.0
1928

CMakeLists.txt

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.12.0) # target_link_libraries with OBJECT libs & project homepage url
22

33
project(fastfetch
4-
VERSION 2.38.0
4+
VERSION 2.39.1
55
LANGUAGES C
66
DESCRIPTION "Fast neofetch-like system information tool"
77
HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"
@@ -708,7 +708,6 @@ elseif(FreeBSD)
708708
src/detection/uptime/uptime_bsd.c
709709
src/detection/users/users_linux.c
710710
src/detection/wallpaper/wallpaper_linux.c
711-
src/detection/wifi/wifi_bsd.c
712711
src/detection/wm/wm_nosupport.c
713712
src/detection/de/de_linux.c
714713
src/detection/wmtheme/wmtheme_linux.c
@@ -720,10 +719,12 @@ elseif(FreeBSD)
720719
if(DragonFly)
721720
list(APPEND LIBFASTFETCH_SRC
722721
src/detection/bluetooth/bluetooth_nosupport.c
722+
src/detection/wifi/wifi_nosupport.c
723723
)
724724
else()
725725
list(APPEND LIBFASTFETCH_SRC
726726
src/detection/bluetooth/bluetooth_bsd.c
727+
src/detection/wifi/wifi_bsd.c
727728
)
728729
endif()
729730
elseif(NetBSD)
@@ -739,7 +740,7 @@ elseif(NetBSD)
739740
src/detection/bluetooth/bluetooth_nosupport.c
740741
src/detection/bluetoothradio/bluetoothradio_nosupport.c
741742
src/detection/board/board_nbsd.c
742-
src/detection/bootmgr/bootmgr_nosupport.c
743+
src/detection/bootmgr/bootmgr_bsd.c
743744
src/detection/brightness/brightness_nbsd.c
744745
src/detection/btrfs/btrfs_nosupport.c
745746
src/detection/chassis/chassis_nbsd.c
@@ -817,22 +818,22 @@ elseif(OpenBSD)
817818
src/common/processing_linux.c
818819
src/common/sysctl.c
819820
src/detection/battery/battery_obsd.c
820-
src/detection/bios/bios_nosupport.c
821+
src/detection/bios/bios_windows.c
821822
src/detection/bluetooth/bluetooth_nosupport.c
822823
src/detection/bluetoothradio/bluetoothradio_nosupport.c
823-
src/detection/board/board_nosupport.c
824-
src/detection/bootmgr/bootmgr_nosupport.c
824+
src/detection/board/board_windows.c
825+
src/detection/bootmgr/bootmgr_bsd.c
825826
src/detection/brightness/brightness_obsd.c
826827
src/detection/btrfs/btrfs_nosupport.c
827-
src/detection/chassis/chassis_nosupport.c
828+
src/detection/chassis/chassis_windows.c
828829
src/detection/cpu/cpu_obsd.c
829-
src/detection/cpucache/cpucache_nosupport.c
830+
src/detection/cpucache/cpucache_shared.c
830831
src/detection/cpuusage/cpuusage_bsd.c
831832
src/detection/cursor/cursor_linux.c
832833
src/detection/disk/disk_bsd.c
833834
src/detection/dns/dns_linux.c
834835
src/detection/physicaldisk/physicaldisk_nosupport.c
835-
src/detection/physicalmemory/physicalmemory_nosupport.c
836+
src/detection/physicalmemory/physicalmemory_linux.c
836837
src/detection/diskio/diskio_obsd.c
837838
src/detection/displayserver/linux/displayserver_linux.c
838839
src/detection/displayserver/linux/drm.c
@@ -889,6 +890,7 @@ elseif(OpenBSD)
889890
src/detection/zpool/zpool_nosupport.c
890891
src/util/platform/FFPlatform_unix.c
891892
src/util/binary_linux.c
893+
src/util/smbiosHelper.c
892894
)
893895
elseif(APPLE)
894896
list(APPEND LIBFASTFETCH_SRC
@@ -1034,6 +1036,7 @@ elseif(WIN32)
10341036
src/util/windows/version.c
10351037
src/util/platform/FFPlatform_windows.c
10361038
src/util/binary_windows.c
1039+
src/util/debug_windows.c
10371040
)
10381041
elseif(SunOS)
10391042
list(APPEND LIBFASTFETCH_SRC

0 commit comments

Comments
 (0)