Skip to content

Commit c145ce4

Browse files
authored
Merge pull request #1446 from fastfetch-cli/dev
Release: v2.32.1
2 parents 5b001d6 + 8c4fb5d commit c145ce4

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 2.32.1
2+
3+
A hotfix for OpenBSD. No changes to other platforms.
4+
5+
Bugfixes:
6+
* Fix package count detection on OpenBSD (Packages, OpenBSD)
7+
18
# 2.32.0
29

310
Bugfixes:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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.32.0
4+
VERSION 2.32.1
55
LANGUAGES C
66
DESCRIPTION "Fast neofetch-like system information tool"
77
HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
fastfetch (2.32.0) jammy; urgency=medium
2+
3+
* Update to 2.32.0
4+
5+
-- Carter Li <[email protected]> Wed, 18 Dec 2024 10:39:06 +0800
6+
17
fastfetch (2.31.0) jammy; urgency=medium
28

39
* Update to 2.31.0

debian/files

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
fastfetch_2.31.0_source.buildinfo universe/utils optional
1+
fastfetch_2.32.0_source.buildinfo universe/utils optional

src/detection/packages/packages_obsd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void ffDetectPackagesImpl(FFPackagesResult* result, FFPackagesOptions* options)
2727
if (!(options->disabled & FF_PACKAGES_FLAG_PKG_BIT))
2828
{
2929
result->pkg = getNumElementsImpl(FASTFETCH_TARGET_DIR_ROOT
30-
#if __OpenBSD
30+
#if __OpenBSD__
3131
"/var/db/pkg"
3232
#else
3333
"/usr/pkg/pkgdb"

0 commit comments

Comments
 (0)