Hello community,

here is the log from the commit of package corebird for openSUSE:Factory 
checked in at 2015-08-05 06:52:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/corebird (Old)
 and      /work/SRC/openSUSE:Factory/.corebird.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "corebird"

Changes:
--------
--- /work/SRC/openSUSE:Factory/corebird/corebird.changes        2015-06-24 
20:54:58.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.corebird.new/corebird.changes   2015-08-05 
06:52:05.000000000 +0200
@@ -1,0 +2,8 @@
+Mon Aug  3 21:31:46 UTC 2015 - [email protected]
+
+- Update to version 1.0.1:
+  + Fix show-window action parameter.
+  + Fix load lists.
+  + Fix black screen instead of playback with 1.0.
+
+-------------------------------------------------------------------
@@ -49,0 +58 @@
+

Old:
----
  corebird-1.0.tar.gz

New:
----
  corebird-1.0.1.tar.gz

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

Other differences:
------------------
++++++ corebird.spec ++++++
--- /var/tmp/diff_new_pack.LWDaw7/_old  2015-08-05 06:52:06.000000000 +0200
+++ /var/tmp/diff_new_pack.LWDaw7/_new  2015-08-05 06:52:06.000000000 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           corebird
-Version:        1.0
+Version:        1.0.1
 Release:        0
 Summary:        A lightweight Twitter Client
 License:        GPL-3.0+
@@ -35,7 +35,7 @@
 BuildRequires:  pkgconfig(gio-2.0)
 BuildRequires:  pkgconfig(glib-2.0) >= 2.40
 BuildRequires:  pkgconfig(gstreamer-video-1.0)
-BuildRequires:  pkgconfig(gtk+-3.0) >= 3.12
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.14
 BuildRequires:  pkgconfig(json-glib-1.0)
 BuildRequires:  pkgconfig(libnotify)
 BuildRequires:  pkgconfig(libsoup-2.4)

++++++ corebird-1.0.tar.gz -> corebird-1.0.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/corebird-1.0/configure.ac 
new/corebird-1.0.1/configure.ac
--- old/corebird-1.0/configure.ac       2015-03-19 18:38:24.000000000 +0100
+++ new/corebird-1.0.1/configure.ac     2015-07-17 15:15:47.000000000 +0200
@@ -1,4 +1,4 @@
-AC_INIT([corebird],[1.0],[[email protected]])
+AC_INIT([corebird],[1.0.1],[[email protected]])
 AC_CONFIG_MACRO_DIR([m4])
 AM_INIT_AUTOMAKE([foreign no-dist-gzip dist-bzip2])
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/corebird-1.0/src/Corebird.vala 
new/corebird-1.0.1/src/Corebird.vala
--- old/corebird-1.0/src/Corebird.vala  2015-03-19 18:38:24.000000000 +0100
+++ new/corebird-1.0.1/src/Corebird.vala        2015-07-17 15:15:47.000000000 
+0200
@@ -30,7 +30,7 @@
     {"show-about-dialog", about_activated                 },
     {"show-dm-thread",    show_dm_thread,          "(sx)" },
     {"mark-seen",         mark_seen,               "(sx)" },
-    {"show-window",       show_window,             "s"    }
+    {"show-window",       show_window,             "x"    }
   };
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/corebird-1.0/src/main.vala 
new/corebird-1.0.1/src/main.vala
--- old/corebird-1.0/src/main.vala      2015-03-19 18:38:24.000000000 +0100
+++ new/corebird-1.0.1/src/main.vala    2015-07-17 15:15:47.000000000 +0200
@@ -15,9 +15,11 @@
  *  along with corebird.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-
-
 int main (string[] args) {
+#if VIDEO
+  Gst.init (ref args);
+#endif
+
   try {
     //no initialisation of static fields :(
     Settings.init ();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/corebird-1.0/src/widgets/UserListsWidget.vala 
new/corebird-1.0.1/src/widgets/UserListsWidget.vala
--- old/corebird-1.0/src/widgets/UserListsWidget.vala   2015-03-19 
18:38:24.000000000 +0100
+++ new/corebird-1.0.1/src/widgets/UserListsWidget.vala 2015-07-17 
15:15:47.000000000 +0200
@@ -79,6 +79,7 @@
     if (user_id == 0)
       user_id = account.id;
 
+    var collect_obj = new Collect (2);
 
     var call = account.proxy.new_call ();
     call.set_function ("1.1/lists/subscriptions.json");
@@ -97,6 +98,7 @@
         subscribed_list_frame.show ();
         subscribed_list_label.show ();
       }
+      collect_obj.emit ();
     });
 
 
@@ -118,6 +120,11 @@
         user_list_box.show ();
         user_list_frame.show ();
       }
+      collect_obj.emit ();
+    });
+
+    collect_obj.finished.connect (() => {
+      load_lists.callback ();
     });
 
     yield;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/corebird-1.0/ui/about-dialog.ui 
new/corebird-1.0.1/ui/about-dialog.ui
--- old/corebird-1.0/ui/about-dialog.ui 2015-03-19 18:38:24.000000000 +0100
+++ new/corebird-1.0.1/ui/about-dialog.ui       2015-07-17 15:15:47.000000000 
+0200
@@ -6,7 +6,7 @@
     <property name="title" translatable="yes">About Corebird</property>
     <property name="type_hint">dialog</property>
     <property name="program_name">Corebird</property>
-    <property name="version">1.0</property>
+    <property name="version">1.0.1</property>
     <property name="comments" translatable="yes">Using Font Awesome by Dave 
Gandy - http://fontawesome.io</property>
     <property name="website">http://corebird.baedert.org</property>
     <property name="authors">Timm Bäder&lt;[email protected]&gt; (Bugs go here)


Reply via email to