commit kchmviewer for openSUSE:Factory

2018-05-29 Thread root
Hello community,

here is the log from the commit of package kchmviewer for openSUSE:Factory 
checked in at 2018-05-29 10:47:27

Comparing /work/SRC/openSUSE:Factory/kchmviewer (Old)
 and  /work/SRC/openSUSE:Factory/.kchmviewer.new (New)


Package is "kchmviewer"

Tue May 29 10:47:27 2018 rev:35 rq:612407 version:7.7

Changes:

--- /work/SRC/openSUSE:Factory/kchmviewer/kchmviewer.changes2018-01-13 
21:45:20.744512817 +0100
+++ /work/SRC/openSUSE:Factory/.kchmviewer.new/kchmviewer.changes   
2018-05-29 10:47:35.142590428 +0200
@@ -1,0 +2,8 @@
+Fri May 25 21:00:47 UTC 2018 - christo...@krop.fr
+
+- Update to 7.7:
+  * Added a Ctrl-I shortcut which copies the URL of currently opened page.
+  * Minor bugfixes
+- Add fix-build.patch
+
+---

Old:

  kchmviewer-7.5.tar.gz

New:

  fix-build.patch
  kchmviewer-7.7.tar.gz



Other differences:
--
++ kchmviewer.spec ++
--- /var/tmp/diff_new_pack.zrcH3w/_old  2018-05-29 10:47:35.782566814 +0200
+++ /var/tmp/diff_new_pack.zrcH3w/_new  2018-05-29 10:47:35.78657 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kchmviewer
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,23 +17,25 @@
 
 
 Name:   kchmviewer
-BuildRequires:  chmlib-devel
-BuildRequires:  pkgconfig(Qt5DBus)
-BuildRequires:  pkgconfig(Qt5Network)
-BuildRequires:  pkgconfig(Qt5PrintSupport)
-BuildRequires:  pkgconfig(Qt5WebKit)
-BuildRequires:  pkgconfig(Qt5WebKitWidgets)
-BuildRequires:  pkgconfig(Qt5Widgets)
-BuildRequires:  pkgconfig(Qt5Xml)
-BuildRequires:  pkgconfig(libzip)
+Version:7.7
+Release:0
 Summary:KDE CHM Viewer
-License:GPL-3.0
+License:GPL-3.0-only
 Group:  Productivity/Office/Other
-Version:7.5
-Release:0
-Url:http://www.kchmviewer.net/
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source: 
http://downloads.sourceforge.net/%name/%version/%name-%version.tar.gz
+URL:http://www.kchmviewer.net/
+Source: 
http://downloads.sourceforge.net/%{name}/%{version}/%{name}-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE fix-build.patch
+Patch0: fix-build.patch
+BuildRequires:  chmlib-devel
+BuildRequires:  pkgconfig
+BuildRequires:  cmake(Qt5DBus)
+BuildRequires:  cmake(Qt5Network)
+BuildRequires:  cmake(Qt5PrintSupport)
+BuildRequires:  cmake(Qt5WebKit)
+BuildRequires:  cmake(Qt5WebKitWidgets)
+BuildRequires:  cmake(Qt5Widgets)
+BuildRequires:  cmake(Qt5Xml)
+BuildRequires:  pkgconfig(libzip)
 
 %description
 This is a viewer for the CHM files which are used for end user
@@ -41,22 +43,23 @@
 complex searching for large books and has various viewing features.
 
 %prep 
-%setup -q
+%autosetup -p1
 
 %build
 %qmake5
 %make_jobs
 
 %install
-%{__mkdir_p} %{buildroot}%{_bindir}
+mkdir -p %{buildroot}%{_bindir}
 install bin/kchmviewer %{buildroot}%{_bindir}
-%{__mkdir_p} %{buildroot}%{_datadir}/applications
+mkdir -p %{buildroot}%{_datadir}/applications
 install packages/kchmviewer.desktop %{buildroot}%{_datadir}/applications
-%{__mkdir_p} %{buildroot}%{_datadir}/pixmaps
+mkdir -p %{buildroot}%{_datadir}/pixmaps
 install packages/kchmviewer.png %{buildroot}%{_datadir}/pixmaps
 
 %files
