Accepting request 1081154 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/1081154 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnome-control-center?expand=0&rev=227
This commit is contained in:
commit
d059b30567
4
_service
4
_service
@ -3,11 +3,11 @@
|
||||
<service name="obs_scm" mode="manual">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://gitlab.gnome.org/GNOME/gnome-control-center.git</param>
|
||||
<param name="revision">3216328d</param>
|
||||
<param name="revision">refs/tags/44.1</param>
|
||||
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
||||
<param name="versionrewrite-pattern">(.*)\+0</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
<!-- <param name="changesgenerate">enable</param> -->
|
||||
</service>
|
||||
<service name="tar" mode="buildtime"/>
|
||||
<service name="recompress" mode="buildtime">
|
||||
|
@ -1,4 +0,0 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://gitlab.gnome.org/GNOME/gnome-control-center.git</param>
|
||||
<param name="changesrevision">3216328db98d0981601c45c36ac6b22f0747d3cc</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a812f784a234237fcc1420fc0984db0092901f165cfb714a694de4539ebe9789
|
||||
size 45768205
|
BIN
gnome-control-center-44.1.obscpio
(Stored with Git LFS)
Normal file
BIN
gnome-control-center-44.1.obscpio
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,28 +0,0 @@
|
||||
From 14b3652289df4f7d1a44c9607a3880916ef74a56 Mon Sep 17 00:00:00 2001
|
||||
From: Jonathan Kang <jonathankang@gnome.org>
|
||||
Date: Wed, 12 Apr 2023 15:19:13 +0800
|
||||
Subject: [PATCH] network/connection-editor: fix crash when removing a
|
||||
connection
|
||||
|
||||
This was caused by commit 6f1567f23.
|
||||
---
|
||||
panels/network/connection-editor/net-connection-editor.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/panels/network/connection-editor/net-connection-editor.c b/panels/network/connection-editor/net-connection-editor.c
|
||||
index bb0c1c96b..297c6607e 100644
|
||||
--- a/panels/network/connection-editor/net-connection-editor.c
|
||||
+++ b/panels/network/connection-editor/net-connection-editor.c
|
||||
@@ -169,8 +169,8 @@ static void page_changed (NetConnectionEditor *self);
|
||||
static void
|
||||
cancel_editing (NetConnectionEditor *self)
|
||||
{
|
||||
- gtk_window_destroy (GTK_WINDOW (self));
|
||||
g_signal_emit (self, signals[DONE], 0, FALSE);
|
||||
+ gtk_window_destroy (GTK_WINDOW (self));
|
||||
}
|
||||
|
||||
static void
|
||||
--
|
||||
2.40.0
|
||||
|
@ -1,3 +1,28 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 21 07:49:24 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 44.1:
|
||||
+ Common:
|
||||
- Update hostname only after apply is clicked.
|
||||
- Add widget name and css class to CcIllustratedRow and
|
||||
CcSplitRow.
|
||||
+ Color: Do not try to access to null pointer in destruction.
|
||||
+ Date & Time: Fix NTP switch getting out of sync.
|
||||
+ Display:
|
||||
- Allow configuring all monitors and apply settings at once.
|
||||
- Disconnect config manager changed handler.
|
||||
- Don't leak config manager proxy.
|
||||
+ Network: Fix crash when removing a connection.
|
||||
+ Region: Fix label of formats for the login screen.
|
||||
+ Sharing: Fix network row visible name bug.
|
||||
+ Shell: Add workaround to make disabled pictures are painted as
|
||||
such.
|
||||
+ Sound:
|
||||
- Prevent duplicate sound device entries.
|
||||
- Revert accidental libgvc downgrade.
|
||||
+ Updated translations.
|
||||
- Drop gnome-control-center-fix-6f1567f23.patch: Fixed upstream.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 13 08:08:26 UTC 2023 - Jonathan Kang <songchuan.kang@suse.com>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: gnome-control-center
|
||||
version: 44.0+20
|
||||
mtime: 1680225030
|
||||
commit: 3216328db98d0981601c45c36ac6b22f0747d3cc
|
||||
version: 44.1
|
||||
mtime: 1682033982
|
||||
commit: da661203820d5766ff10fd7f64d2117470c70a2a
|
||||
|
@ -26,7 +26,7 @@
|
||||
%endif
|
||||
|
||||
Name: gnome-control-center
|
||||
Version: 44.0+20
|
||||
Version: 44.1
|
||||
Release: 0
|
||||
Summary: The GNOME Control Center
|
||||
License: GPL-2.0-or-later
|
||||
@ -37,8 +37,6 @@ Source99: %{name}-rpmlintrc
|
||||
|
||||
# PATCH-FIX-OPENSUSE gnome-control-center-disable-error-message-for-NM.patch bsc#989801 sckang@suse.com -- network: Improve the check for whether NM or wicked is running WAS:PATCH-FIX-OPENSUSE
|
||||
Patch1: gnome-control-center-disable-error-message-for-NM.patch
|
||||
# PATCH-FIX-UPSTREAM gnome-control-center-fix-6f1567f23.patch glgo#GNOME/gnome-control-center/commit/8cb77b4d3, bsc#1210377 sckang@suse.com -- network/connection-editor: fix crash when removing a connection
|
||||
Patch2: gnome-control-center-fix-6f1567f23.patch
|
||||
|
||||
### patches for Leap >= 15 plus SLE >= 15, but not TW
|
||||
# PATCH-FEATURE-SLE gnome-control-center-info-never-use-gnome-software.patch bsc#999336 fezhang@suse.com -- info: Never search for gnome-software as an option when checking for updates on SLE and Leap 42.2, because we use gpk-update-viewer.
|
||||
@ -184,7 +182,6 @@ GNOME control center.
|
||||
%prep
|
||||
%setup -q
|
||||
%patch1 -p1
|
||||
%patch2 -p1
|
||||
|
||||
# patches for Leap >= 15 plus SLE >= 15, but not TW
|
||||
%if 0%{?sle_version} >= 150000
|
||||
|
Loading…
Reference in New Issue
Block a user