diff --git a/CHANGELOG.md b/CHANGELOG.md index 34836c573..45031341b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +# 2.48.1 + +Features: +* Add support for detecting Openbox WM version (WM, Linux) +* Improve reliability of child process spawning on Windows (Windows) +* Add a new option `--packages-combined`, which combines related package managers into single counts (#1851, Packages) + * 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. +* Add `modules[n].condition` to conditionally enable modules on different platforms + * Useful when sharing configuration files across platforms + * For example: +```jsonc +{ + "type": "custom", + "format": "This string will be printed on Intel macOS only", + "condition": { + "system": "macOS", // Can be an array, optional + "arch": "x86_64" // Can be an array, optional too + } +} +``` + +Bugfixes: +* Revert the change of `posix_spawn` in v2.48.0 for Android and OpenBSD (Android / OpenBSD) + * Fix completion for Android 7 (Required by Termux) + # 2.48.0 Features: diff --git a/CMakeLists.txt b/CMakeLists.txt index 376942f23..e008886a7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.12.0) # target_link_libraries with OBJECT libs & project homepage url project(fastfetch - VERSION 2.48.0 + VERSION 2.48.1 LANGUAGES C DESCRIPTION "Fast neofetch-like system information tool" HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"