Skip to content

Commit dc89336

Browse files
committed
Release: v2.20.0
1 parent 952152e commit dc89336

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,31 @@
11
# 2.20.0
22

3+
This release fixes regression of `2.19.0` on M1 MacBook Air. It also introduces a new option `--key-type icon` to display predefined icons in keys (requires newest nerd font). See `fastfetch -h key-type` for detail.
4+
35
Changes:
46
* JSON option `display.keyWidth` has been renamed to `display.key.width`
57
* Previously: `{ "display": { "keyWidth": 3 } }`
68
* Now: `{ "display": { "key": { "width": 3 } } }`
9+
* Windows Terminal font detection **in WSL** has been removed due to [issue #1113](https://github.com/fastfetch/fastfetch/issues/1113)
710

8-
Features
11+
Features:
912
* Add option `display.key.type: <enum>` to print icons in keys
1013
* Supported value `string`, `icon` and `both`. Default to `string` (don't display icons)
1114
* Example: `{ "display": { "key": { "type": "icon" } } }`
1215
* Add option `display.key.paddingLeft: <num>` to print left padding (whitespaces) in keys
1316
* Example: `{ "display": { "key": { "paddingLeft": 2 } } }`
1417
* Add option `modules.keyIcon` to set icon for specified module
1518
* Example: `{ "modules": { "type": "command", "keyIcon": "🔑" } }`
19+
* Report system mono font name for Terminator if used (TerminalFont, Linux)
20+
* Don't require logo height to be set when using `--logo-position right`
21+
* Report Snapdragon SOC marketing name for newer Android phones (CPU, Android)
22+
* Detect MTK SOC part name (CPU, Android)
23+
24+
Bugfixes:
25+
* Don't wake up suspended GPUs when using `--ds-force-drm` (Display, Linux)
26+
* Fix printing editor type in JSON result (Editor)
27+
* Fix `--logo-padding-*` not working correctly (#1121, Logo)
28+
* Fix possible segfault when detecting GPU frequency (#1121, macOS, GPU)
1629

1730
# 2.19.1
1831

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.19.1
4+
VERSION 2.20.0
55
LANGUAGES C
66
DESCRIPTION "Fast neofetch-like system information tool"
77
HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"

src/data/help.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@
520520
"enum": {
521521
"none": "Disable keys",
522522
"string": "Show string",
523-
"icon": "Show icon",
523+
"icon": "Show icon (requires newest nerd font)",
524524
"both": "Show both icon and string"
525525
},
526526
"default": "string"

0 commit comments

Comments
 (0)