Hello community,

here is the log from the commit of package gnome-user-share for 
openSUSE:Factory checked in at 2013-09-27 17:30:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-user-share (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-user-share.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-user-share"

Changes:
--------
--- /work/SRC/openSUSE:Factory/gnome-user-share/gnome-user-share.changes        
2013-09-11 11:57:25.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-user-share.new/gnome-user-share.changes   
2013-09-27 17:30:53.000000000 +0200
@@ -1,0 +2,13 @@
+Tue Sep 24 21:32:18 UTC 2013 - [email protected]
+
+- Add gnome-user-share-downloads-nautilus-crash.patch: Do not
+  crash nautilus when entering 'Downloads' location (bnc#841659,
+  bgo#708530, bgo#708456).
+
+-------------------------------------------------------------------
+Tue Sep 24 13:45:59 UTC 2013 - [email protected]
+
+- Update to version 3.10.0:
+  + Updated translations.
+
+-------------------------------------------------------------------

Old:
----
  gnome-user-share-3.9.91.tar.xz

New:
----
  gnome-user-share-3.10.0.tar.xz
  gnome-user-share-downloads-nautilus-crash.patch

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

Other differences:
------------------
++++++ gnome-user-share.spec ++++++
--- /var/tmp/diff_new_pack.XGNGSu/_old  2013-09-27 17:30:54.000000000 +0200
+++ /var/tmp/diff_new_pack.XGNGSu/_new  2013-09-27 17:30:54.000000000 +0200
@@ -17,13 +17,15 @@
 
 
 Name:           gnome-user-share
-Version:        3.9.91
+Version:        3.10.0
 Release:        0
 Summary:        GNOME user file sharing
 License:        GPL-2.0+
 Group:          Productivity/Networking/File-Sharing
 Url:            http://www.gnome.org/
-Source:         
http://download.gnome.org/sources/gnome-user-share/3.9/%{name}-%{version}.tar.xz
+Source:         
http://download.gnome.org/sources/gnome-user-share/3.10/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM gnome-user-share-downloads-nautilus-crash.patch 
bnc#841659 bgo#708530 bgo#708456 [email protected] --  Do not crash nautilus 
when entering 'Downloads' location
+Patch0:         gnome-user-share-downloads-nautilus-crash.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
@@ -61,6 +63,7 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 translation-update-upstream
 
 %build

++++++ gnome-user-share-3.9.91.tar.xz -> gnome-user-share-3.10.0.tar.xz ++++++
++++ 6750 lines of diff (skipped)

++++++ gnome-user-share-downloads-nautilus-crash.patch ++++++
>From 58fa6cff7fd9f4e59d5b1537794b5995b6de5d63 Mon Sep 17 00:00:00 2001
From: Dominique Leuenberger <[email protected]>
Date: Tue, 24 Sep 2013 23:26:04 +0200
Subject: [PATCH] trivial: fix logic error

The bar should become visible if we are EITHER in Downloads OR in
PUBLIC.

Fixes bug 708456, which is about very strange crashes when entering
'Downloads'
---
 src/share-extension.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/share-extension.c b/src/share-extension.c
index c1654d4..bac2ac2 100644
--- a/src/share-extension.c
+++ b/src/share-extension.c
@@ -153,7 +153,7 @@ nautilus_user_share_get_location_widget 
(NautilusLocationWidgetProvider *iface,
        if (enable == FALSE)
                return NULL;
 
-       if (is_dir[0] != FALSE && is_dir[1] != FALSE) {
+       if (is_dir[0] != FALSE || is_dir[1] != FALSE) {
                bar = nautilus_share_bar_new (_("May be used to share or 
receive files"));
        } else if (is_dir[0] != FALSE) {
 #ifndef HAVE_BLUETOOTH
-- 
1.8.4

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to