Skip to content

Commit 72da815

Browse files
committed
Release: v2.48.1
1 parent aca2b53 commit 72da815

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
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"

0 commit comments

Comments
 (0)