Hello community,

here is the log from the commit of package qimgv for openSUSE:Factory checked 
in at 2019-08-27 10:26:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qimgv (Old)
 and      /work/SRC/openSUSE:Factory/.qimgv.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qimgv"

Tue Aug 27 10:26:01 2019 rev:7 rq:726190 version:0.8.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/qimgv/qimgv.changes      2019-02-01 
11:46:09.308508750 +0100
+++ /work/SRC/openSUSE:Factory/.qimgv.new.7948/qimgv.changes    2019-08-27 
10:26:02.435920476 +0200
@@ -1,0 +2,45 @@
+Mon Aug 26 12:45:36 UTC 2019 - Luigi Baldoni <[email protected]>
+
+- Update to version 0.8.1
+  New stuff:
+  * qimgv will now track changes in the current directory. May
+    not work for remote locations like smb shares.
+  * You can now change sorting mode on-the-fly. It Just Werks.
+  * Add sorting mode combobox in folder view, as well as
+    shortcuts Shift + 1 / 2 / 3.
+  * You can now rename files by pressing F2.
+  * Added sxiv-like info bar at the bottom.
+  * Added info panel that shows exif tags. Press I to toggle.
+  * Copy current file to clipboard by pressing Ctrl+C.
+  * Copy current file path by pressing Ctrl+Shift+C.
+  * Force reload file F5.
+  * Context menu now can be accessed by pressing Menu key.
+  * You can now assign a different shortcut to context menu, it
+    is no longer hardcoded to right click.
+  * You can now assign a shortcut to toggle transparency grid
+    display.
+  * Improve folder view performance.
+  * Improve touchpad scrolling when using libinput driver.
+  * A more polished UI theme. I plan on implementing totally
+    configurable theme via config files, but that is for another
+    release.
+  * Split config file in two parts. The main one will not change
+    every time you open program.
+  Bug fixes:
+  * (important one) Fixed long startup times by moving
+    videoplayer into a separate library that is loaded ondemand.
+    I've seen some complaints about this, please give this
+    version a try.
+  * Fix some issues with mouse event handling.
+  * Fix scaling working incorrectly for webp files.
+  * Fix opening wrong directory when passed . as an argument.
+  * Previously when you used "Open dialog" qimgv would sometimes
+    hang. Now it doesn't do that.
+  * Saving PNG files will no longed produce huge file sizes.
+  Notes:
+  * This release may be a bit buggy as it included quite a bit
+    of refactoring. Stuff will get fixed promptly.
+
+- Added qimgv-nosharedlib.patch
+
+-------------------------------------------------------------------

Old:
----
  qimgv-0.7.3.tar.gz

New:
----
  qimgv-0.8.1.tar.gz
  qimgv-nosharedlib.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ qimgv.spec ++++++
--- /var/tmp/diff_new_pack.dkENjn/_old  2019-08-27 10:26:03.899920368 +0200
+++ /var/tmp/diff_new_pack.dkENjn/_new  2019-08-27 10:26:03.943920364 +0200
@@ -17,28 +17,37 @@
 
 
 Name:           qimgv
-Version:        0.7.3
+Version:        0.8.1
 Release:        0
 Summary:        Qt5 image viewer
 License:        GPL-3.0-only
 Group:          Productivity/Graphics/Viewers
 URL:            https://github.com/easymodo/qimgv
 Source0:        
https://github.com/easymodo/qimgv/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
+# PATCH-FEATURE-OPENSUSE qimgv-nosharedlib.patch # [email protected] build 
helper library statically
+Patch0:         qimgv-nosharedlib.patch
 BuildRequires:  cmake
+%if 0%{?suse_version} > 1500
 BuildRequires:  gcc-c++
+%else
+BuildRequires:  gcc8-c++
+%endif
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(Qt5Concurrent) >= 5.9
 BuildRequires:  pkgconfig(Qt5Widgets) >= 5.9
+BuildRequires:  pkgconfig(exiv2)
 BuildRequires:  pkgconfig(mpv) >= 1.22.0
 
 %description
 Qt5 image viewer with webm support.
 
 %prep
-%setup -q
+%autosetup -p1
 
 %build
+export CXX=g++
+test -x "$(type -p g++-8)" && export CXX=g++-8
 %cmake
 make %{?_smp_mflags}
 

++++++ qimgv-0.7.3.tar.gz -> qimgv-0.8.1.tar.gz ++++++
++++ 54563 lines of diff (skipped)

++++++ qimgv-nosharedlib.patch ++++++
Index: qimgv-0.8.1/qimgv_libs/qimgv_player_mpv/CMakeLists.txt
===================================================================
--- qimgv-0.8.1.orig/qimgv_libs/qimgv_player_mpv/CMakeLists.txt
+++ qimgv-0.8.1/qimgv_libs/qimgv_player_mpv/CMakeLists.txt
@@ -10,7 +10,7 @@ find_package(Qt5Widgets REQUIRED)
 
 include(GNUInstallDirs)
 
-add_library(qimgv_player_mpv SHARED
+add_library(qimgv_player_mpv STATIC
     src/videoplayer.cpp
     src/mpvwidget.cpp
     src/videoplayermpv.cpp)
@@ -25,4 +25,3 @@ target_include_directories(qimgv_player_
 
 add_definitions(-DQIMGV_PLAYER_MPV_LIBRARY)
 
-install(TARGETS qimgv_player_mpv LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})

Reply via email to