You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug_report.md
+1-6Lines changed: 1 addition & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,11 +19,6 @@ assignees: ''
19
19
20
20
# Often helpful information:
21
21
22
-
Output of `fastfetch --version`:
23
-
```
24
-
//paste here
25
-
```
26
-
27
22
The content of the configuration file you use (if any)
28
23
```
29
24
//paste here
@@ -34,7 +29,7 @@ Output of `env NO_CONFIG=1 fastfetch --load-config all --show-errors --stat --mu
34
29
Note that this output will contain you public IP. If it is not relevant for the issue, feel free to remove it before uploading.
35
30
36
31
If you get the following error: `Error: couldn't find config: [...]`, copy the files in [presets](../../presets/) to `/usr/share/fastfetch/presets/` or `~/.local/share/fastfetch/presets/`.
37
-
If this isn't possible (or too much work) for you, post the output of `env NO_CONFIG=1 fastfetch --show-errors --stat --multithreading false --disable-linewrap false --hide-cursor false`.
32
+
If this isn't possible (or too much work) for you, post the output of `env NO_CONFIG=1 fastfetch --show-errors --stat --multithreading false --disable-linewrap false --hide-cursor false && fastfetch --version`.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+25-2Lines changed: 25 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,27 @@
1
-
# 2.0.0 (beta)
1
+
# 2.0.1
2
+
3
+
First stable release of Fastfetch V2
4
+
5
+
Changes:
6
+
* Unescape strings only when parsing `.conf` files
7
+
* Previously: `$ NO_CONFIG=1 fastfetch --os-key \\\\ -s os -l none` prints `\: *`. Note the backslashs are unescaped twice (once by shell and once by fastfetch).
8
+
* Now: `$ NO_CONFIG=1 fastfetch --os-key \\\\ -s os -l none` prints `\\: *`
9
+
* Remove option shortcut `-c` (alias of `--color`), which is more commonly used as alias of `--config`
10
+
* Rename `--recache` to `--logo-recache` (which is used for regenerate image logo cache). Remove option shortcut `-r` (alias of `--recache`).
11
+
* Detecting brightness of external displays with DDC/CI is no longer guarded behind `--allow-slow-operations` (Brightness)
12
+
13
+
Features:
14
+
* Add `--key-width` for aligning the left edge of values, supported both for global `--key-width` and specific module `--module-key-width`
15
+
* Add `--bar-char-elapsed`, `--bar-char-total`, `--bar-width` and `--bar-border` options
16
+
* Add CMake option `ENABLE_SYSTEM_YYJSON`, which allow building fastfetch with system-provided yyjson (for package managers)
17
+
* Add new module `Version`, which prints fastfetch version (like `fastfetch --version`)
18
+
19
+
Bugfixes:
20
+
* Fix label detection. Use `--disk-key 'Disk ({2})'` to display it (Disk, Linux)
21
+
* Fix some module options were not inited
22
+
* Fix terminal version and font detection on NixOS (Terminal, Linux)
23
+
24
+
# 2.0.0-beta
2
25
3
26
Fastfetch v2 introduces a new configuration file format: JSON config. Please refer to <https://github.com/fastfetch-cli/fastfetch/wiki/Configuration> for details.
4
27
@@ -32,7 +55,7 @@ Features:
32
55
* Support iTerm non-ascii font detection (Terminal, macOS)
33
56
* Add option `--title-color-user`, `--title-color-at` and `--title-color-host` (Title)
34
57
* Add Exherbo logo and package manager count (Packages, Linux, #503)
35
-
* Add module `Terminal Size` which prints the number of terminal width and height in charactors and pixels
58
+
* Add module `Terminal Size` which prints the number of terminal width and height in characters and pixels
36
59
* Add new option `--temperature-unit`
37
60
* Better CPU and Host detection for Android (Android)
38
61
* Support yakuake terminal version & font detection (Terminal, Linux)
cmake_dependent_option(ENABLE_PCI_MEMORY "Enable detecting GPU memory size with libpci"OFF"LINUX OR BSD"OFF)
72
+
cmake_dependent_option(ENABLE_SYSTEM_YYJSON "Use system provided (instead of fastfetch embeded) yyjson library"OFF"LINUX OR APPLE OR BSD OR WIN32 OR ANDROID"OFF)
90
73
91
74
option(BUILD_TESTS "Build tests"OFF) # Also create test executables
92
75
option(SET_TWEAK "Add tweak to project version"ON) # This is set to off by github actions for release builds
0 commit comments