From 3fe2d8091adbc1f844ac972857fde92db7708615 Mon Sep 17 00:00:00 2001 From: Carter Li Date: Tue, 30 Apr 2024 19:43:26 +0800 Subject: [PATCH] Release: v2.11.0 --- CHANGELOG.md | 11 +++++++++-- CMakeLists.txt | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17f58128a..0c6c673fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 2.10.3 +# 2.11.0 Changes: * Default `hideCursor` to false. It doesn't make much difference but makes user's terminal unusable if fastfetch is not exited correctly. @@ -10,14 +10,21 @@ Bugfixes: * Fix wifi detection on platforms that don't use NetworkManager (#811, Wifi, Linux) * Fix NixOS wrapped process name (#814, Terminal, Linux) * Fix GPU type detection for AMD cards (#816, GPU, Linux) +* Silence system deprecation warnings (#822, Camera, macOS) Features: * Add basic support DE detection support for UKUI (DE, Linux) * Support printing total number of nix / flatpak / brew packages (Packages) * See `fastfetch -h packages-format` for detail * Better max CPU frequency detection support with `CPUID / 16H` instruction (CPU, Windows) - * This requires Core I Gen 6 or newer, and with `Virtual Machine Platform` Windows feature disabled. X86 only. + * This requires Intel Core I Gen 6 or newer, and with `Virtual Machine Platform` Windows feature disabled. X86 only. * Improve performance of nix packages detection (Packages, Linux) +* Make config specified in JSONC overridable by command line flags + * Note this change only make global config overridable; module configs are still not +* Suggest increasing `--processing-timeout` when child process timeouts +* Only detect folders that specified by `--disk-folders` + * Previously `--disk-folders` only omits unmatched disks from output + * This option can be used to improve detection performance by ignoring slow network drives # 2.10.2 diff --git a/CMakeLists.txt b/CMakeLists.txt index 3f2fff8dc..1bcbb32cb 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.10.3 + VERSION 2.11.0 LANGUAGES C DESCRIPTION "Fast neofetch-like system information tool" HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"