Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package sioyek for openSUSE:Factory checked in at 2022-12-05 18:01:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sioyek (Old) and /work/SRC/openSUSE:Factory/.sioyek.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sioyek" Mon Dec 5 18:01:27 2022 rev:2 rq:1040145 version:1.5.0 Changes: -------- --- /work/SRC/openSUSE:Factory/sioyek/sioyek.changes 2022-11-25 13:23:05.043656832 +0100 +++ /work/SRC/openSUSE:Factory/.sioyek.new.1835/sioyek.changes 2022-12-05 18:01:34.904705931 +0100 @@ -1,0 +2,10 @@ +Mon Nov 28 06:26:29 UTC 2022 - Soc Virnyl Estela <[email protected]> + +- Add 0002-improve-xdg-desktop-entry.patch and 0002-fix-desktop-file-error.patch + +------------------------------------------------------------------- +Mon Nov 28 06:17:56 UTC 2022 - Soc Virnyl Estela <[email protected]> + +- Add 0002-improve-desktop-file.patch + +------------------------------------------------------------------- New: ---- 0002-fix-desktop-file-error.patch 0002-improve-desktop-file.patch 0002-improve-xdg-desktop-entry.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sioyek.spec ++++++ --- /var/tmp/diff_new_pack.wdWtsm/_old 2022-12-05 18:01:35.432708806 +0100 +++ /var/tmp/diff_new_pack.wdWtsm/_new 2022-12-05 18:01:35.440708849 +0100 @@ -26,8 +26,11 @@ Source0: https://github.com/ahrm/sioyek/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz Patch0: 0000-mupdf-1.20-compat-issue.patch Patch1: 0001-parse-mupdf-1.20-links.patch -BuildRequires: c++_compiler +Patch2: 0002-improve-xdg-desktop-entry.patch +Patch3: 0002-fix-desktop-file-error.patch +Patch4: 0002-improve-desktop-file.patch BuildRequires: binutils +BuildRequires: c++_compiler BuildRequires: libQt5Gui-devel BuildRequires: libQt5OpenGL-devel BuildRequires: libQt5OpenGLExtensions-devel-static ++++++ 0002-fix-desktop-file-error.patch ++++++ >From b6b86d8f68c0adb072bda0d65aece3cbd5664775 Mon Sep 17 00:00:00 2001 From: ahrm <[email protected]> Date: Sun, 2 Oct 2022 21:03:27 +0330 Subject: [PATCH] Fix an error in desktop file --- resources/sioyek.desktop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/sioyek.desktop b/resources/sioyek.desktop index 9115b520a..737738845 100644 --- a/resources/sioyek.desktop +++ b/resources/sioyek.desktop @@ -7,4 +7,4 @@ Exec=sioyek Icon=sioyek-icon-linux Comment=PDF viewer for reading research papers and technical books Categories=Development;Viewer; -Keywords=pdf;viewer;reader;research +Keywords=pdf;viewer;reader;research; ++++++ 0002-improve-desktop-file.patch ++++++ >From 9351b0b8c81d9c7312c18acaaaddafcd0d43e4e7 Mon Sep 17 00:00:00 2001 From: Raffaele Mancuso <[email protected]> Date: Sun, 9 Oct 2022 11:24:16 +0200 Subject: [PATCH] Improve desktop file TryExec allows the system to check if the executable exists. The %U in Exec is needed for nautilus to pass the file to be opened to sioyek. Otherwise it's not even show in the "Open with" dialog. StartupNotify allow different windows of sioyek to be collected under the same icon in the docker. --- resources/sioyek.desktop | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/resources/sioyek.desktop b/resources/sioyek.desktop index 737738845..917fd62c0 100644 --- a/resources/sioyek.desktop +++ b/resources/sioyek.desktop @@ -1,10 +1,12 @@ [Desktop Entry] -Version=1.0 -Type=Application -MimeType=application/pdf; Name=Sioyek -Exec=sioyek -Icon=sioyek-icon-linux Comment=PDF viewer for reading research papers and technical books -Categories=Development;Viewer; Keywords=pdf;viewer;reader;research; +TryExec=sioyek +Exec=sioyek %U +StartupNotify=true +Terminal=false +Type=Application +Icon=sioyek-icon-linux +Categories=Development;Viewer; +MimeType=application/pdf; ++++++ 0002-improve-xdg-desktop-entry.patch ++++++ >From 58295fe4b70efcf96644f818d1c6656ea05cd311 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas <[email protected]> Date: Thu, 29 Sep 2022 20:28:16 +0800 Subject: [PATCH] Improve XDG desktop entry --- resources/sioyek.desktop | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/sioyek.desktop b/resources/sioyek.desktop index cf8b6b242..9115b520a 100644 --- a/resources/sioyek.desktop +++ b/resources/sioyek.desktop @@ -5,4 +5,6 @@ MimeType=application/pdf; Name=Sioyek Exec=sioyek Icon=sioyek-icon-linux -Categories=Development; +Comment=PDF viewer for reading research papers and technical books +Categories=Development;Viewer; +Keywords=pdf;viewer;reader;research