-%defattr(-,root,root)
+%license COPYING
+%doc ChangeLog FAQ README
 %{_bindir}/kchmviewer
 %{_datadir}/applications/kchmviewer.desktop
 %{_datadir}/pixmaps/kchmviewer.*

++ fix-build.patch ++
>From 79f02581982773c7d0ab54570a944e35f9e4ecd3 Mon Sep 17 00:00:00 2001
From: Christophe Giboudeaux 
Date: Sat, 26 May 2018 14:34:29 +0200
Subject: [PATCH] Fix build.

---
 src/src.pro | 21 +
 1 file changed, 1 insertion(+), 20 deletions(-)

diff --git a/src/src.pro b/src/src.pro
index ae4222a..fb56346 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -108,30 +108,11 @@ unix:!macx: {
 HEADERS += dbus_interface.h
 SOURCES += dbus_interface.cpp
 CONFIG += dbus
-LIBS += ../lib/libebook/libebook.a
+LIBS += ../lib/libebook/libebook.a -lchm -lzip
 POST_TARGETDEPS += ../lib/libebook/libebook.a
 }
 
-greaterThan(QT_MAJOR_VERSION, 4) {
-# Qt 5
-greaterThan(QT_MINOR_VERSION, 5) {
-# Qt 5.6+
-error("You use Qt5.6+ - QWebEngine is not yet suitable for kchmviewer 
and is not supported")
-QT += webengine webenginewidgets
-DEFINES += USE_WEBENGINE
-SOURCES += viewwindow_webengine.cpp dataprovider_qwebengine.cpp
-HEADERS += dataprovider_qwebengine.h viewwindow_webengine.h
-

commit kchmviewer for openSUSE:Factory

2018-01-13 Thread root
Hello community,

here is the log from the commit of package kchmviewer for openSUSE:Factory 
checked in at 2018-01-13 21:45:20

Comparing /work/SRC/openSUSE:Factory/kchmviewer (Old)
 and  /work/SRC/openSUSE:Factory/.kchmviewer.new (New)


Package is "kchmviewer"

Sat Jan 13 21:45:20 2018 rev:34 rq:559487 version:7.5

Changes:

--- /work/SRC/openSUSE:Factory/kchmviewer/kchmviewer.changes2017-12-18 
08:57:37.436255797 +0100
+++ /work/SRC/openSUSE:Factory/.kchmviewer.new/kchmviewer.changes   
2018-01-13 21:45:20.744512817 +0100
@@ -1,0 +2,25 @@
+Fri Dec 22 14:04:25 UTC 2017 - wba...@tmo.at
+
+- Update to 7.5:
+  * Added more useful information into About window
+  * Fixed EPUB default encoding to be UTF-8
+  * Changed the TOC/Index/Search default click to be single-click, not 
system-specific.
+  * On Windows we do not store the window size if it is minimized or 
maximized; using default size instead.
+- Update to 7.4:
+  * Zoom level is now inherited in newly opened windows
+  * Fixed the empty or stale tab names while using the back/forward navigation 
buttons and new tab options
+  * Added -v and --version command-line options
+  * Added an option (Settings/Browser/Always use single click) to use a 
single-click to open tree items in the contents/index tabs despite the selected 
OS activator such as KDE double-click. Off by default.
+  * Fixed TOC parsing on some CHM files which had TOC names without associated 
URLs.
+  * Disabled encoding selection menu for epubs
+- Update to 7.3:
+  * Fixed Windows-specific issues, Windows build works again
+  * Added X11-specific way to bring the window to front when requested
+  * Added search highlighting suggested by Jomart
+  * Various KDE build fixes
+  * Added an option to disable automatic auto-expansion of Table of Contents 
entries
+  * Fixed the new version check which was triggered on older versions
+  * Fixed Qt5 build, it works fine now
+  * Fixed settings storage on Qt4/Qt5
+
+---

Old:

  kchmviewer-7.2.1.tar.gz

New:

  kchmviewer-7.5.tar.gz



Other differences:
--
++ kchmviewer.spec ++
--- /var/tmp/diff_new_pack.oTyBox/_old  2018-01-13 21:45:21.404482053 +0100
+++ /var/tmp/diff_new_pack.oTyBox/_new  2018-01-13 21:45:21.424481121 +0100
@@ -29,7 +29,7 @@
 Summary:KDE CHM Viewer
 License:GPL-3.0
 Group:  Productivity/Office/Other
-Version:7.2.1
+Version:7.5
 Release:0
 Url:http://www.kchmviewer.net/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -41,7 +41,7 @@
 complex searching for large books and has various viewing features.
 
 %prep 
-%setup -q -n %{name}-7.2
+%setup -q
 
 %build
 %qmake5

++ kchmviewer-7.2.1.tar.gz -> kchmviewer-7.5.tar.gz ++
 2915 lines of diff (skipped)




commit kchmviewer for openSUSE:Factory

2017-12-17 Thread root
Hello community,

here is the log from the commit of package kchmviewer for openSUSE:Factory 
checked in at 2017-12-18 08:57:36

Comparing /work/SRC/openSUSE:Factory/kchmviewer (Old)
 and  /work/SRC/openSUSE:Factory/.kchmviewer.new (New)


Package is "kchmviewer"

Mon Dec 18 08:57:36 2017 rev:33 rq:556918 version:7.2.1

Changes:

--- /work/SRC/openSUSE:Factory/kchmviewer/kchmviewer.changes2016-12-01 
10:26:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.kchmviewer.new/kchmviewer.changes   
2017-12-18 08:57:37.436255797 +0100
@@ -1,0 +2,10 @@
+Thu Dec 14 10:15:11 UTC 2017 - wba...@tmo.at
+
+- Build with Qt5, Qt4's QtWebKit is about to be dropped
+
+---
+Thu Dec  8 19:57:53 UTC 2016 - fab...@ritter-vogt.de
+
+- Revert kde4_runtime_requires change
+
+---



Other differences:
--
++ kchmviewer.spec ++
--- /var/tmp/diff_new_pack.YajbNT/_old  2017-12-18 08:57:38.108223359 +0100
+++ /var/tmp/diff_new_pack.YajbNT/_new  2017-12-18 08:57:38.112223165 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kchmviewer
 #
-# 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
@@ -18,7 +18,13 @@
 
 Name:   kchmviewer
 BuildRequires:  chmlib-devel
-BuildRequires:  libkde4-devel
+BuildRequires:  pkgconfig(Qt5DBus)
+BuildRequires:  pkgconfig(Qt5Network)
+BuildRequires:  pkgconfig(Qt5PrintSupport)
+BuildRequires:  pkgconfig(Qt5WebKit)
+BuildRequires:  pkgconfig(Qt5WebKitWidgets)
+BuildRequires:  pkgconfig(Qt5Widgets)
+BuildRequires:  pkgconfig(Qt5Xml)
 BuildRequires:  pkgconfig(libzip)
 Summary:KDE CHM Viewer
 License:GPL-3.0
@@ -28,7 +34,6 @@
 Url:http://www.kchmviewer.net/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: 
http://downloads.sourceforge.net/%name/%version/%name-%version.tar.gz
-%{?kde4_runtime_requires}
 
 %description
 This is a viewer for the CHM files which are used for end user
@@ -39,22 +44,21 @@
 %setup -q -n %{name}-7.2
 
 %build
-  %cmake_kde4 -d build
-  %make_jobs
+%qmake5
+%make_jobs
 
 %install
-pushd build
-  make DESTDIR=%{buildroot} install
-popd
+%{__mkdir_p} %{buildroot}%{_bindir}
+install bin/kchmviewer %{buildroot}%{_bindir}
+%{__mkdir_p} %{buildroot}%{_datadir}/applications
+install packages/kchmviewer.desktop %{buildroot}%{_datadir}/applications
 %{__mkdir_p} %{buildroot}%{_datadir}/pixmaps
-install src/resources/kchmviewer.png %{buildroot}%{_datadir}/pixmaps
-%kde_post_install
-%find_lang %name
+install packages/kchmviewer.png %{buildroot}%{_datadir}/pixmaps
 
-%files -f %name.lang
+%files
 %defattr(-,root,root)
 %{_bindir}/kchmviewer
-%{_datadir}/applications/kde4/kchmviewer.desktop
+%{_datadir}/applications/kchmviewer.desktop
 %{_datadir}/pixmaps/kchmviewer.*
 
 %changelog




commit kchmviewer for openSUSE:Factory

2016-12-01 Thread h_root
Hello community,

here is the log from the commit of package kchmviewer for openSUSE:Factory 
checked in at 2016-12-01 10:26:51

Comparing /work/SRC/openSUSE:Factory/kchmviewer (Old)
 and  /work/SRC/openSUSE:Factory/.kchmviewer.new (New)


Package is "kchmviewer"

Changes:

--- /work/SRC/openSUSE:Factory/kchmviewer/kchmviewer.changes2015-01-12 
09:50:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.kchmviewer.new/kchmviewer.changes   
2016-12-01 10:26:52.0 +0100
@@ -1,0 +2,6 @@
+Tue Nov 29 07:20:36 UTC 2016 - o...@aepfle.de
+
+- Expand macro kde4_runtime_requires only when its available
+  to fix quilt setup
+
+---



Other differences:
--
++ kchmviewer.spec ++
--- /var/tmp/diff_new_pack.XQchHz/_old  2016-12-01 10:26:53.0 +0100
+++ /var/tmp/diff_new_pack.XQchHz/_new  2016-12-01 10:26:53.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kchmviewer
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -28,7 +28,7 @@
 Url:http://www.kchmviewer.net/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: 
http://downloads.sourceforge.net/%name/%version/%name-%version.tar.gz
-%kde4_runtime_requires
+%{?kde4_runtime_requires}
 
 %description
 This is a viewer for the CHM files which are used for end user




commit kchmviewer for openSUSE:Factory

2015-01-12 Thread h_root
Hello community,

here is the log from the commit of package kchmviewer for openSUSE:Factory 
checked in at 2015-01-12 09:50:10

Comparing /work/SRC/openSUSE:Factory/kchmviewer (Old)
 and  /work/SRC/openSUSE:Factory/.kchmviewer.new (New)


Package is kchmviewer

Changes:

--- /work/SRC/openSUSE:Factory/kchmviewer/kchmviewer.changes2014-10-05 
20:33:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.kchmviewer.new/kchmviewer.changes   
2015-01-12 09:50:20.0 +0100
@@ -1,0 +2,8 @@
+Sun Jan 11 19:08:44 UTC 2015 - mailaen...@opensuse.org
+
+- Update to 7.2.1
+  * Fixed a crash when indexing (in search) certain malformed HTML files.
+  * Fixed parsing CHM files whose filenames contained URL-encoded characters.
+- Remove upstreamed ftbfs.patch
+
+---

Old:

  ftbfs.patch
  kchmviewer-6.1.tar.gz

New:

  kchmviewer-7.2.1.tar.gz



Other differences:
--
++ kchmviewer.spec ++
--- /var/tmp/diff_new_pack.lKzVYU/_old  2015-01-12 09:50:21.0 +0100
+++ /var/tmp/diff_new_pack.lKzVYU/_new  2015-01-12 09:50:21.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kchmviewer
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,16 +19,15 @@
 Name:   kchmviewer
 BuildRequires:  chmlib-devel
 BuildRequires:  libkde4-devel
+BuildRequires:  pkgconfig(libzip)
 Summary:KDE CHM Viewer
 License:GPL-3.0
 Group:  Productivity/Office/Other
-Version:6.1
+Version:7.2.1
 Release:0
 Url:http://www.kchmviewer.net/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: 
http://downloads.sourceforge.net/%name/%version/%name-%version.tar.gz
-# PATCH-FIX-UPSTREAM https://sourceforge.net/p/kchmviewer/bugs/37/
-Patch1: 
https://raw.githubusercontent.com/ckorn/GetDeb/trusty/kchmviewer/patches/ftbfs.patch
 %kde4_runtime_requires
 
 %description
@@ -37,8 +36,7 @@
 complex searching for large books and has various viewing features.
 
 %prep 
-%setup -q -n %{name}-%{version}
-%patch1 -p1
+%setup -q -n %{name}-7.2
 
 %build
   %cmake_kde4 -d build

++ kchmviewer-6.1.tar.gz - kchmviewer-7.2.1.tar.gz ++
 17668 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kchmviewer for openSUSE:Factory

2014-10-05 Thread h_root
Hello community,

here is the log from the commit of package kchmviewer for openSUSE:Factory 
checked in at 2014-10-05 20:32:05

Comparing /work/SRC/openSUSE:Factory/kchmviewer (Old)
 and  /work/SRC/openSUSE:Factory/.kchmviewer.new (New)


Package is kchmviewer

Changes:

--- /work/SRC/openSUSE:Factory/kchmviewer/kchmviewer.changes2012-11-28 
10:35:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.kchmviewer.new/kchmviewer.changes   
2014-10-05 20:33:44.0 +0200
@@ -1,0 +2,18 @@
+Sat Oct  4 16:17:43 UTC 2014 - mailaen...@opensuse.org
+
+- Update to version 6.1
+- Keyboard usability improved thanks to the Giuseppe Cowo Corbelli.
+- The focus is now moved to the content page once the link is clicked, so 
the keyboard navigation is available immediately. You can switch the focus back 
by pressing Ctrl+(1-4).
+- Added extended keyboard shortcuts for FindNext and FindPrevious; F3 
still works.
+- Navigation tab window activation (Contents, Search, Index, Bookmarks) 
now automatically focus the proper element.
+- The items in the navigation page now reacts on onItemActivated, and 
hence act on Return key and follow the DE policy (such as respecting KDE 
single click).
+- Upon successful search, the focus moves to the results list.
+- Titles are now space-trimmed.
+- Fixed binary TOC parser check which led to crashes for some CHM files.
+- Fixed incorrect settings file storage name when the CHM file contains 
multiple dots.
+- Fixed the Ctrl+click and Shift+click when the release event was 
intercepted by other applications (i.e. GoldenDict)
+- 'Esc' closes the search dialog and restores focus in the content window.
+- Use http://en.opensuse.org/SourceUrls
+- Add ftbfs.patch to fix the build.
+
+---

Old:

  kchmviewer-6.0.tar.bz2

New:

  ftbfs.patch
  kchmviewer-6.1.tar.gz



Other differences:
--
++ kchmviewer.spec ++
--- /var/tmp/diff_new_pack.MIzfdQ/_old  2014-10-05 20:33:46.0 +0200
+++ /var/tmp/diff_new_pack.MIzfdQ/_new  2014-10-05 20:33:46.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kchmviewer
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,51 +19,44 @@
 Name:   kchmviewer
 BuildRequires:  chmlib-devel
 BuildRequires:  libkde4-devel
-Summary:KDE chm Viewer (MS Windows Compressed HTML Documents)
+Summary:KDE CHM Viewer
 License:GPL-3.0
 Group:  Productivity/Office/Other
-Version:6.0
+Version:6.1
 Release:0
 Url:http://www.kchmviewer.net/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source: %name-%version.tar.bz2
+Source: 
http://downloads.sourceforge.net/%name/%version/%name-%version.tar.gz
+# PATCH-FIX-UPSTREAM https://sourceforge.net/p/kchmviewer/bugs/37/
+Patch1: 
https://raw.githubusercontent.com/ckorn/GetDeb/trusty/kchmviewer/patches/ftbfs.patch
 %kde4_runtime_requires
 
 %description
-This is a viewer for the chm files known from the MS Windows world. It
-supports complex searching for large books and has various viewing
-features.
-
-
-
-Authors:
-
-t...@krasnogorsk.ru
+This is a viewer for the CHM files which are used for end user
+documentation (MS Windows Compressed HTML Documents). It supports
+complex searching for large books and has various viewing features.
 
 %prep 
 %setup -q -n %{name}-%{version}
+%patch1 -p1
 
 %build
   %cmake_kde4 -d build
   %make_jobs
 
 %install
-  pushd build
+pushd build
   make DESTDIR=%{buildroot} install
-  popd
-  %{__mkdir_p} %{buildroot}%{_datadir}/pixmaps
-  install src/resources/kchmviewer.png %{buildroot}%{_datadir}/pixmaps
-  %suse_update_desktop_file -G Compressed HTML Viewer %name  Office Viewer
-  %kde_post_install
-  %find_lang %name
-
-%clean
-rm -rf $RPM_BUILD_ROOT
+popd
+%{__mkdir_p} %{buildroot}%{_datadir}/pixmaps
+install src/resources/kchmviewer.png %{buildroot}%{_datadir}/pixmaps
+%kde_post_install
+%find_lang %name
 
 %files -f %name.lang
 %defattr(-,root,root)
-/usr/bin/kchmviewer
-/usr/share/applications/kde4/kchmviewer.desktop
-/usr/share/pixmaps/kchmviewer.*
+%{_bindir}/kchmviewer
+%{_datadir}/applications/kde4/kchmviewer.desktop
+%{_datadir}/pixmaps/kchmviewer.*
 
 %changelog

++ ftbfs.patch ++
# file does not exist and is not required
# https://sourceforge.net/p/kchmviewer/bugs/37/
Index: kchmviewer-6.1/src/CMakeLists.txt

commit kchmviewer for openSUSE:Factory

2012-01-27 Thread h_root
Hello community,

here is the log from the commit of package kchmviewer for openSUSE:Factory 
checked in at 2012-01-27 15:18:08

Comparing /work/SRC/openSUSE:Factory/kchmviewer (Old)
 and  /work/SRC/openSUSE:Factory/.kchmviewer.new (New)


Package is kchmviewer, Maintainer is kde-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/kchmviewer/kchmviewer.changes2011-09-23 
02:04:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.kchmviewer.new/kchmviewer.changes   
2012-01-27 15:18:12.0 +0100
@@ -1,0 +2,16 @@
+Mon Jan  9 11:03:18 UTC 2012 - wstephen...@suse.com
+- Update to version 6.0
+  - Removed outdated and buggy QTextBrowser support.
+  - Removed unneeded KHTMLPart support. Only QWebKit is now supported.
+  - Fixed zoom and select all.
+  - Fixed storing scrollbar position.
+  - Added browser options to control JavaScript, Java and HTML5
+features, which now apply to Webkit
+  - Fixed crash on start when the number of recent files was set to zero
+  - Added support for opening the specific page on startup using the
+--url switch
+  - Fixed scrolling at the same page when links are clicked
+  - Fixed the Locate in content tree which was broken for QWebKit
+  - For CHM entries with an URL but no name use the URL as name
+
+---

Old:

  kchmviewer-5.3.tar.bz2

New:

  kchmviewer-6.0.tar.bz2



Other differences:
--
++ kchmviewer.spec ++
--- /var/tmp/diff_new_pack.CViEKp/_old  2012-01-27 15:18:13.0 +0100
+++ /var/tmp/diff_new_pack.CViEKp/_new  2012-01-27 15:18:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kchmviewer
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,17 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   kchmviewer
-BuildRequires:  libkde4-devel
 BuildRequires:  chmlib-devel
+BuildRequires:  libkde4-devel
+Summary:KDE chm Viewer (MS Windows Compressed HTML Documents)
 License:GPL-3.0
 Group:  Productivity/Office/Other
-Summary:KDE chm Viewer (MS Windows Compressed HTML Documents)
-Version:5.3
-Release:1
+Version:6.0
+Release:0
 Url:http://www.kchmviewer.net/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: %name-%version.tar.bz2
@@ -65,9 +62,7 @@
 %files -f %name.lang
 %defattr(-,root,root)
 /usr/bin/kchmviewer
-%_libdir/kde4/kio_msits.so
 /usr/share/applications/kde4/kchmviewer.desktop
 /usr/share/pixmaps/kchmviewer.*
-/usr/share/kde4/services/msits.protocol
 
 %changelog

++ kchmviewer-5.3.tar.bz2 - kchmviewer-6.0.tar.bz2 ++
 4479 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit kchmviewer for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package kchmviewer for openSUSE:Factory 
checked in at 2011-12-06 18:21:07

Comparing /work/SRC/openSUSE:Factory/kchmviewer (Old)
 and  /work/SRC/openSUSE:Factory/.kchmviewer.new (New)


Package is kchmviewer, Maintainer is kde-maintain...@suse.de

Changes:




Other differences:
--
++ kchmviewer.spec ++
--- /var/tmp/diff_new_pack.YTjbF7/_old  2011-12-06 18:36:37.0 +0100
+++ /var/tmp/diff_new_pack.YTjbF7/_new  2011-12-06 18:36:37.0 +0100
@@ -21,7 +21,7 @@
 Name:   kchmviewer
 BuildRequires:  libkde4-devel
 BuildRequires:  chmlib-devel
-License:GPLv3
+License:GPL-3.0
 Group:  Productivity/Office/Other
 Summary:KDE chm Viewer (MS Windows Compressed HTML Documents)
 Version:5.3

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org