diff --git a/CHANGELOG.md b/CHANGELOG.md index f80840f3f..5ce67506c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,12 +17,21 @@ Features: * Support `--colors-symbol` and `--colors-padding-left` * Add LM (Login Manager) module * Add `--wmi-timeout` option (Windows) + +# 1.12.2 + +Features: +* Support terminator terminal version detection (Linux, Terminal) * Support `pkgtool` package manager detection (Linux, Packages) +* Support `Far` shell version detection (Windows, Shell) + +Bugfixes: +* Fix ConEmu terminal detection in some special cases (Windows, Terminal, #488) +* Fix incorrect Host on M2 Mac Studio with M2 Max CPU (macOS, Host, #490) # 1.12.1 Bugfixes: - * Fix compiling error on Apple Slicon (Bios, macOS) # 1.12.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 3a90788e7..b93e61332 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 & FetchContent project(fastfetch - VERSION 1.12.1 + VERSION 1.12.2 LANGUAGES C DESCRIPTION "Fast system information tool" HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch" diff --git a/src/modules/packages/packages.c b/src/modules/packages/packages.c index 928624b7c..0866cfb05 100644 --- a/src/modules/packages/packages.c +++ b/src/modules/packages/packages.c @@ -4,7 +4,7 @@ #include "modules/packages/packages.h" #include "util/stringUtils.h" -#define FF_PACKAGES_NUM_FORMAT_ARGS 21 +#define FF_PACKAGES_NUM_FORMAT_ARGS 22 void ffPrintPackages(FFPackagesOptions* options) {