Skip to content

Commit

Permalink
Merge pull request #1446 from fastfetch-cli/dev
Browse files Browse the repository at this point in the history
Release: v2.32.1
  • Loading branch information
CarterLi authored Dec 18, 2024
2 parents 5b001d6 + 8c4fb5d commit c145ce4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 2.32.1

A hotfix for OpenBSD. No changes to other platforms.

Bugfixes:
* Fix package count detection on OpenBSD (Packages, OpenBSD)

# 2.32.0

Bugfixes:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.12.0) # target_link_libraries with OBJECT libs & project homepage url

project(fastfetch
VERSION 2.32.0
VERSION 2.32.1
LANGUAGES C
DESCRIPTION "Fast neofetch-like system information tool"
HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
fastfetch (2.32.0) jammy; urgency=medium

* Update to 2.32.0

-- Carter Li <[email protected]> Wed, 18 Dec 2024 10:39:06 +0800

fastfetch (2.31.0) jammy; urgency=medium

* Update to 2.31.0
Expand Down
2 changes: 1 addition & 1 deletion debian/files
Original file line number Diff line number Diff line change
@@ -1 +1 @@
fastfetch_2.31.0_source.buildinfo universe/utils optional
fastfetch_2.32.0_source.buildinfo universe/utils optional
2 changes: 1 addition & 1 deletion src/detection/packages/packages_obsd.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void ffDetectPackagesImpl(FFPackagesResult* result, FFPackagesOptions* options)
if (!(options->disabled & FF_PACKAGES_FLAG_PKG_BIT))
{
result->pkg = getNumElementsImpl(FASTFETCH_TARGET_DIR_ROOT
#if __OpenBSD
#if __OpenBSD__
"/var/db/pkg"
#else
"/usr/pkg/pkgdb"
Expand Down

0 comments on commit c145ce4

Please sign in to comment.