Hello community,

here is the log from the commit of package qbittorrent for openSUSE:Factory 
checked in at 2015-07-14 17:45:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qbittorrent (Old)
 and      /work/SRC/openSUSE:Factory/.qbittorrent.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qbittorrent"

Changes:
--------
--- /work/SRC/openSUSE:Factory/qbittorrent/qbittorrent.changes  2015-05-11 
19:49:18.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.qbittorrent.new/qbittorrent.changes     
2015-07-14 17:46:27.000000000 +0200
@@ -1,0 +2,82 @@
+Mon Jul 13 15:27:43 UTC 2015 - [email protected]
+
+- Update to 3.2.1:
+  + FEATURE: Change default preferences.
+  + FEATURE: Add "Add link to torrent" menu in TrayIconMenu
+  + FEATURE: Allow to Open files from the properties pane by
+    pressing "Enter".
+  + FEATURE: Add checkbox option for IpFilterTrackers.
+  + FEATURE: Download-from-URL textbox change focus on tab key.
+  + FEATURE: Increase priority value of "High".
+  + FEATURE: Add 16 KiB, 8 MiB and 16 MiB piece sizes in
+    Torrent Creator.
+  + BUGFIX: Disable Auto piece size when creating a new torrent.
+  + BUGFIX: Set default focus to cancel button in delete confirm
+    dialog.
+  + BUGFIX: Set default focus to ok button in add new torrent dlg.
+  + BUGFIX: Set default focus to no button in exit confirm box.
+  + BUGFIX: Fix Start Minimized checkbox in Options.
+  + BUGFIX: Remove limits on alternative speeds setting.
+  + BUGFIX: Fix sorting torrents by ETA.
+  + BUGFIX: Improve ratio calculation formula.
+  + BUGFIX: Clear missing files flag when resuming or force
+    rechecking.
+  + BUGFIX: Delete tempfile when downloading favicon.ico.
+  + BUGFIX: Don't close downloadFromURL dialog when showing empty
+    url warning.
+  + BUGFIX: Minimize to tray only if the relevant option is enabled.
+  + BUGFIX: Update disk space label after changing partition.
+  + BUGFIX: Don't use a default upload limit.
+  + BUGFIX: Fix Properties bar size when started minimized to tray.
+  + BUGFIX: Fix issue when the theme doesn't have a corresponding
+    icon.
+  + COSMETIC: Change option text "Confirmation on exit when
+    torrents are active".
+  + COSMETIC: Enable to choose dark/light tray icons on all
+    platforms.
+  + COSMETIC: Use AllUppercase for label text.
+  + COSMETIC: Changes in typography.
+  + COSMETIC: Menu revamp.
+  + COSMETIC: Revamp general tab info.
+  + COSMETIC: Better update message for users.
+  + COSMETIC: Fix ugly 'C++' wrapping in About dialog.
+  + WEBUI: Fix login and logout relative URLs.
+  + WEBUI: Fix resumeAll and pauseAll.
+  + WEBUI: Changes in title bar.
+  + WEBUI: Complete translatable strings.
+  + WEBUI: Minor changes in style.
+  + WEBUI: Fix Max connections and Time active in transfer
+    information.
+  + WEBUI: New config - Global maximum number of upload slots.
+  + WEBUI: Display wasted data with friendly units.
+  + WEBUI: add delay in shutdown command in order to send out
+    response message.
+  + WEBUI: Option to hide Top Toolbar.
+  + WEBUI: Reorder the tabs/groups in Options window.
+  + WEBUI: Add new options.
+  + WEBUI: Increase API_VERSION.
+  + WEBUI: Add Web Seeds (HTTP Sources) tab.
+  + WEBUI: Don't update the tabs if tab's panel is collapsed.
+  + WEBUI: Fix alternative global rate limits.
+  + SEARCH: Fix thepiratebay.
+  + SEARCH: Improve torrentz engine to return more results.
+  + SEARCH: Change width of columns in search tab.
+  + SEARCH: Make strings translatable in seach engine.
+  + SEARCH: Aborting search engine process during closure.
+  + SEARCH: Perform searches in parallel.
+  + SEARCH: Add Demonoid search engine.
+  + SEARCH: Minor fixes in search engines.
+  + SEARCH: Show the version of search engines.
+  + SEARCH: Update Legit Torrent to remove sgmllib.
+  + SEARCH: Update KickassTorrents, BTDigg, Torrentz, ExtraTorrent,
+    TorrentReactor.
+  + SEARCH: Fix Python 2 implementation of Torrentz.
+  + SEARCH: Cosmetic changes in search engine.
+  + SEARCH: Fix column sort in search engine.
+  + ATOM/RSS: Update matching Atom/RSS articles while editing rules.
+  + OTHER: Add translator to credits.
+  + OTHER: New translation: Indonesian.
+  + OTHER: Split Chinese locales into Chinese Simplified,
+    Chinese Traditional (Taiwan), Chinese Traditional (Hong Kong).
+
+-------------------------------------------------------------------

Old:
----
  qbittorrent-3.2.0.tar.gz

New:
----
  qbittorrent-3.2.1.tar.gz

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

Other differences:
------------------
++++++ qbittorrent.spec ++++++
--- /var/tmp/diff_new_pack.RCTlwg/_old  2015-07-14 17:46:28.000000000 +0200
+++ /var/tmp/diff_new_pack.RCTlwg/_new  2015-07-14 17:46:28.000000000 +0200
@@ -19,7 +19,7 @@
 
 %define _name   qBittorrent
 Name:           qbittorrent
-Version:        3.2.0
+Version:        3.2.1
 Release:        0
 Summary:        A BitTorrent client in Qt
 License:        GPL-2.0+
@@ -80,22 +80,24 @@
 %setup -q -n %{_name}-release-%{version}
 
 %build
-%if 0%{?suse_version} > 1320
-opts="--enable-systemd --with-qt5"
-%else
-opts="--enable-systemd --with-libtorrent-rasterbar0.16"
-%endif
 aclocal -I m4
 autoconf
 %global _configure ../configure
 for ui in nox gui; do
-    [[ "$ui" == nox ]] && opts_ui="--disable-gui"
+    [[ "$ui" == nox ]] && ui_opt='--disable-gui'
     mkdir $ui
     pushd $ui
-    %configure $opts $opts_ui
+    %configure \
+%if 0%{?suse_version} > 1320
+      --with-qt5                      \
+%else
+      --with-libtorrent-rasterbar0.16 \
+%endif
+      $ui_opt                         \
+      --enable-systemd
     make %{?_smp_mflags}
     popd
-    opts_ui=
+    ui_opt=
 done
 
 %install

++++++ qbittorrent-3.2.0.tar.gz -> qbittorrent-3.2.1.tar.gz ++++++
++++ 218795 lines of diff (skipped)


Reply via email to