From a4fe933625491eb31a7d8c2c7e098cf6778f7b19 Mon Sep 17 00:00:00 2001 From: Carter Li Date: Thu, 3 Oct 2024 21:02:20 +0800 Subject: [PATCH] Doc: update changelog for 2.27.0 --- CHANGELOG.md | 19 +++++++++++++++++++ CMakeLists.txt | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57eda8efe..a66095c62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# 2.27.0 + +Changes: +* We now print `"` instead of `″` when displaying diagonal length in inches, so that the character can be correctly displayed in Linux console (Display) +* All detection code of `monitor` module is merged into `display` module. Now `monitor` just prints the same information as `display` with different format. Notably: + * The resolution reported by `monitor` module is now current resolution instead of native / maximum resolution. PPI is calcuated based on current resolution too. + * The refresh rate reported by `monitor` module is the current refresh rate. + +Features: +* Improve support for Raspberry pi (CPU / GPU, Linux) +* Detect SOC name, instead of displaying components used in the SOC, if available (CPU, Linux) +* Add option `--brightness-compact` to display multiple brightness values in one line (Brightness) +* Add `day-pretty` (#1305, DateTime) + +Bugfixes: +* Remove trailing newline in GPU name for Raspberry pi (#1303, GPU, Linux) +* Fix a possible buffer overflow (GPU, Linux) +* Fix CPU temp incorrectly reported as 0 celsius (#1308, CPU, Linux) + # 2.26.1 Features: diff --git a/CMakeLists.txt b/CMakeLists.txt index dd95d4291..365ea40a1 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.26.1 + VERSION 2.27.0 LANGUAGES C DESCRIPTION "Fast neofetch-like system information tool" HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"