Update to 3.31.90
This commit is contained in:
parent
a5a4f99594
commit
931570ac0a
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,3 +5,4 @@
|
|||||||
/gnome-control-center-3.30.1.tar.xz
|
/gnome-control-center-3.30.1.tar.xz
|
||||||
/gnome-control-center-3.30.2.tar.xz
|
/gnome-control-center-3.30.2.tar.xz
|
||||||
/gnome-control-center-3.31.4.tar.xz
|
/gnome-control-center-3.31.4.tar.xz
|
||||||
|
/gnome-control-center-3.31.90.tar.xz
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
From d8a9c8c3526980e576e8d61d033cd983562b07d3 Mon Sep 17 00:00:00 2001
|
From 802ccbfef40c1f4bf1d7200591d3e6c1e7d713b5 Mon Sep 17 00:00:00 2001
|
||||||
From: Benjamin Berg <bberg@redhat.com>
|
From: Benjamin Berg <bberg@redhat.com>
|
||||||
Date: Mon, 1 Oct 2018 20:36:05 +0200
|
Date: Mon, 1 Oct 2018 20:36:05 +0200
|
||||||
Subject: [PATCH] background: Add queue to load 4 pictures at a time
|
Subject: [PATCH] background: Add queue to load 4 pictures at a time
|
||||||
@ -13,7 +13,7 @@ Fixes #191
|
|||||||
1 file changed, 123 insertions(+), 5 deletions(-)
|
1 file changed, 123 insertions(+), 5 deletions(-)
|
||||||
|
|
||||||
diff --git a/panels/background/bg-pictures-source.c b/panels/background/bg-pictures-source.c
|
diff --git a/panels/background/bg-pictures-source.c b/panels/background/bg-pictures-source.c
|
||||||
index a37682d63..2e43ae84a 100644
|
index 714c7f744..e72052ccd 100644
|
||||||
--- a/panels/background/bg-pictures-source.c
|
--- a/panels/background/bg-pictures-source.c
|
||||||
+++ b/panels/background/bg-pictures-source.c
|
+++ b/panels/background/bg-pictures-source.c
|
||||||
@@ -47,12 +47,26 @@ struct _BgPicturesSource
|
@@ -47,12 +47,26 @@ struct _BgPicturesSource
|
||||||
@ -162,7 +162,7 @@ index a37682d63..2e43ae84a 100644
|
|||||||
@@ -264,6 +366,8 @@ picture_scaled (GObject *source_object,
|
@@ -264,6 +366,8 @@ picture_scaled (GObject *source_object,
|
||||||
GINT_TO_POINTER (TRUE));
|
GINT_TO_POINTER (TRUE));
|
||||||
|
|
||||||
g_clear_pointer (&surface, (GDestroyNotify) cairo_surface_destroy);
|
g_clear_pointer (&surface, cairo_surface_destroy);
|
||||||
+
|
+
|
||||||
+ add_processing_finished (bg_source);
|
+ add_processing_finished (bg_source);
|
||||||
}
|
}
|
||||||
@ -206,10 +206,10 @@ index a37682d63..2e43ae84a 100644
|
|||||||
{
|
{
|
||||||
g_autoptr(CcBackgroundItem) item = NULL;
|
g_autoptr(CcBackgroundItem) item = NULL;
|
||||||
CcBackgroundItemFlags flags = 0;
|
CcBackgroundItemFlags flags = 0;
|
||||||
@@ -573,6 +684,11 @@ add_single_file (BgPicturesSource *bg_source,
|
@@ -577,6 +688,11 @@ add_single_file (BgPicturesSource *bg_source,
|
||||||
}
|
}
|
||||||
gtk_tree_path_free (path);
|
gtk_tree_path_free (path);
|
||||||
g_clear_pointer (&surface, (GDestroyNotify) cairo_surface_destroy);
|
g_clear_pointer (&surface, cairo_surface_destroy);
|
||||||
+
|
+
|
||||||
+ /* Async processing is happening. */
|
+ /* Async processing is happening. */
|
||||||
+ if (!retval)
|
+ if (!retval)
|
||||||
@ -218,7 +218,7 @@ index a37682d63..2e43ae84a 100644
|
|||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -955,6 +1071,8 @@ bg_pictures_source_init (BgPicturesSource *self)
|
@@ -959,6 +1075,8 @@ bg_pictures_source_init (BgPicturesSource *self)
|
||||||
(GDestroyNotify) g_free,
|
(GDestroyNotify) g_free,
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
@ -228,5 +228,5 @@ index a37682d63..2e43ae84a 100644
|
|||||||
if (pictures_path == NULL)
|
if (pictures_path == NULL)
|
||||||
pictures_path = g_get_home_dir ();
|
pictures_path = g_get_home_dir ();
|
||||||
--
|
--
|
||||||
2.19.0
|
2.20.1
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
From 275a84e3ec28fc31cdcb97ce33ce6d302b5c5505 Mon Sep 17 00:00:00 2001
|
From 6d4cfd47a2bbeaa5d862c1beb6301cc8a336638e Mon Sep 17 00:00:00 2001
|
||||||
From: Matthias Clasen <mclasen@redhat.com>
|
From: Matthias Clasen <mclasen@redhat.com>
|
||||||
Date: Sun, 31 Mar 2013 20:28:19 -0400
|
Date: Sun, 31 Mar 2013 20:28:19 -0400
|
||||||
Subject: [PATCH] info: Switch around GNOME and distro information
|
Subject: [PATCH] info: Switch around GNOME and distro information
|
||||||
@ -40,13 +40,13 @@ index e2276a295..1055b82e5 100644
|
|||||||
else
|
else
|
||||||
name_version = g_strdup (_("Unknown"));
|
name_version = g_strdup (_("Unknown"));
|
||||||
diff --git a/panels/info/cc-info-overview-panel.ui b/panels/info/cc-info-overview-panel.ui
|
diff --git a/panels/info/cc-info-overview-panel.ui b/panels/info/cc-info-overview-panel.ui
|
||||||
index 219a83c4c..aa87fbec2 100644
|
index ce675d383..a6435cd42 100644
|
||||||
--- a/panels/info/cc-info-overview-panel.ui
|
--- a/panels/info/cc-info-overview-panel.ui
|
||||||
+++ b/panels/info/cc-info-overview-panel.ui
|
+++ b/panels/info/cc-info-overview-panel.ui
|
||||||
@@ -12,13 +12,14 @@
|
@@ -24,13 +24,14 @@
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
<property name="can_focus">False</property>
|
||||||
|
<property name="valign">center</property>
|
||||||
|
<property name="halign">center</property>
|
||||||
- <property name="spacing">18</property>
|
- <property name="spacing">18</property>
|
||||||
+ <property name="spacing">6</property>
|
+ <property name="spacing">6</property>
|
||||||
<property name="orientation">vertical</property>
|
<property name="orientation">vertical</property>
|
||||||
@ -60,7 +60,7 @@ index 219a83c4c..aa87fbec2 100644
|
|||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="expand">False</property>
|
<property name="expand">False</property>
|
||||||
@@ -27,11 +28,12 @@
|
@@ -39,11 +40,12 @@
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@ -74,7 +74,7 @@ index 219a83c4c..aa87fbec2 100644
|
|||||||
<attributes>
|
<attributes>
|
||||||
<attribute name="scale" value="1.25"/>
|
<attribute name="scale" value="1.25"/>
|
||||||
</attributes>
|
</attributes>
|
||||||
@@ -118,8 +120,8 @@
|
@@ -130,8 +132,8 @@
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">False</property>
|
<property name="can_focus">False</property>
|
||||||
<property name="xalign">1</property>
|
<property name="xalign">1</property>
|
||||||
@ -85,7 +85,7 @@ index 219a83c4c..aa87fbec2 100644
|
|||||||
<style>
|
<style>
|
||||||
<class name="dim-label"/>
|
<class name="dim-label"/>
|
||||||
</style>
|
</style>
|
||||||
@@ -228,7 +230,7 @@
|
@@ -243,7 +245,7 @@
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
@ -93,7 +93,7 @@ index 219a83c4c..aa87fbec2 100644
|
|||||||
+ <object class="GtkLabel" id="version_label">
|
+ <object class="GtkLabel" id="version_label">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">False</property>
|
<property name="can_focus">False</property>
|
||||||
<property name="xalign">0</property>
|
<property name="ellipsize">end</property>
|
||||||
--
|
--
|
||||||
2.19.1
|
2.20.1
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
%define gnome_bluetooth_version 3.18.2
|
%define gnome_bluetooth_version 3.18.2
|
||||||
|
|
||||||
Name: gnome-control-center
|
Name: gnome-control-center
|
||||||
Version: 3.31.4
|
Version: 3.31.90
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Utilities to configure the GNOME desktop
|
Summary: Utilities to configure the GNOME desktop
|
||||||
|
|
||||||
License: GPLv2+ and CC-BY-SA
|
License: GPLv2+ and CC-BY-SA
|
||||||
@ -45,6 +45,7 @@ BuildRequires: pkgconfig(goa-1.0) >= %{gnome_online_accounts_version}
|
|||||||
BuildRequires: pkgconfig(goa-backend-1.0)
|
BuildRequires: pkgconfig(goa-backend-1.0)
|
||||||
BuildRequires: pkgconfig(grilo-0.3)
|
BuildRequires: pkgconfig(grilo-0.3)
|
||||||
BuildRequires: pkgconfig(gsettings-desktop-schemas) >= %{gsettings_desktop_schemas_version}
|
BuildRequires: pkgconfig(gsettings-desktop-schemas) >= %{gsettings_desktop_schemas_version}
|
||||||
|
BuildRequires: pkgconfig(gsound)
|
||||||
BuildRequires: pkgconfig(gtk+-3.0) >= %{gtk3_version}
|
BuildRequires: pkgconfig(gtk+-3.0) >= %{gtk3_version}
|
||||||
BuildRequires: pkgconfig(gudev-1.0)
|
BuildRequires: pkgconfig(gudev-1.0)
|
||||||
BuildRequires: pkgconfig(ibus-1.0)
|
BuildRequires: pkgconfig(ibus-1.0)
|
||||||
@ -170,10 +171,8 @@ chrpath --delete $RPM_BUILD_ROOT%{_bindir}/gnome-control-center
|
|||||||
%{_datadir}/dbus-1/services/org.gnome.ControlCenter.service
|
%{_datadir}/dbus-1/services/org.gnome.ControlCenter.service
|
||||||
%{_datadir}/gettext/
|
%{_datadir}/gettext/
|
||||||
%{_datadir}/glib-2.0/schemas/org.gnome.ControlCenter.gschema.xml
|
%{_datadir}/glib-2.0/schemas/org.gnome.ControlCenter.gschema.xml
|
||||||
%{_datadir}/gnome-control-center/icons/
|
|
||||||
%{_datadir}/gnome-control-center/keybindings/*.xml
|
%{_datadir}/gnome-control-center/keybindings/*.xml
|
||||||
%{_datadir}/gnome-control-center/pixmaps
|
%{_datadir}/gnome-control-center/pixmaps
|
||||||
%{_datadir}/gnome-control-center/sounds/gnome-sounds-default.xml
|
|
||||||
%{_datadir}/gnome-shell/search-providers/gnome-control-center-search-provider.ini
|
%{_datadir}/gnome-shell/search-providers/gnome-control-center-search-provider.ini
|
||||||
%{_datadir}/icons/hicolor/*/*/*
|
%{_datadir}/icons/hicolor/*/*/*
|
||||||
%{_datadir}/man/man1/gnome-control-center.1*
|
%{_datadir}/man/man1/gnome-control-center.1*
|
||||||
@ -189,10 +188,12 @@ chrpath --delete $RPM_BUILD_ROOT%{_bindir}/gnome-control-center
|
|||||||
%files filesystem
|
%files filesystem
|
||||||
%dir %{_datadir}/gnome-control-center
|
%dir %{_datadir}/gnome-control-center
|
||||||
%dir %{_datadir}/gnome-control-center/keybindings
|
%dir %{_datadir}/gnome-control-center/keybindings
|
||||||
%dir %{_datadir}/gnome-control-center/sounds
|
|
||||||
%dir %{_datadir}/gnome/wm-properties
|
%dir %{_datadir}/gnome/wm-properties
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Feb 07 2019 Kalev Lember <klember@redhat.com> - 3.31.90-1
|
||||||
|
- Update to 3.31.90
|
||||||
|
|
||||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.31.4-2
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.31.4-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (gnome-control-center-3.31.4.tar.xz) = ee1fe322e736c085c69ae7d7082ee89430393a4ab2de4cf39358a3af9081ae673d528b0f77af3691d8f84155beaa2aaef5377a22af0ebd0d1c6587ed0e33e710
|
SHA512 (gnome-control-center-3.31.90.tar.xz) = 3e61eab8846fdcd961c0ba0171543a1726894a46f1c87126855ef0dae5f990040dfc0baa7fc6f2558ed47110bf6d31192eac2a000f6d7a5c39519f286a3eaa7c
|
||||||
|
Loading…
Reference in New Issue
Block a user