Hello community, here is the log from the commit of package zeal for openSUSE:Factory checked in at 2018-01-13 21:44:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/zeal (Old) and /work/SRC/openSUSE:Factory/.zeal.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "zeal" Sat Jan 13 21:44:31 2018 rev:5 rq:557785 version:0.4.0 Changes: -------- --- /work/SRC/openSUSE:Factory/zeal/zeal.changes 2016-10-13 11:32:02.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.zeal.new/zeal.changes 2018-01-13 21:44:35.578618118 +0100 @@ -1,0 +2,47 @@ +Sat Dec 16 18:49:11 UTC 2017 - [email protected] + +- Update to 0.4.0 + - New Features: + - Added optional fuzzy search. (#100). + - Added support for user-defined styles via custom CSS file. + (#268) + - Added support for a basic dark theme (webview only). (#466) + - Added support for high resolution displays. (#111) + - Switched to the CMake build system, support for qmake will be + dropped shortly. + - The minimally required Qt version bumped to 5.5.1. + - As the result of above, libappindicator support is relies on + the built-in Qt implementation. + - Dropped support for Qt WebEngine. + - Removed dependency on Qt Sql by using SQLite directly. + - Windows binaries now bundle the new Qt WebKit, which fixes a + lot of rendering and stability isses. (#359, #723) + - Windows binaries are now 64-bit, and built with MSVC 2015. + + - Improvements: + - New tabs now have the search box automatically focused. (#725) + - Added a Retry button to the error box appearing on docset list + download failure. (#566) + - Updated welcome page style (includes a Carbon ad banner, which + can be disabled in the settings). + + - Fixed Issues: + - Fixed search for one-character terms. (#698) + - Multiple fixes in the search algorithm. (#603, #650, #677) + - Fixed navigation in some docsets. (#641) + - Fixed portable version not saving docset storage path. (609) + - Many rendering and stability issues fixed by switching to the + new Qt WebKit. (#359, #723) + - Fixed MSI installer not removing custom protocol handlers. + (#755) + + - Known Issues: + - Web pages using Fira Sans (e.g., PHP docset) font are rendered + in italic. This is an upstream bug with Qt WebKit (#658) + +- Build fixes + - Added zeal-remove-qt-version.patch to remove Qt version check + from qmake project + - add sqlite3 build depedency + +------------------------------------------------------------------- Old: ---- zeal-0.3.1.tar.gz New: ---- zeal-0.4.0.tar.gz zeal-remove-qt-version.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ zeal.spec ++++++ --- /var/tmp/diff_new_pack.HVIuSu/_old 2018-01-13 21:44:36.150591457 +0100 +++ /var/tmp/diff_new_pack.HVIuSu/_new 2018-01-13 21:44:36.150591457 +0100 @@ -1,7 +1,7 @@ # # spec file for package zeal # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: zeal -Version: 0.3.1 +Version: 0.4.0 Release: 0 Summary: Offline API documentation browser License: GPL-3.0 @@ -26,6 +26,7 @@ Source0: https://github.com/zealdocs/zeal/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz # `help2man zeal > zeal.1` can't be run without X started. Source9: zeal.1 +Patch0: zeal-remove-qt-version.patch BuildRequires: fdupes BuildRequires: hicolor-icon-theme @@ -37,6 +38,7 @@ BuildRequires: pkgconfig(Qt5X11Extras) >= 5.2.0 BuildRequires: pkgconfig(Qt5Xml) >= 5.2.0 BuildRequires: pkgconfig(libarchive) +BuildRequires: pkgconfig(sqlite3) BuildRequires: pkgconfig(xcb-keysyms) Requires: libQt5Sql5-sqlite >= 5.2.0 Requires(post): hicolor-icon-theme @@ -56,6 +58,7 @@ %prep %setup -q +%patch0 -p1 %build %qmake5 ++++++ zeal-0.3.1.tar.gz -> zeal-0.4.0.tar.gz ++++++ ++++ 10482 lines of diff (skipped) ++++++ zeal-remove-qt-version.patch ++++++ Index: b/zeal.pro =================================================================== --- a/zeal.pro +++ b/zeal.pro @@ -4,10 +4,6 @@ # #------------------------------------------------- -lessThan(QT_VERSION, "5.5.1") { - error("Qt 5.5.1 or above is required to build Zeal.") -} - TEMPLATE = subdirs SUBDIRS += \
