Skip to content

Commit ac76107

Browse files
authored
Merge pull request #647 from fastfetch-cli/dev
Release v2.3.1
2 parents 293576f + c25fe53 commit ac76107

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1+
# 2.3.1
2+
3+
Bugfixes:
4+
* Man page install location
5+
16
# 2.3.0
27

8+
**We are deprecating flags based config files (will be removed in v3.0.0). We suggest you migrate to json based config files.**
9+
310
Config related changes:
411
* The deprecated flag `--gen-config conf` is removed
512
* Flag `--gen-config` now does the same thing as `--migrate-config`, which can be used as config migration and default config file generation. Flag `--migrate-config` is removed
@@ -9,8 +16,6 @@ Config related changes:
916
* Config files will always be loaded before other command line flags being parsed. That is to say, command line flags will always override options defined in config files.
1017
* the value of GPUType `integrated` contained a typo and was fixed. Existing config files may need to be updated.
1118

12-
We are deprecating flags based config files (will be removed in v3.0.0). We suggest you migrate to json based config files.
13-
1419
Features:
1520
* Support Oils and elvish shell version detection (Shell)
1621
* Support Windows Server Core (Windows)
@@ -35,7 +40,7 @@ Bugfixes:
3540
* Fix some memory leaks
3641
* Fix used swap space detection (Swap, FreeBSD)
3742
* Don't leak fds to child processes (Linux)
38-
* Fix possible issues when reading procfs (Linux)
43+
* Fix possible issues when reading procfs (Linux, @apocelipes)
3944

4045
Logos:
4146
* Add Adelie, Ironclad

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
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.3.0
4+
VERSION 2.3.1
55
LANGUAGES C
66
DESCRIPTION "Fast neofetch-like system information tool"
77
HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"
@@ -1052,7 +1052,7 @@ install(
10521052

10531053
install(
10541054
FILES "${PROJECT_BINARY_DIR}/fastfetch.1"
1055-
DESTINATION "${CMAKE_INSTALL_MANDIR}"
1055+
DESTINATION "${CMAKE_INSTALL_MANDIR}/man1"
10561056
)
10571057

10581058
##################

0 commit comments

Comments
 (0)