Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-shell-extensions for 
openSUSE:Factory checked in at 2022-06-01 17:33:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-shell-extensions (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-shell-extensions.new.1548 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-shell-extensions"

Wed Jun  1 17:33:59 2022 rev:125 rq:980032 version:42.2

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/gnome-shell-extensions/gnome-shell-extensions.changes
    2022-05-17 17:23:57.139144778 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-shell-extensions.new.1548/gnome-shell-extensions.changes
  2022-06-01 17:34:10.562706348 +0200
@@ -1,0 +2,7 @@
+Mon May 30 11:59:47 UTC 2022 - Dominique Leuenberger <dims...@opensuse.org>
+
+- Update to version 42.2:
+  + native-window-placement: Adjust to gnome-shell 42 changes.
+  + window-list: Fix visibility on non-primary monitors.
+
+-------------------------------------------------------------------

Old:
----
  gnome-shell-extensions-42.1.tar.xz

New:
----
  gnome-shell-extensions-42.2.tar.xz

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

Other differences:
------------------
++++++ gnome-shell-extensions.spec ++++++
--- /var/tmp/diff_new_pack.xDdMnU/_old  2022-06-01 17:34:11.098706981 +0200
+++ /var/tmp/diff_new_pack.xDdMnU/_new  2022-06-01 17:34:11.102706986 +0200
@@ -19,7 +19,7 @@
 
 %global __requires_exclude typelib\\(Meta\\)
 Name:           gnome-shell-extensions
-Version:        42.1
+Version:        42.2
 Release:        0
 Summary:        A collection of extensions for GNOME Shell
 License:        GPL-2.0-or-later

++++++ gnome-shell-extensions-42.1.tar.xz -> gnome-shell-extensions-42.2.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-shell-extensions-42.1/NEWS 
new/gnome-shell-extensions-42.2/NEWS
--- old/gnome-shell-extensions-42.1/NEWS        2022-05-06 13:48:14.977066500 
+0200
+++ new/gnome-shell-extensions-42.2/NEWS        2022-05-28 19:47:10.394566800 
+0200
@@ -1,3 +1,14 @@
+42.2
+====
+* native-window-placement: Adjust to gnome-shell 42 changes [Florian; !229]
+* window-list: Fix visibility on non-primary monitors [Jason; !230]
+
+Contributors:
+  Jason Lynch, Florian M??llner
+
+Translators:
+  Cheng-Chia Tseng [zh_TW]
+
 42.1
 ====
 * Misc. bug fixes and cleanups [Florian; !223, !222, !225]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gnome-shell-extensions-42.1/extensions/native-window-placement/extension.js 
new/gnome-shell-extensions-42.2/extensions/native-window-placement/extension.js
--- 
old/gnome-shell-extensions-42.1/extensions/native-window-placement/extension.js 
    2022-05-06 13:48:14.981066500 +0200
+++ 
new/gnome-shell-extensions-42.2/extensions/native-window-placement/extension.js 
    2022-05-28 19:47:10.396566900 +0200
@@ -97,7 +97,7 @@
         let rects = [];
         for (let i = 0; i < clones.length; i++) {
             // save rectangles into 4-dimensional arrays representing two 
corners of the rectangular: [left_x, top_y, right_x, bottom_y]
-            let rect = clones[i].metaWindow.get_frame_rect();
+            let rect = clones[i].boundingBox;
             rects[i] = new Rect(rect.x, rect.y, rect.width, rect.height);
             bounds = bounds.union(rects[i]);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gnome-shell-extensions-42.1/extensions/window-list/extension.js 
new/gnome-shell-extensions-42.2/extensions/window-list/extension.js
--- old/gnome-shell-extensions-42.1/extensions/window-list/extension.js 
2022-05-06 13:48:14.983066600 +0200
+++ new/gnome-shell-extensions-42.2/extensions/window-list/extension.js 
2022-05-28 19:47:10.398567000 +0200
@@ -790,7 +790,7 @@
         });
 
         this._overviewHidingId = Main.overview.connect('hidden', () => {
-            this.visible = !Main.layoutManager.primaryMonitor.inFullscreen;
+            this.visible = !this._monitor.inFullscreen;
             this._updateKeyboardAnchor();
         });
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-shell-extensions-42.1/meson.build 
new/gnome-shell-extensions-42.2/meson.build
--- old/gnome-shell-extensions-42.1/meson.build 2022-05-06 13:48:14.985066700 
+0200
+++ new/gnome-shell-extensions-42.2/meson.build 2022-05-28 19:47:10.399567000 
+0200
@@ -1,5 +1,5 @@
 project('gnome-shell-extensions',
-  version: '42.1',
+  version: '42.2',
   meson_version: '>= 0.53.0',
   license: 'GPL2+'
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-shell-extensions-42.1/po/zh_TW.po 
new/gnome-shell-extensions-42.2/po/zh_TW.po
--- old/gnome-shell-extensions-42.1/po/zh_TW.po 2022-05-06 13:48:14.999066800 
+0200
+++ new/gnome-shell-extensions-42.2/po/zh_TW.po 2022-05-28 19:47:10.409567400 
+0200
@@ -9,30 +9,39 @@
 "Project-Id-Version: gnome-shell-extensions gnome-3-0\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/";
 "issues\n"
-"POT-Creation-Date: 2020-08-12 23:03+0000\n"
-"PO-Revision-Date: 2020-09-22 23:06+0800\n"
+"POT-Creation-Date: 2022-05-06 11:44+0000\n"
+"PO-Revision-Date: 2022-05-12 00:01+0800\n"
 "Last-Translator: Cheng-Chia Tseng <pswo10...@gmail.com>\n"
 "Language-Team: Chinese <zh-l...@linux.org.tw>\n"
 "Language: zh_TW\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 2.4.1\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Poedit 3.0.1\n"
 
 #: data/gnome-classic.desktop.in:3
 msgid "GNOME Classic"
 msgstr "GNOME Classic"
 
-#: data/gnome-classic.desktop.in:4
+#: data/gnome-classic.desktop.in:4 data/gnome-classic-wayland.desktop.in:4
+#: data/gnome-classic-xorg.desktop.in:4
 msgid "This session logs you into GNOME Classic"
 msgstr "?????????????????????????????? GNOME Classic"
 
-#: extensions/apps-menu/extension.js:113
+#: data/gnome-classic-wayland.desktop.in:3
+msgid "GNOME Classic on Wayland"
+msgstr "GNOME Classic ?????? Wayland"
+
+#: data/gnome-classic-xorg.desktop.in:3
+msgid "GNOME Classic on Xorg"
+msgstr "GNOME Classic ?????? Xorg"
+
+#: extensions/apps-menu/extension.js:118
 msgid "Favorites"
-msgstr "??????"
+msgstr "??????"
 
-#: extensions/apps-menu/extension.js:369
+#: extensions/apps-menu/extension.js:379
 msgid "Applications"
 msgstr "????????????"
 
@@ -48,26 +57,26 @@
 "??????????????????????????????????????????????????? id 
(???????????????)??????????????????????????? \";\" ???"
 "???????????????"
 
-#: extensions/auto-move-windows/prefs.js:35
+#: extensions/auto-move-windows/prefs.js:152
 msgid "Workspace Rules"
 msgstr "???????????????"
 
-#: extensions/auto-move-windows/prefs.js:243
+#: extensions/auto-move-windows/prefs.js:306
 msgid "Add Rule"
 msgstr "????????????"
 
 #. TRANSLATORS: %s is the filesystem name
-#: extensions/drive-menu/extension.js:112
-#: extensions/places-menu/placeDisplay.js:233
+#: extensions/drive-menu/extension.js:126
+#: extensions/places-menu/placeDisplay.js:210
 #, javascript-format
 msgid "Ejecting drive ???%s??? failed:"
 msgstr "?????????%s??????????????????"
 
-#: extensions/drive-menu/extension.js:128
+#: extensions/drive-menu/extension.js:145
 msgid "Removable devices"
 msgstr "??????????????????"
 
-#: extensions/drive-menu/extension.js:155
+#: extensions/drive-menu/extension.js:167
 msgid "Open Files"
 msgstr "????????????"
 
@@ -97,31 +106,31 @@
 "???????????????????????????????????????????????????????????????????????? 
Shell ??????????????????????????????"
 "????????????????????????????????????????????? Shell ??????????????????"
 
-#: extensions/places-menu/extension.js:89
-#: extensions/places-menu/extension.js:93
+#: extensions/places-menu/extension.js:94
+#: extensions/places-menu/extension.js:97
 msgid "Places"
 msgstr "??????"
 
-#: extensions/places-menu/placeDisplay.js:46
+#: extensions/places-menu/placeDisplay.js:49
 #, javascript-format
 msgid "Failed to launch ???%s???"
 msgstr "???????????????%s???"
 
-#: extensions/places-menu/placeDisplay.js:61
+#: extensions/places-menu/placeDisplay.js:64
 #, javascript-format
 msgid "Failed to mount volume for ???%s???"
 msgstr "????????????????????????%s???"
 
+#: extensions/places-menu/placeDisplay.js:125
 #: extensions/places-menu/placeDisplay.js:148
-#: extensions/places-menu/placeDisplay.js:171
 msgid "Computer"
 msgstr "??????"
 
-#: extensions/places-menu/placeDisplay.js:359
+#: extensions/places-menu/placeDisplay.js:336
 msgid "Home"
 msgstr "?????????"
 
-#: extensions/places-menu/placeDisplay.js:404
+#: extensions/places-menu/placeDisplay.js:381
 msgid "Browse Network"
 msgstr "????????????"
 
@@ -141,47 +150,47 @@
 msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
 msgstr "???????????????????????? ~/.themes/name/gnome-shell ??????"
 
-#: extensions/window-list/extension.js:98
+#: extensions/window-list/extension.js:72
 msgid "Close"
 msgstr "??????"
 
-#: extensions/window-list/extension.js:118
+#: extensions/window-list/extension.js:92
 msgid "Unminimize"
 msgstr "???????????????"
 
-#: extensions/window-list/extension.js:118
+#: extensions/window-list/extension.js:92
 msgid "Minimize"
 msgstr "?????????"
 
-#: extensions/window-list/extension.js:125
+#: extensions/window-list/extension.js:99
 msgid "Unmaximize"
 msgstr "???????????????"
 
-#: extensions/window-list/extension.js:125
+#: extensions/window-list/extension.js:99
 msgid "Maximize"
 msgstr "?????????"
 
-#: extensions/window-list/extension.js:428
+#: extensions/window-list/extension.js:441
 msgid "Minimize all"
 msgstr "???????????????"
 
-#: extensions/window-list/extension.js:434
+#: extensions/window-list/extension.js:447
 msgid "Unminimize all"
 msgstr "?????????????????????"
 
-#: extensions/window-list/extension.js:440
+#: extensions/window-list/extension.js:453
 msgid "Maximize all"
 msgstr "???????????????"
 
-#: extensions/window-list/extension.js:448
+#: extensions/window-list/extension.js:461
 msgid "Unmaximize all"
 msgstr "?????????????????????"
 
-#: extensions/window-list/extension.js:456
+#: extensions/window-list/extension.js:469
 msgid "Close all"
 msgstr "????????????"
 
-#: extensions/window-list/extension.js:734
+#: extensions/window-list/extension.js:753
 msgid "Window List"
 msgstr "????????????"
 
@@ -197,7 +206,7 @@
 
"??????????????????????????????????????????????????????????????????never?????????auto?????????always??????"
 
 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20
-#: extensions/window-list/prefs.js:100
+#: extensions/window-list/prefs.js:79
 msgid "Show windows from all workspaces"
 msgstr "??????????????????????????????"
 
@@ -215,41 +224,41 @@
 "primary one."
 msgstr 
"????????????????????????????????????????????????????????????????????????????????????"
 
-#: extensions/window-list/prefs.js:29
+#: extensions/window-list/prefs.js:35
 msgid "Window Grouping"
 msgstr "????????????"
 
-#: extensions/window-list/prefs.js:58
+#: extensions/window-list/prefs.js:40
 msgid "Never group windows"
 msgstr "??????????????????"
 
-#: extensions/window-list/prefs.js:59
+#: extensions/window-list/prefs.js:41
 msgid "Group windows when space is limited"
 msgstr "??????????????????????????????"
 
-#: extensions/window-list/prefs.js:60
+#: extensions/window-list/prefs.js:42
 msgid "Always group windows"
 msgstr "??????????????????"
 
-#: extensions/window-list/prefs.js:94
+#: extensions/window-list/prefs.js:66
 msgid "Show on all monitors"
 msgstr "?????????????????????"
 
-#: extensions/window-list/workspaceIndicator.js:207
-#: extensions/workspace-indicator/extension.js:213
+#: extensions/window-list/workspaceIndicator.js:261
+#: extensions/workspace-indicator/extension.js:266
 msgid "Workspace Indicator"
 msgstr "??????????????????"
 
-#: extensions/workspace-indicator/prefs.js:34
-msgid "Workspace Names"
-msgstr "???????????????"
-
-#: extensions/workspace-indicator/prefs.js:67
+#: extensions/workspace-indicator/prefs.js:62
 #, javascript-format
 msgid "Workspace %d"
 msgstr "????????? %d"
 
-#: extensions/workspace-indicator/prefs.js:218
+#: extensions/workspace-indicator/prefs.js:129
+msgid "Workspace Names"
+msgstr "???????????????"
+
+#: extensions/workspace-indicator/prefs.js:255
 msgid "Add Workspace"
 msgstr "???????????????"
 

Reply via email to