Accepting request 1202432 from graphics
OBS-URL: https://build.opensuse.org/request/show/1202432 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/oculante?expand=0&rev=16
This commit is contained in:
commit
54bfee815a
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fa3826727db01a6472762de2444c195bd0db31936f8041481c487029b7cf2b34
|
|
||||||
size 59558845
|
|
3
oculante-0.9.0.tar.gz
Normal file
3
oculante-0.9.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d3faf017cc3aa8dc4f84cd75a934703b4e4b2522ae79e42fcfc0e439e9d5e430
|
||||||
|
size 59617742
|
@ -1,3 +1,37 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Sep 22 00:07:11 UTC 2024 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
|
||||||
|
|
||||||
|
- add appstream-glib BuildRequires: for validate xml file
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Sep 21 12:23:35 UTC 2024 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
|
||||||
|
|
||||||
|
- Update to version 0.9.0:
|
||||||
|
+ Bug Fixes
|
||||||
|
- Flip operation would always flip horizontal
|
||||||
|
- When pressing right mouse, panning operation got stuck.
|
||||||
|
Panning is now only possible using left or middle mouse.
|
||||||
|
+ Features
|
||||||
|
- Show confirmation dialog when deleting a file
|
||||||
|
- Stack Blur provides much faster blur performance for the blur
|
||||||
|
filter
|
||||||
|
- Visually indicate difference between operator types with a
|
||||||
|
separator
|
||||||
|
- Persistent and volatile settings are now split for easier
|
||||||
|
versioning of configuration files
|
||||||
|
- enable version control friendly settings
|
||||||
|
- Use built in file browser
|
||||||
|
+ Chore
|
||||||
|
- deps: bump quinn-proto from 0.11.3 to 0.11.8
|
||||||
|
- update turbojpeg and remove image dependency
|
||||||
|
- Update gif/ gif-dispose
|
||||||
|
- Update fast_image_resize, libavif-image, self_update,
|
||||||
|
libheif-rs
|
||||||
|
- update trash
|
||||||
|
- Update webbrowser, wgpu, ruzstd
|
||||||
|
- Update jpg2000 and add test image
|
||||||
|
- update image and nalgebra
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 6 07:25:44 UTC 2024 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
|
Tue Aug 6 07:25:44 UTC 2024 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
|
||||||
|
|
||||||
|
@ -18,14 +18,16 @@
|
|||||||
|
|
||||||
%bcond_without test
|
%bcond_without test
|
||||||
%define force_gcc_version 13
|
%define force_gcc_version 13
|
||||||
|
%define appid io.github.woelper.Oculante
|
||||||
Name: oculante
|
Name: oculante
|
||||||
Version: 0.8.23
|
Version: 0.9.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A minimalistic crossplatform image viewer written in rust
|
Summary: A minimalistic crossplatform image viewer written in rust
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/woelper/oculante
|
URL: https://github.com/woelper/oculante
|
||||||
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
|
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||||
Source1: vendor.tar.zst
|
Source1: vendor.tar.zst
|
||||||
|
BuildRequires: appstream-glib
|
||||||
BuildRequires: cargo-packaging
|
BuildRequires: cargo-packaging
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
BuildRequires: desktop-file-utils
|
BuildRequires: desktop-file-utils
|
||||||
@ -61,8 +63,12 @@ export CXX="g++-%{?force_gcc_version}"
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
install -Dpm755 target/release/%{name} -t %{buildroot}%{_bindir}
|
install -Dpm755 target/release/%{name} -t %{buildroot}%{_bindir}
|
||||||
install -Dpm644 res/%{name}.png -t %{buildroot}%{_datadir}/pixmaps/
|
install -Dpm644 res/icons/icon.png \
|
||||||
install -Dpm644 res/%{name}.desktop -t %{buildroot}%{_datadir}/applications
|
%{buildroot}%{_datadir}/pixmaps/%{appid}.png
|
||||||
|
install -Dpm644 res/flathub/%{appid}.desktop -t \
|
||||||
|
%{buildroot}%{_datadir}/applications
|
||||||
|
install -Dpm644 res/flathub/%{appid}.metainfo.xml -t \
|
||||||
|
%{buildroot}%{_datadir}/metainfo
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
@ -72,14 +78,16 @@ export CXX="g++-%{?force_gcc_version}"
|
|||||||
%endif
|
%endif
|
||||||
%{cargo_test} -- --skip=tests::net --skip=bench
|
%{cargo_test} -- --skip=tests::net --skip=bench
|
||||||
%endif
|
%endif
|
||||||
|
appstream-util validate-relax --nonet \
|
||||||
|
%{buildroot}%{_datadir}/metainfo/%{appid}.metainfo.xml
|
||||||
desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license LICENSE*
|
%license LICENSE*
|
||||||
%doc README* CHANGELOG.md
|
%doc README* CHANGELOG.md
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
%{_datadir}/pixmaps/%{name}.png
|
%{_datadir}/pixmaps/%{appid}.png
|
||||||
%{_datadir}/applications/%{name}.desktop
|
%{_datadir}/applications/%{appid}.desktop
|
||||||
|
%{_datadir}/metainfo
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:89d18f213cb1f9879e8678f6728c50cc1d63aa2124cd9f55c8719a61ce675039
|
oid sha256:d1496cb2afb1d5daab498e9156b3aa8266745d6c979f889b7eebff58922d9ad1
|
||||||
size 110177087
|
size 107040371
|
||||||
|
Loading…
Reference in New Issue
Block a user