Hello community,

here is the log from the commit of package totem for openSUSE:Factory checked 
in at 2018-07-31 15:55:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/totem (Old)
 and      /work/SRC/openSUSE:Factory/.totem.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "totem"

Tue Jul 31 15:55:47 2018 rev:136 rq:625111 version:3.26.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/totem/totem.changes      2018-06-27 
10:17:11.513270321 +0200
+++ /work/SRC/openSUSE:Factory/.totem.new/totem.changes 2018-07-31 
15:55:51.347186402 +0200
@@ -1,0 +2,7 @@
+Tue Jul 24 17:18:06 UTC 2018 - [email protected]
+
+- Update to version 3.26.2:
+  + Fix OpenSubtitles dialogue not opening.
+  + Fix error early in build when vala is not available.
+
+-------------------------------------------------------------------

Old:
----
  totem-3.26.1.tar.xz

New:
----
  totem-3.26.2.tar.xz

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

Other differences:
------------------
++++++ totem.spec ++++++
--- /var/tmp/diff_new_pack.ZBsMDg/_old  2018-07-31 15:55:51.779187132 +0200
+++ /var/tmp/diff_new_pack.ZBsMDg/_new  2018-07-31 15:55:51.779187132 +0200
@@ -18,7 +18,7 @@
 
 %define build_zeitgeist_plugin 0
 Name:           totem
-Version:        3.26.1
+Version:        3.26.2
 Release:        0
 Summary:        Movie Player for the GNOME Desktop
 License:        GPL-2.0-or-later AND LGPL-2.1-or-later

++++++ totem-3.26.1.tar.xz -> totem-3.26.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-3.26.1/NEWS new/totem-3.26.2/NEWS
--- old/totem-3.26.1/NEWS       2018-06-15 13:24:49.000000000 +0200
+++ new/totem-3.26.2/NEWS       2018-07-24 15:29:49.000000000 +0200
@@ -1,5 +1,9 @@
 New features and significant updates in version...
 
+Major changes in 3.26.2:
+- Fix OpenSubtitles dialogue not opening
+- Fix error early in build when vala is not available
+
 Major changes in 3.26.1:
 - Fix crash when properties tab is closed too fast
 - Thumbnail OPUS and M4B audio files
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-3.26.1/meson.build new/totem-3.26.2/meson.build
--- old/totem-3.26.1/meson.build        2018-06-15 13:24:49.000000000 +0200
+++ new/totem-3.26.2/meson.build        2018-07-24 15:29:49.000000000 +0200
@@ -1,6 +1,6 @@
 project(
   'totem', 'c',
-  version: '3.26.1',
+  version: '3.26.2',
   license: 'GPL2+ with exception',
   default_options: 'buildtype=debugoptimized',
   meson_version: '>= 0.43.0'
@@ -214,8 +214,8 @@
 vala_option = get_option('enable-vala')
 if vala_option != 'no'
   if have_gir
+    vala_req_version = '>= 0.14.1'
     if add_languages('vala', required: false)
-      vala_req_version = '>= 0.14.1'
       if meson.get_compiler('vala').version().version_compare(vala_req_version)
         have_vala = true
       endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/totem-3.26.1/src/plugins/opensubtitles/opensubtitles.py 
new/totem-3.26.2/src/plugins/opensubtitles/opensubtitles.py
--- old/totem-3.26.1/src/plugins/opensubtitles/opensubtitles.py 2018-06-15 
13:24:49.000000000 +0200
+++ new/totem-3.26.2/src/plugins/opensubtitles/opensubtitles.py 2018-07-24 
15:29:49.000000000 +0200
@@ -514,7 +514,7 @@
         self._tree_view.connect ('row-activated',
                                self.__on_treeview__row_activate)
 
-    def _show_dialog (self, _):
+    def _show_dialog (self, *_):
         if not self._dialog:
             self._build_dialog ()
 
@@ -656,7 +656,6 @@
             try:
                 subtitle_file = Gio.file_new_for_path (self._movie_dir() +
                         sep + movie_name + '.' + extension)
-                print ('trying to save to ' + subtitle_file.get_uri())
                 suburi = subtitle_file.get_uri ()
 
                 sub_file = subtitle_file.replace ('', False, flags, None)
@@ -665,7 +664,6 @@
             except: # pylint: disable=bare-except
                 subtitle_file = Gio.file_new_for_path (_cache_subtitles_dir() +
                         sep + movie_name + '.' + extension)
-                print ('saving to ' + subtitle_file.get_uri())
                 suburi = subtitle_file.get_uri ()
 
                 sub_file = subtitle_file.replace ('', False, flags, None)


Reply via email to