Hello community,

here is the log from the commit of package qbittorrent for openSUSE:Factory 
checked in at 2017-04-11 09:46:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qbittorrent (Old)
 and      /work/SRC/openSUSE:Factory/.qbittorrent.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qbittorrent"

Tue Apr 11 09:46:20 2017 rev:53 rq:486363 version:3.3.12

Changes:
--------
--- /work/SRC/openSUSE:Factory/qbittorrent/qbittorrent.changes  2017-03-13 
15:33:49.531376169 +0100
+++ /work/SRC/openSUSE:Factory/.qbittorrent.new/qbittorrent.changes     
2017-04-11 09:46:22.802767170 +0200
@@ -1,0 +2,37 @@
+Fri Apr  7 08:40:50 UTC 2017 - [email protected]
+
+- Update to version 3.3.12
+  * FEATURE: Indicate bitness in stackstrace and about dialog. 
+    Closes #6172. (sledgehammer999)
+  * BUGFIX: Fix incomplete type compile error with Qt4 (Chocobo1)
+  * BUGFIX: Fix compile error: ‘escape’ is not a member of ‘Qt’ 
+    (Chocobo1)
+  * BUGFIX: Use system locale to format dates/time/etc 
+    (sledgehammer999)
+  * BUGFIX: Follow http user-agent format (Chocobo1)
+  * BUGFIX: Fix cancel "Set location" causes files move to 
+    installation dir. (Chocobo1)
+  * WEBUI: Improve performance of updating 'progress' column 
+    (buinsky)
+  * WEBUI: Implement statistics window in web UI 
+    (FranciscoPombal)
+  * WEBUI: fixed "remaining" column in WebUI (FranciscoPombal)
+  * WEBUI: Set HttpOnly attribute to SID cookie (Chocobo1)
+  * WEBUI: Fire up the timer to clean inactive sessions 
+    (Chocobo1)
+  * WEBUI: Set cookie SID value to empty on logout (Chocobo1)
+  * LINUX: Add keywords to the .desktop file. (sledgehammer999)
+  * LINUX: Update stuff in appdata.xml and run 'appstream-utl 
+    upgrade' on it. (sledgehammer999)
+  * OTHER: Replace rand() by a true uniform distribution 
+    generator (Chocobo1)
+  * OTHER: Change our user-agent format as indicated earlier in 
+    the news section (Chocobo1)
+  * OTHER: cmake: fix OSX bundle creation (evsh)
+
+- Refreshed qbittorrent-libtorrent-1.1.1.patch but probably
+  useless at this point
+
+- Dropped qbittorrent-fix_qt4_build.patch (merged upstream)
+
+-------------------------------------------------------------------

Old:
----
  qbittorrent-3.3.11.tar.xz
  qbittorrent-3.3.11.tar.xz.asc
  qbittorrent-fix_qt4_build.patch

New:
----
  qbittorrent-3.3.12.tar.xz
  qbittorrent-3.3.12.tar.xz.asc

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

Other differences:
------------------
++++++ qbittorrent.spec ++++++
--- /var/tmp/diff_new_pack.t3JaSo/_old  2017-04-11 09:46:23.594655305 +0200
+++ /var/tmp/diff_new_pack.t3JaSo/_new  2017-04-11 09:46:23.598654740 +0200
@@ -19,7 +19,7 @@
 
 %define _name   qBittorrent
 Name:           qbittorrent
-Version:        3.3.11
+Version:        3.3.12
 Release:        0
 Summary:        A BitTorrent client in Qt
 License:        GPL-2.0+
@@ -32,8 +32,6 @@
 Patch0:         bittorrent_missing_ppc64le_in_ax_boost_base.m4.patch
 # PATCH-FIX-OPENSUSE qbittorrent-libtorrent-1.1.1.patch -- Fix building with 
libtorrent-rasterbar 1.1.1.
 Patch1:         qbittorrent-libtorrent-1.1.1.patch
-# PATCH-FIX-UPSTREAM qbittorrent-fix_qt4_build.patch -- Fix build with Qt4 
(gh#qbittorrent/qBittorrent#6453)
-Patch2:         qbittorrent-fix_qt4_build.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 %if 0%{?suse_version} > 1325
@@ -89,7 +87,6 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
-%patch2 -p1
 
 %build
 aclocal -I m4

++++++ qbittorrent-3.3.11.tar.xz -> qbittorrent-3.3.12.tar.xz ++++++
++++ 3080 lines of diff (skipped)

++++++ qbittorrent-libtorrent-1.1.1.patch ++++++
--- /var/tmp/diff_new_pack.t3JaSo/_old  2017-04-11 09:46:24.770489203 +0200
+++ /var/tmp/diff_new_pack.t3JaSo/_new  2017-04-11 09:46:24.774488638 +0200
@@ -1,5 +1,7 @@
---- a/src/base/bittorrent/session.cpp
-+++ b/src/base/bittorrent/session.cpp
+Index: qbittorrent-3.3.12/src/base/bittorrent/session.cpp
+===================================================================
+--- qbittorrent-3.3.12.orig/src/base/bittorrent/session.cpp
++++ qbittorrent-3.3.12/src/base/bittorrent/session.cpp
 @@ -45,6 +45,9 @@
  #include <QTimer>
  
@@ -47,14 +49,14 @@
  }
  
  // Session
-@@ -334,7 +367,11 @@ Session::Session(QObject *parent)
+@@ -332,7 +365,11 @@ Session::Session(QObject *parent)
          dispatchAlerts(alertPtr.release());
      });
  #else
 +#if LIBTORRENT_VERSION_NUM < 10102
 +    std::string peerId = makeFingerprint(PEER_ID, VERSION_MAJOR, 
VERSION_MINOR, VERSION_BUGFIX, VERSION_BUILD);
 +#else
-     std::string peerId = libt::generate_fingerprint(PEER_ID, VERSION_MAJOR, 
VERSION_MINOR, VERSION_BUGFIX, VERSION_BUILD);
+     std::string peerId = libt::generate_fingerprint(PEER_ID, 
QBT_VERSION_MAJOR, QBT_VERSION_MINOR, QBT_VERSION_BUGFIX, QBT_VERSION_BUILD);
 +#endif
      libt::settings_pack pack;
      pack.set_int(libt::settings_pack::alert_mask, alertMask);



Reply via email to