forked from pool/gnome-user-share
Accepting request 200952 from GNOME:Factory
Push GNOME 3.10.0 OBS-URL: https://build.opensuse.org/request/show/200952 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnome-user-share?expand=0&rev=44
This commit is contained in:
commit
dcd20315d4
3
gnome-user-share-3.10.0.tar.xz
Normal file
3
gnome-user-share-3.10.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2dbeacab637eede5429521d7796abe40c3e9d3d842b9e5aa45453c54db08f500
|
||||||
|
size 1088672
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a996edfb2c0dfc27d042c796cfdf009b482bed162ae1ae4239245f0f36660656
|
|
||||||
size 1084448
|
|
30
gnome-user-share-downloads-nautilus-crash.patch
Normal file
30
gnome-user-share-downloads-nautilus-crash.patch
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
From 58fa6cff7fd9f4e59d5b1537794b5995b6de5d63 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
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
|
||||||
|
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 24 21:32:18 UTC 2013 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- 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 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 3.10.0:
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 4 19:01:23 UTC 2013 - dimstar@opensuse.org
|
Wed Sep 4 19:01:23 UTC 2013 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
@ -17,13 +17,15 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: gnome-user-share
|
Name: gnome-user-share
|
||||||
Version: 3.9.91
|
Version: 3.10.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: GNOME user file sharing
|
Summary: GNOME user file sharing
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
Group: Productivity/Networking/File-Sharing
|
Group: Productivity/Networking/File-Sharing
|
||||||
Url: http://www.gnome.org/
|
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 dimstar@opensuse.org -- Do not crash nautilus when entering 'Downloads' location
|
||||||
|
Patch0: gnome-user-share-downloads-nautilus-crash.patch
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: intltool
|
BuildRequires: intltool
|
||||||
BuildRequires: translation-update-upstream
|
BuildRequires: translation-update-upstream
|
||||||
@ -61,6 +63,7 @@ The program also allows to share files using ObexFTP over Bluetooth.
|
|||||||
%lang_package
|
%lang_package
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
%patch0 -p1
|
||||||
translation-update-upstream
|
translation-update-upstream
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
Loading…
Reference in New Issue
Block a user