From 1e50f5986eed6abbd1a8e28a5e62196296af4fb71cf6291f1dfcec9eb96dd1f2 Mon Sep 17 00:00:00 2001 From: Soc Virnyl Estela Date: Wed, 17 May 2023 14:15:14 +0000 Subject: [PATCH 1/5] - Update to version 1.11.0: * Support linuxbrew * Support foot terminal * Support cursor size detection on Windows * Support cursor detection on macOS * Support display name, display type and decimal refresh rate detection * Support --display-compact-type to display multiple resolutions in one line * Support flatpak-user * Support --gpu-force-vulkan to force using vulkan to detect GPUs, which support video memory usage detection with --allow-slow-operations * Fix date time format * Fix compiling with musl * Don't exit if libpci is failed to init * Names of most well-known gamepads are correctly printed instead of Wireless Controller on Windows * Small update for nobara logo OBS-URL: https://build.opensuse.org/package/show/utilities/fastfetch?expand=0&rev=11 --- fastfetch-1.10.3.tar.gz | 3 --- fastfetch-1.11.0.tar.gz | 3 +++ fastfetch.changes | 18 ++++++++++++++++++ fastfetch.spec | 2 +- 4 files changed, 22 insertions(+), 4 deletions(-) delete mode 100644 fastfetch-1.10.3.tar.gz create mode 100644 fastfetch-1.11.0.tar.gz diff --git a/fastfetch-1.10.3.tar.gz b/fastfetch-1.10.3.tar.gz deleted file mode 100644 index 5bbcfa6..0000000 --- a/fastfetch-1.10.3.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:55385feb4f4d7c16b3e8555afb20b030f3dbf446e225b09f1dcae163702225b6 -size 528112 diff --git a/fastfetch-1.11.0.tar.gz b/fastfetch-1.11.0.tar.gz new file mode 100644 index 0000000..48578d5 --- /dev/null +++ b/fastfetch-1.11.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:900b3c19f56fca59fd90ae2a033f40fec00185f2a0078dabdcc13a27635dd989 +size 531745 diff --git a/fastfetch.changes b/fastfetch.changes index 3507ec1..0f832c8 100644 --- a/fastfetch.changes +++ b/fastfetch.changes @@ -1,3 +1,21 @@ +------------------------------------------------------------------- +Wed May 17 14:13:18 UTC 2023 - Soc Virnyl Estela + +- Update to version 1.11.0: + * Support linuxbrew + * Support foot terminal + * Support cursor size detection on Windows + * Support cursor detection on macOS + * Support display name, display type and decimal refresh rate detection + * Support --display-compact-type to display multiple resolutions in one line + * Support flatpak-user + * Support --gpu-force-vulkan to force using vulkan to detect GPUs, which support video memory usage detection with --allow-slow-operations + * Fix date time format + * Fix compiling with musl + * Don't exit if libpci is failed to init + * Names of most well-known gamepads are correctly printed instead of Wireless Controller on Windows + * Small update for nobara logo + ------------------------------------------------------------------- Sat Mar 4 01:55:25 UTC 2023 - Soc Virnyl Estela diff --git a/fastfetch.spec b/fastfetch.spec index f27db86..aa1412d 100644 --- a/fastfetch.spec +++ b/fastfetch.spec @@ -17,7 +17,7 @@ Name: fastfetch -Version: 1.10.3 +Version: 1.11.0 Release: 0 Summary: Neofetch-like tool written in C License: MIT From c2a5790e85819ae87388462d5ea67241a04647b2bd5abc05f58e8a7daf9d7b2a Mon Sep 17 00:00:00 2001 From: Soc Virnyl Estela Date: Wed, 17 May 2023 14:19:33 +0000 Subject: [PATCH 2/5] OBS-URL: https://build.opensuse.org/package/show/utilities/fastfetch?expand=0&rev=12 --- fastfetch.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/fastfetch.spec b/fastfetch.spec index aa1412d..8a71fcb 100644 --- a/fastfetch.spec +++ b/fastfetch.spec @@ -75,10 +75,13 @@ sed -i "s|\#\!\/usr\/bin\/env bash||g" completions/bash %files %license LICENSE %doc README.md CHANGELOG.md + %{_bindir}/flashfetch %{_bindir}/%{name} -%dir %{_sysconfdir}/%{name} -%config(noreplace) %{_sysconfdir}/%{name}/config.conf + +%dir %{_prefix}%{_sysconfdir}/%{name} +%config(noreplace) %{_prefix}%{_sysconfdir}/%{name}/config.conf + %{_datadir}/%{name}/ %{_datadir}/bash-completion/ From 63b0caa221fabf94886446c9146ee6e75e16365310607abcd9922340b00552a8 Mon Sep 17 00:00:00 2001 From: Soc Virnyl Estela Date: Wed, 17 May 2023 14:23:21 +0000 Subject: [PATCH 3/5] OBS-URL: https://build.opensuse.org/package/show/utilities/fastfetch?expand=0&rev=13 --- fastfetch.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/fastfetch.spec b/fastfetch.spec index 8a71fcb..7d5e0be 100644 --- a/fastfetch.spec +++ b/fastfetch.spec @@ -72,6 +72,9 @@ sed -i "s|\#\!\/usr\/bin\/env bash||g" completions/bash %install %cmake_install +# Move the default config file to a saner directory +mv -v %{buildroot}%{_prefix}%{_sysconfdir} %{buildroot}%{_sysconfdir} + %files %license LICENSE %doc README.md CHANGELOG.md @@ -79,8 +82,8 @@ sed -i "s|\#\!\/usr\/bin\/env bash||g" completions/bash %{_bindir}/flashfetch %{_bindir}/%{name} -%dir %{_prefix}%{_sysconfdir}/%{name} -%config(noreplace) %{_prefix}%{_sysconfdir}/%{name}/config.conf +%dir %{_sysconfdir}/%{name} +%config(noreplace) %{_sysconfdir}/%{name}/config.conf %{_datadir}/%{name}/ %{_datadir}/bash-completion/ From b277d29a54a1fbad3b65102cd3b7126ff4cdc4b4ecb341cd75d698c4248a42e5 Mon Sep 17 00:00:00 2001 From: Soc Virnyl Estela Date: Wed, 17 May 2023 14:35:17 +0000 Subject: [PATCH 4/5] - Move configuration files based on openSUSE distribution. OBS-URL: https://build.opensuse.org/package/show/utilities/fastfetch?expand=0&rev=14 --- fastfetch.changes | 5 +++++ fastfetch.spec | 12 +++++++++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/fastfetch.changes b/fastfetch.changes index 0f832c8..7d6546e 100644 --- a/fastfetch.changes +++ b/fastfetch.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed May 17 14:34:44 UTC 2023 - Soc Virnyl Estela + +- Move configuration files based on openSUSE distribution. + ------------------------------------------------------------------- Wed May 17 14:13:18 UTC 2023 - Soc Virnyl Estela diff --git a/fastfetch.spec b/fastfetch.spec index 7d5e0be..4d2d9cd 100644 --- a/fastfetch.spec +++ b/fastfetch.spec @@ -72,9 +72,6 @@ sed -i "s|\#\!\/usr\/bin\/env bash||g" completions/bash %install %cmake_install -# Move the default config file to a saner directory -mv -v %{buildroot}%{_prefix}%{_sysconfdir} %{buildroot}%{_sysconfdir} - %files %license LICENSE %doc README.md CHANGELOG.md @@ -82,9 +79,18 @@ mv -v %{buildroot}%{_prefix}%{_sysconfdir} %{buildroot}%{_sysconfdir} %{_bindir}/flashfetch %{_bindir}/%{name} +%if 0%{?suse_version} < 1500 + +%dir %{_prefix}%{_sysconfdir}/%{name} +%{_prefix}%{_sysconfdir}/%{name}/config.conf + +%else + %dir %{_sysconfdir}/%{name} %config(noreplace) %{_sysconfdir}/%{name}/config.conf +%endif + %{_datadir}/%{name}/ %{_datadir}/bash-completion/ From eb9fa1b9dcb8dc5d4847448ac72c626a1f6bd1e5971647c3106e388060f2b254 Mon Sep 17 00:00:00 2001 From: Soc Virnyl Estela Date: Wed, 17 May 2023 14:49:37 +0000 Subject: [PATCH 5/5] OBS-URL: https://build.opensuse.org/package/show/utilities/fastfetch?expand=0&rev=15 --- fastfetch.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fastfetch.spec b/fastfetch.spec index 4d2d9cd..19b6d0e 100644 --- a/fastfetch.spec +++ b/fastfetch.spec @@ -79,10 +79,10 @@ sed -i "s|\#\!\/usr\/bin\/env bash||g" completions/bash %{_bindir}/flashfetch %{_bindir}/%{name} -%if 0%{?suse_version} < 1500 +%if 0%{?suse_version} > 1500 -%dir %{_prefix}%{_sysconfdir}/%{name} -%{_prefix}%{_sysconfdir}/%{name}/config.conf +%dir %_distconfdir/%{name} +%_distconfdir/%{name}/config.conf %else