From ff8b69019f9d5643cdef3358e59e7109039de97f Mon Sep 17 00:00:00 2001 From: Carter Li Date: Mon, 31 Aug 2026 16:44:57 +0800 Subject: [PATCH] Release: v2.66.1 --- CHANGELOG.md | 17 +++++++++++++++++ CMakeLists.txt | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cb47a237..b837bb7f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# 2.66.1 + +Bugfixes: +* Fixed I/O rate calculation precision and prevented division by zero. (DiskIO / NetIO) +* Fixed ash and fish version detection, including a potential out-of-bounds read. (Shell) +* Fixed integer handling for varying sysctl data lengths. (Sysctl) +* Fixed several memory leaks in Camera, Codec, Display, Separator and Weather. +* Fixed Base64 encoding on big-endian hosts. (Base64) +* Fixed VP9 codec detection and macOS 10.15 Codec compatibility. (Codec, macOS) +* Relaxed accepted HTTP response formats and fixed invalid PublicIP URL parsing. (Networking / PublicIP) +* Added a response size limit to prevent excessive network memory allocation. (Networking) +* Added integer overflow checks to string buffer capacity handling. (FFstrbuf) +* Fixed Ubuntu Studio Core detection. (OS, Linux) +* Fixed preferred monitor mode detection for KDE Plasma. (Display, Linux) +* Fixed bright colors being enabled incorrectly in light themes. (Display) +* Fixed a macOS compiler warning. (Version, macOS) + # 2.66.0 Changes: diff --git a/CMakeLists.txt b/CMakeLists.txt index ac2315e4b..286329c2d 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.66.0 + VERSION 2.66.1 LANGUAGES C DESCRIPTION "Fast neofetch-like system information tool" HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"