Accepting request 1104703 from GNOME:Next
- Update to version 45.beta: + Newly designed print dialog + Added sandboxing for SVG rendering by using glycin + Use RaisedBorder for HeaderBar to avoid shadow over images + Fix browsing images on SMB shares not working + Fix touchscreen gestures not working when zoomed in + Fix touchscreen swipe only working on second attempt + Added JpegXL support via new glycin version + Added overshoot for swipe gesture + New custom style for drop targets + Changed name to Image Viewer - Add back cargo_audit in _service, now that it is back in working order. - Update to version 45.alpha: + Add help + Disable trashing for non-native files + Give toast for latest deleted file priority over the others + Only list supported image formats in file chooser + Do not guess a potentially different background color for opaque images + Fix incorrect updates when deleting or changing images + Fix SVG zooming with high-res scroll-wheels + Use glycin for sandboxed extendable image loading expect for SVG + Remove backspace as a trash shortcut + Change command line to open all given images in one window + Do not show "Set as Background" if operation was aborted + Let the user select multiple files to open in file chooser + Support forward and back mouse buttons + Correctly align right-click menu - Drop loupe-revert-gtk4-unstable-bump.patch: No longer needed. - Add itstool BuildRequires: New dependency. OBS-URL: https://build.opensuse.org/request/show/1104703 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/loupe?expand=0&rev=7
This commit is contained in:
parent
bfd5662d37
commit
bea3d0c242
2
_service
2
_service
@ -3,7 +3,7 @@
|
||||
<service name="obs_scm" mode="manual">
|
||||
<param name="url">https://gitlab.gnome.org/Incubator/loupe.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="revision">refs/tags/44.2</param>
|
||||
<param name="revision">refs/tags/45.beta</param>
|
||||
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
||||
<param name="versionrewrite-pattern">(.*)\+0</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
|
@ -1,10 +1,5 @@
|
||||
[source.crates-io]
|
||||
replace-with = "vendored-sources"
|
||||
|
||||
[source."git+https://gitlab.gnome.org/GNOME/librsvg.git?rev=2.56.0"]
|
||||
git = "https://gitlab.gnome.org/GNOME/librsvg.git"
|
||||
rev = "2.56.0"
|
||||
replace-with = "vendored-sources"
|
||||
|
||||
[source.vendored-sources]
|
||||
directory = "vendor"
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:92e497b9ccc9fb7099546e41a6dada703826371b045e78737b0ab7b26f623626
|
||||
size 931340
|
3
loupe-45.beta.obscpio
Normal file
3
loupe-45.beta.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1b2e996f90a5c42c8bbd4d5b672f6ab8c3444ab13b8e0fd924e564b1e2190eb7
|
||||
size 1113612
|
@ -1,20 +0,0 @@
|
||||
Index: loupe-44.1/meson.build
|
||||
===================================================================
|
||||
--- loupe-44.1.orig/meson.build
|
||||
+++ loupe-44.1/meson.build
|
||||
@@ -8,7 +8,7 @@ project('loupe', 'rust',
|
||||
i18n = import('i18n')
|
||||
gnome = import('gnome')
|
||||
|
||||
-dependency('gtk4', version: '>=4.11.1')
|
||||
+dependency('gtk4', version: '>=4.10')
|
||||
dependency('libadwaita-1', version: '>=1.3.0')
|
||||
dependency('gweather4', version: '>=4.0.0')
|
||||
dependency('libheif', version: '>=1.14.2')
|
||||
@@ -71,4 +71,4 @@ meson.add_dist_script(
|
||||
'build-aux/meson/dist-vendor.sh',
|
||||
join_paths(meson.project_build_root(), 'meson-dist', meson.project_name() + '-' + meson.project_version()),
|
||||
meson.project_source_root()
|
||||
-)
|
||||
\ No newline at end of file
|
||||
+)
|
@ -1,3 +1,47 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 17 19:50:29 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 45.beta:
|
||||
+ Newly designed print dialog
|
||||
+ Added sandboxing for SVG rendering by using glycin
|
||||
+ Use RaisedBorder for HeaderBar to avoid shadow over images
|
||||
+ Fix browsing images on SMB shares not working
|
||||
+ Fix touchscreen gestures not working when zoomed in
|
||||
+ Fix touchscreen swipe only working on second attempt
|
||||
+ Added JpegXL support via new glycin version
|
||||
+ Added overshoot for swipe gesture
|
||||
+ New custom style for drop targets
|
||||
+ Changed name to Image Viewer
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 24 12:33:53 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Add back cargo_audit in _service, now that it is back in working
|
||||
order.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 16 13:39:57 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 45.alpha:
|
||||
+ Add help
|
||||
+ Disable trashing for non-native files
|
||||
+ Give toast for latest deleted file priority over the others
|
||||
+ Only list supported image formats in file chooser
|
||||
+ Do not guess a potentially different background color for
|
||||
opaque images
|
||||
+ Fix incorrect updates when deleting or changing images
|
||||
+ Fix SVG zooming with high-res scroll-wheels
|
||||
+ Use glycin for sandboxed extendable image loading expect for
|
||||
SVG
|
||||
+ Remove backspace as a trash shortcut
|
||||
+ Change command line to open all given images in one window
|
||||
+ Do not show "Set as Background" if operation was aborted
|
||||
+ Let the user select multiple files to open in file chooser
|
||||
+ Support forward and back mouse buttons
|
||||
+ Correctly align right-click menu
|
||||
- Drop loupe-revert-gtk4-unstable-bump.patch: No longer needed.
|
||||
- Add itstool BuildRequires: New dependency.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 28 09:49:06 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: loupe
|
||||
version: 44.2
|
||||
mtime: 1682257341
|
||||
commit: b3c38d427ddb5ee8e9b966de9c39b3f3ee89d871
|
||||
version: 45.beta
|
||||
mtime: 1691327854
|
||||
commit: 10eebcd024ffb1b7de08191fa9f6f866b7682653
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: loupe
|
||||
Version: 44.2
|
||||
Version: 45.beta
|
||||
Release: 0
|
||||
Summary: A simple image viewer application
|
||||
License: GPL-3.0-or-later
|
||||
@ -25,13 +25,11 @@ URL: https://gitlab.gnome.org/GNOME/Incubator/loupe
|
||||
Source: %{name}-%{version}.tar.xz
|
||||
Source2: vendor.tar.zst
|
||||
Source3: cargo_config
|
||||
# PATCH-FIX-OPENSUSE loupe-revert-gtk4-unstable-bump.patch -- Revert bump to unstable gtk4 dep
|
||||
Patch: loupe-revert-gtk4-unstable-bump.patch
|
||||
|
||||
BuildRequires: appstream-glib
|
||||
BuildRequires: cargo-packaging >= 1.2.0+3
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: meson
|
||||
BuildRequires: meson itstool
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: pkgconfig(gtk4) >= 4.10
|
||||
BuildRequires: pkgconfig(gweather4) >= 4.0.0
|
||||
@ -77,6 +75,7 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/org.gnome.Loupe.deskt
|
||||
%{_datadir}/icons/hicolor/scalable/apps/org.gnome.Loupe.svg
|
||||
%{_datadir}/icons/hicolor/symbolic/apps/org.gnome.Loupe-symbolic.svg
|
||||
%{_datadir}/metainfo/org.gnome.Loupe.metainfo.xml
|
||||
%{_datadir}/help/
|
||||
|
||||
%files lang -f %{name}.lang
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2441e91387cc0bd8d7c2843563979711fce3576f27227691d0ad756cad4b6c21
|
||||
size 61847126
|
||||
oid sha256:1ed07bc80ed3d609fe8062f1f0bfcfde7adcdeeaf5df1cd5ba3db834c113957e
|
||||
size 25194087
|
||||
|
Loading…
x
Reference in New Issue
Block a user