Skip to content

Commit b81c4a0

Browse files
authored
Merge pull request #2164 from fastfetch-cli/dev
Release: v2.58.0
2 parents 0418e9c + e26a05e commit b81c4a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+482
-304
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# 2.58.0
2+
3+
An early release to fix compatibility issues with KDE Plasma 6.6.
4+
5+
Breaking changes:
6+
* The `de.slowVersionDetection` option has been removed. Slow version detection is now always enabled, as required on non-FHS-compliant distros (e.g., NixOS). (#2149, DE, Linux)
7+
8+
Features:
9+
* Adds the `--structure-disabled <modules...>` command-line flag to temporarily disable module structure printing.
10+
* For example: `fastfetch --structure-disabled colors` removes the color blocks from the default output.
11+
* Supports chassis type detection on Linux ARM devices when reported via the device tree (Chassis, Linux)
12+
* Supports Bedrock Linux version detection (#2155, OS, Linux)
13+
* Honors the `DBPath` and `RootDir` settings in `pacman.conf` when detecting Pacman packages (#2154, Packages, Linux)
14+
15+
Bugfixes:
16+
* Fixes a crash issues on KDE Plasma 6.6 (Display, Linux)
17+
* Fixes the Command module not working with `--dynamic-interval` (#2152, Command)
18+
* Fixes Quartz Compositor version detection. It now correctly reports the version of `WindowServer` (`SkyLight`) instead of `WindowManager`. (WM, macOS)
19+
20+
Logos:
21+
* Adds Kiss2
22+
123
# 2.57.1
224

325
Features:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.12.0) # target_link_libraries with OBJECT libs & project homepage url
22

33
project(fastfetch
4-
VERSION 2.57.1
4+
VERSION 2.58.0
55
LANGUAGES C
66
DESCRIPTION "Fast neofetch-like system information tool"
77
HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MIT License
22

33
Copyright (c) 2021-2023 Linus Dierheimer
4-
Copyright (c) 2022-2025 Carter Li
4+
Copyright (c) 2022-2026 Carter Li
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

debian/changelog.tpl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
fastfetch (2.57.1~#UBUNTU_CODENAME#) #UBUNTU_CODENAME#; urgency=medium
2+
3+
* Update to 2.57.1
4+
5+
-- Carter Li <zhangsongcui@live.cn> Wed, 14 Jan 2026 14:00:17 +0800
6+
17
fastfetch (2.57.0~#UBUNTU_CODENAME#) #UBUNTU_CODENAME#; urgency=medium
28

39
* Update to 2.57.0

doc/json_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1999,7 +1999,7 @@
19991999
"additionalProperties": false,
20002000
"properties": {
20012001
"type": {
2002-
"description": "Print some colored blocks",
2002+
"description": "Display the terminal's 16-color palette",
20032003
"const": "colors"
20042004
},
20052005
"symbol": {

presets/examples/10.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Load with --load-config examples/2.jsonc
1+
// Load with --config examples/2.jsonc
22
// Note that you must replace the image path to an existing image to display it.
33

44
{

presets/examples/2.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Load with --load-config examples/2.jsonc
1+
// Load with --config examples/2.jsonc
22
// Note that you must replace the image path to an existing image to display it.
33

44
{

presets/examples/3.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Load with --load-config examples/3.jsonc
1+
// Load with --config examples/3.jsonc
22

33
{
44
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",

presets/examples/4.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Load with --load-config examples/4.jsonc
1+
// Load with --config examples/4.jsonc
22

33
{
44
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",

presets/examples/5.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Load with --load-config examples/5.jsonc
1+
// Load with --config examples/5.jsonc
22

33
{
44
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",

0 commit comments

Comments
 (0)