Skip to content

Commit 30b9f95

Browse files
authored
Merge pull request #649 from fastfetch-cli/dev
Release v2.3.2
2 parents ac76107 + 74b9fd0 commit 30b9f95

File tree

7 files changed

+25
-12
lines changed

7 files changed

+25
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,8 @@ jobs:
152152

153153
- name: install required packages
154154
run: |
155-
brew uninstall aws-sam-cli azure-cli qemu lima colima gradle kotlin maven pipx aria2 || true
156155
brew update
157-
brew install vulkan-loader vulkan-headers molten-vk imagemagick chafa
156+
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install vulkan-loader vulkan-headers molten-vk imagemagick chafa
158157
159158
- name: Initialize CodeQL
160159
uses: github/codeql-action/init@v2

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1+
# 2.3.2
2+
3+
Bugfixes:
4+
* Fix fish completion script, and install the script correctly
5+
6+
Logo:
7+
* Fix Xray-OS logo name
8+
19
# 2.3.1
210

311
Bugfixes:
4-
* Man page install location
12+
* Fix man page install location
513

614
# 2.3.0
715

CMakeLists.txt

Lines changed: 7 additions & 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.3.1
4+
VERSION 2.3.2
55
LANGUAGES C
66
DESCRIPTION "Fast neofetch-like system information tool"
77
HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"
@@ -1040,6 +1040,12 @@ install(
10401040
RENAME "${CMAKE_PROJECT_NAME}"
10411041
)
10421042

1043+
install(
1044+
FILES "${CMAKE_SOURCE_DIR}/completions/fish"
1045+
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/fish/vendor_completions.d"
1046+
RENAME "${CMAKE_PROJECT_NAME}.fish"
1047+
)
1048+
10431049
install(
10441050
DIRECTORY "${CMAKE_SOURCE_DIR}/presets"
10451051
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/${CMAKE_PROJECT_NAME}"

completions/fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env fish
22

3-
if not test -x fastfetch
3+
if not type -q fastfetch
44
return
55
end
66

src/data/help.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -545,31 +545,31 @@
545545
},
546546
{
547547
"long": "bar-char-elapsed",
548-
"desc": "Set the character to use in elapsed part",
548+
"desc": "Set the character to use in elapsed part of percentage bars",
549549
"arg": {
550550
"type": "str",
551551
"default": ""
552552
}
553553
},
554554
{
555555
"long": "bar-char-total",
556-
"desc": "Set the character to use in total part",
556+
"desc": "Set the character to use in total part of percentage bars",
557557
"arg": {
558558
"type": "str",
559559
"default": "-"
560560
}
561561
},
562562
{
563563
"long": "bar-width",
564-
"desc": "Set the width of the bar, in number of characters",
564+
"desc": "Set the width of percentage bars, in number of characters",
565565
"arg": {
566566
"type": "num",
567567
"default": 10
568568
}
569569
},
570570
{
571571
"long": "bar-border",
572-
"desc": "Whether to show a border around the bar",
572+
"desc": "Whether to show a border around percentage bars",
573573
"arg": {
574574
"type": "bool",
575575
"optional": true,

src/logo/builtin.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4279,10 +4279,10 @@ static const FFlogo X[] = {
42794279
FF_COLOR_FG_CYAN,
42804280
},
42814281
},
4282-
//XrayOS
4282+
//Xray_OS
42834283
{
4284-
.names = {"XrayOS"},
4285-
.lines = FASTFETCH_DATATEXT_LOGO_XRAYOS,
4284+
.names = {"Xray_OS"},
4285+
.lines = FASTFETCH_DATATEXT_LOGO_XRAY_OS,
42864286
.colors = {
42874287
FF_COLOR_FG_256 "15",
42884288
FF_COLOR_FG_256 "14",

0 commit comments

Comments
 (0)