SHA256
1
0
forked from pool/fastfetch

Accepting request 1198549 from utilities

- Make completion packages Require the main package
- update to 2.23.0
  Features:
    * Support unity version detection (DE, Linux)
    * Print model name in Battery keys if available (Battery)
    * Add module Zpool
    * Improve performance (Shell / Terminal, Linux)
    * Support syntax of padded strings in --<module>-format. {variable<padlength} and {variable>padlength} are supported.
        If pad length is greater than the length of the variable, the variable will be padded with spaces.
            fastfetch -l none -s command --command-text 'echo 12345' --command-format 'output({1<20})' prints Command: output(12345               )
            fastfetch -l none -s command --command-text 'echo 12345' --command-format 'output({1>20})' prints Command: output(               12345)
        If pad length is less than the length of the variable, the variable will be truncated.
  Bugfixes:
    * Fix broken --list-presets
    * Update zsh completion script
    * Don't print * if defaultRouteOnly is set (NetIO)
    * Fix Camera module incorrectly disabled on FreeBSD (Camera, FreeBSD)
    * Fix hanging on screen 5.0 (Terminal)

- update to 2.22.0
  Features:
    * Small performance improvements (Terminal, Editor)
    * Improve arm32 and loongarch support (CPU, Linux)
    * Ignore the parent process if env $FFTS_IGNORE_PARENT is set to 1 (Shell)
    * Add code name of Apple M4 (CPU, Linux)
    * Add ethernet speed rate detection support (LocalIP)
    * Add zsh completion script
    * Add Linglong package manager detection support (Packages, Linux)
  Bugfixes:
    * Fix tmux in linux TTY (Colors)
    * Fix hang in WSL when custom format is used (Disk, Linux)

OBS-URL: https://build.opensuse.org/request/show/1198549
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fastfetch?expand=0&rev=42
This commit is contained in:
Dominique Leuenberger 2024-09-04 11:26:33 +00:00 committed by Git OBS Bridge
commit b8252a76c6
4 changed files with 64 additions and 4 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cec1f126ade7a5ef971901b1cdbe79f5864523d7a0a92732991619485d13e2e7
size 1093534

3
fastfetch-2.23.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3c92dd2cb15faf55d87846eda8d14456af2d0e0938998434144074c695c57529
size 1105725

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Tue Sep 3 15:08:59 UTC 2024 - Gordon Leung <pirateclip@protonmail.com>
- Make completion packages Require the main package
- update to 2.23.0
Features:
* Support unity version detection (DE, Linux)
* Print model name in Battery keys if available (Battery)
* Add module Zpool
* Improve performance (Shell / Terminal, Linux)
* Support syntax of padded strings in --<module>-format. {variable<padlength} and {variable>padlength} are supported.
If pad length is greater than the length of the variable, the variable will be padded with spaces.
fastfetch -l none -s command --command-text 'echo 12345' --command-format 'output({1<20})' prints Command: output(12345 )
fastfetch -l none -s command --command-text 'echo 12345' --command-format 'output({1>20})' prints Command: output( 12345)
If pad length is less than the length of the variable, the variable will be truncated.
Bugfixes:
* Fix broken --list-presets
* Update zsh completion script
* Don't print * if defaultRouteOnly is set (NetIO)
* Fix Camera module incorrectly disabled on FreeBSD (Camera, FreeBSD)
* Fix hanging on screen 5.0 (Terminal)
-------------------------------------------------------------------
Mon Aug 26 07:03:48 UTC 2024 - Gordon Leung <pirateclip@protonmail.com>
- update to 2.22.0
Features:
* Small performance improvements (Terminal, Editor)
* Improve arm32 and loongarch support (CPU, Linux)
* Ignore the parent process if env $FFTS_IGNORE_PARENT is set to 1 (Shell)
* Add code name of Apple M4 (CPU, Linux)
* Add ethernet speed rate detection support (LocalIP)
* Add zsh completion script
* Add Linglong package manager detection support (Packages, Linux)
Bugfixes:
* Fix tmux in linux TTY (Colors)
* Fix hang in WSL when custom format is used (Disk, Linux)
* Fix /proc/loadavg parsing (Loadavg, Linux)
* Disable use of LC_NUMERIC locale settings to fix parsing of decimal numbers
* Fix possible segfault (DiskIO, Linux)
* Honor preciseRefreshRate in custom format (Display)
-------------------------------------------------------------------
Thu Aug 15 17:15:17 UTC 2024 - RN <R_Nik_C@proton.me>

View File

@ -17,7 +17,7 @@
Name: fastfetch
Version: 2.21.3
Version: 2.23.0
Release: 0
Summary: Neofetch-like tool written mostly in C
License: MIT
@ -74,6 +74,7 @@ MacOS and Windows 7+ are supported.
%package fish-completion
Summary: Fish Completion for %{name}
Supplements: (%{name} and fish)
Requires: fastfetch
Requires: fish
BuildArch: noarch
@ -84,11 +85,22 @@ Fish command-line completion support for %{name}.
Summary: Bash Completion for %{name}
Supplements: (%{name} and bash-completion)
Requires: bash-completion
Requires: fastfetch
BuildArch: noarch
%description bash-completion
Bash command-line completion support for %{name}.
%package zsh-completion
Summary: Zsh Completion for %{name}
Supplements: (%{name} and zsh)
Requires: fastfetch
Requires: zsh
BuildArch: noarch
%description zsh-completion
Zsh command-line completion support for %{name}.
%prep
%autosetup
@ -117,4 +129,9 @@ Bash command-line completion support for %{name}.
%dir %{_datadir}/fish/vendor_completions.d
%{_datadir}/fish/vendor_completions.d/fastfetch.fish
%files zsh-completion
%dir %{_datadir}/zsh
%dir %{_datadir}/zsh/site-functions
%{_datadir}/zsh/site-functions/_fastfetch
%changelog