Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package gnome-shell-extension-pop-shell for
openSUSE:Factory checked in at 2021-07-27 14:32:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-shell-extension-pop-shell (Old)
and /work/SRC/openSUSE:Factory/.gnome-shell-extension-pop-shell.new.1899
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-shell-extension-pop-shell"
Tue Jul 27 14:32:01 2021 rev:3 rq:908413 version:1.2.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/gnome-shell-extension-pop-shell/gnome-shell-extension-pop-shell.changes
2021-03-20 21:26:30.817214463 +0100
+++
/work/SRC/openSUSE:Factory/.gnome-shell-extension-pop-shell.new.1899/gnome-shell-extension-pop-shell.changes
2021-07-27 14:32:16.503471430 +0200
@@ -1,0 +2,8 @@
+Mon Jul 26 12:31:26 UTC 2021 - Marcus Rueckert <[email protected]>
+
+- backport 0143b0b5eb14291cbd9e0b8328eeec93c4871ba9.patch:
+ Fix prefs dialog crashing on Gnome 40
+- drop allow-gnome-40.patch:
+ included in 0143b0b5eb14291cbd9e0b8328eeec93c4871ba9.patch
+
+-------------------------------------------------------------------
Old:
----
allow-gnome-40.patch
New:
----
0143b0b5eb14291cbd9e0b8328eeec93c4871ba9.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gnome-shell-extension-pop-shell.spec ++++++
--- /var/tmp/diff_new_pack.T9Mxxy/_old 2021-07-27 14:32:17.059470880 +0200
+++ /var/tmp/diff_new_pack.T9Mxxy/_new 2021-07-27 14:32:17.059470880 +0200
@@ -28,7 +28,7 @@
URL: https://github.com/pop-os/shell
Source:
https://github.com/pop-os/shell/archive/%{version}.tar.gz#/%{upstream_name}-%{version}.tar.gz
Source1: series
-Patch: allow-gnome-40.patch
+Patch0: 0143b0b5eb14291cbd9e0b8328eeec93c4871ba9.patch
BuildRequires: gnome-shell >= 3.36
BuildRequires: gobject-introspection
BuildRequires: typescript >= 3.8
@@ -55,7 +55,7 @@
worlds.
%prep
-%autosetup -n %{upstream_name}-%{version}
+%autosetup -p1 -n %{upstream_name}-%{version}
%build
%make_build
++++++ 0143b0b5eb14291cbd9e0b8328eeec93c4871ba9.patch ++++++
commit 0143b0b5eb14291cbd9e0b8328eeec93c4871ba9
Author: Mike Wallio <[email protected]>
Date: Tue Mar 16 16:01:34 2021 -0400
feat: Add support for GNOME 40
diff --git a/metadata.json b/metadata.json
index 2d13be6..d877ff0 100644
--- a/metadata.json
+++ b/metadata.json
@@ -5,6 +5,7 @@
"uuid": "[email protected]",
"settings-schema": "org.gnome.shell.extensions.pop-shell",
"shell-version": [
- "3.36"
+ "3.36",
+ "40"
]
}
\ No newline at end of file
diff --git a/src/mod.d.ts b/src/mod.d.ts
index 4e2b67e..96fae99 100644
--- a/src/mod.d.ts
+++ b/src/mod.d.ts
@@ -82,8 +82,8 @@ declare namespace Gtk {
export class Widget {
constructor();
-
- show_all(): void;
+ show_all?: () => void;
+ show(): void;
}
}
diff --git a/src/prefs.ts b/src/prefs.ts
index 15d0b4a..c4793de 100644
--- a/src/prefs.ts
+++ b/src/prefs.ts
@@ -70,7 +70,6 @@ function settings_dialog_view(): [AppWidgets, Gtk.Container] {
let grid = new Gtk.Grid({
column_spacing: 12,
row_spacing: 12,
- border_width: 12
});
let win_label = new Gtk.Label({
@@ -182,6 +181,10 @@ function logging_combo(grid: any, top_index: number) {
// @ts-ignore
function buildPrefsWidget() {
let dialog = settings_dialog_new();
- dialog.show_all();
+ if (dialog.show_all) {
+ dialog.show_all()
+ } else {
+ dialog.show();
+ }
return dialog;
}
++++++ series ++++++
--- /var/tmp/diff_new_pack.T9Mxxy/_old 2021-07-27 14:32:17.091470848 +0200
+++ /var/tmp/diff_new_pack.T9Mxxy/_new 2021-07-27 14:32:17.095470844 +0200
@@ -1 +1 @@
-allow-gnome-40.patch
+0143b0b5eb14291cbd9e0b8328eeec93c4871ba9.patch