Skip to content

Commit 02aafbd

Browse files
authored
Merge pull request #1852 from fastfetch-cli/dev
Release: v2.48.1
2 parents 1ac1f1f + 72da815 commit 02aafbd

File tree

89 files changed

+780
-109
lines changed

Some content is hidden

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

89 files changed

+780
-109
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# 2.48.1
2+
3+
Features:
4+
* Add support for detecting Openbox WM version (WM, Linux)
5+
* Improve reliability of child process spawning on Windows (Windows)
6+
* Add a new option `--packages-combined`, which combines related package managers into single counts (#1851, Packages)
7+
* For example: if you have both `flatpak-system` and `flatpak-user` packages installed, they will be combined into a single `flatpak` count with `--packages-combined` enabled.
8+
* Add `modules[n].condition` to conditionally enable modules on different platforms
9+
* Useful when sharing configuration files across platforms
10+
* For example:
11+
```jsonc
12+
{
13+
"type": "custom",
14+
"format": "This string will be printed on Intel macOS only",
15+
"condition": {
16+
"system": "macOS", // Can be an array, optional
17+
"arch": "x86_64" // Can be an array, optional too
18+
}
19+
}
20+
```
21+
22+
Bugfixes:
23+
* Revert the change of `posix_spawn` in v2.48.0 for Android and OpenBSD (Android / OpenBSD)
24+
* Fix completion for Android 7 (Required by Termux)
25+
126
# 2.48.0
227

328
Features:

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.48.0
4+
VERSION 2.48.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.48.0) jammy; urgency=medium
2+
3+
* Update to 2.48.0
4+
5+
-- Carter Li <[email protected]> Thu, 17 Jul 2025 16:16:52 +0800
6+
17
fastfetch (2.47.0) jammy; urgency=medium
28

39
* Update to 2.47.0

debian/files

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

0 commit comments

Comments
 (0)