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 2021-08-25 20:56:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-shell-extensions (Old)
and /work/SRC/openSUSE:Factory/.gnome-shell-extensions.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-shell-extensions"
Wed Aug 25 20:56:22 2021 rev:114 rq:913698 version:40.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/gnome-shell-extensions/gnome-shell-extensions.changes
2021-08-10 10:28:27.529724904 +0200
+++
/work/SRC/openSUSE:Factory/.gnome-shell-extensions.new.1899/gnome-shell-extensions.changes
2021-08-25 20:56:52.165266649 +0200
@@ -1,0 +2,7 @@
+Thu Aug 19 08:13:48 UTC 2021 - Bj??rn Lie <[email protected]>
+
+- Update to version 40.4:
+ + drive-menu: Fix indicator visibility
+ + Use distinct gettext domain for e.g.o uploads
+
+-------------------------------------------------------------------
Old:
----
gnome-shell-extensions-40.3.tar.xz
New:
----
gnome-shell-extensions-40.4.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gnome-shell-extensions.spec ++++++
--- /var/tmp/diff_new_pack.M0LVOh/_old 2021-08-25 20:56:53.049265488 +0200
+++ /var/tmp/diff_new_pack.M0LVOh/_new 2021-08-25 20:56:53.053265483 +0200
@@ -19,7 +19,7 @@
%global __requires_exclude typelib\\(Meta\\)
Name: gnome-shell-extensions
-Version: 40.3
+Version: 40.4
Release: 0
Summary: A collection of extensions for GNOME Shell
License: GPL-2.0-or-later
++++++ gnome-shell-extensions-40.3.tar.xz -> gnome-shell-extensions-40.4.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/gnome-shell-extensions-40.3/NEWS
new/gnome-shell-extensions-40.4/NEWS
--- old/gnome-shell-extensions-40.3/NEWS 2021-07-12 18:19:01.684019800
+0200
+++ new/gnome-shell-extensions-40.4/NEWS 2021-08-18 01:18:38.598139500
+0200
@@ -1,3 +1,12 @@
+40.4
+====
+* drive-menu: Fix indicator visibility [Florian; !176]
+* Use distinct gettext domain for e.g.o uploads [Florian; #335]
+
+Contributors:
+ Florian M??llner
+
+
40.3
====
* drive-menu: Improve detection of network mounts [Florian; !27]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/gnome-shell-extensions-40.3/export-zips.sh
new/gnome-shell-extensions-40.4/export-zips.sh
--- old/gnome-shell-extensions-40.3/export-zips.sh 2021-07-12
18:19:01.685020000 +0200
+++ new/gnome-shell-extensions-40.4/export-zips.sh 2021-08-18
01:18:38.599139700 +0200
@@ -14,13 +14,16 @@
extensiondir=$installdir/share/gnome-shell/extensions
schemadir=$installdir/share/glib-2.0/schemas
-localedir=$installdir/share/locale
for f in $extensiondir/*; do
name=`basename ${f%%@*}`
[email protected]
schema=$schemadir/org.gnome.shell.extensions.$name.gschema.xml
+ olddomain=gnome-shell-extensions
+ newdomain=gnome-shell-extension-$name
+ sed -i "/gettext-domain/ s:$olddomain:$newdomain:" $f/metadata.json
+
xgettext --from-code=UTF-8 --output-dir=$builddir --output=$name.pot $f/*.js
if [ -f $builddir/$name.pot ]; then
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/gnome-shell-extensions-40.3/extensions/apps-menu/extension.js
new/gnome-shell-extensions-40.4/extensions/apps-menu/extension.js
--- old/gnome-shell-extensions-40.3/extensions/apps-menu/extension.js
2021-07-12 18:19:01.685020000 +0200
+++ new/gnome-shell-extensions-40.4/extensions/apps-menu/extension.js
2021-08-18 01:18:38.600139600 +0200
@@ -12,7 +12,8 @@
const PanelMenu = imports.ui.panelMenu;
const PopupMenu = imports.ui.popupMenu;
-const Gettext = imports.gettext.domain('gnome-shell-extensions');
+const Me = ExtensionUtils.getCurrentExtension();
+const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
const _ = Gettext.gettext;
const appSys = Shell.AppSystem.get_default();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/gnome-shell-extensions-40.3/extensions/auto-move-windows/prefs.js
new/gnome-shell-extensions-40.4/extensions/auto-move-windows/prefs.js
--- old/gnome-shell-extensions-40.3/extensions/auto-move-windows/prefs.js
2021-07-12 18:19:01.686020000 +0200
+++ new/gnome-shell-extensions-40.4/extensions/auto-move-windows/prefs.js
2021-08-18 01:18:38.600139600 +0200
@@ -4,10 +4,11 @@
const { Gio, GLib, GObject, Gtk, Pango } = imports.gi;
-const Gettext = imports.gettext.domain('gnome-shell-extensions');
-const _ = Gettext.gettext;
-
const ExtensionUtils = imports.misc.extensionUtils;
+const Me = ExtensionUtils.getCurrentExtension();
+
+const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
+const _ = Gettext.gettext;
const SETTINGS_KEY = 'application-list';
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/gnome-shell-extensions-40.3/extensions/drive-menu/extension.js
new/gnome-shell-extensions-40.4/extensions/drive-menu/extension.js
--- old/gnome-shell-extensions-40.3/extensions/drive-menu/extension.js
2021-07-12 18:19:01.686020000 +0200
+++ new/gnome-shell-extensions-40.4/extensions/drive-menu/extension.js
2021-08-18 01:18:38.600139600 +0200
@@ -2,15 +2,16 @@
// Drive menu extension
const { Clutter, Gio, GObject, Shell, St } = imports.gi;
-const Gettext = imports.gettext.domain('gnome-shell-extensions');
-const _ = Gettext.gettext;
-
const ExtensionUtils = imports.misc.extensionUtils;
const Main = imports.ui.main;
const PanelMenu = imports.ui.panelMenu;
const PopupMenu = imports.ui.popupMenu;
const ShellMountOperation = imports.ui.shellMountOperation;
+const Me = ExtensionUtils.getCurrentExtension();
+const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
+const _ = Gettext.gettext;
+
var MountMenuItem = GObject.registerClass(
class MountMenuItem extends PopupMenu.PopupBaseMenuItem {
_init(mount) {
@@ -41,6 +42,8 @@
ejectButton.connect('clicked', this._eject.bind(this));
this.add(ejectButton);
+ this.hide();
+
this._changedId = mount.connect('changed',
this._syncVisibility.bind(this));
this._syncVisibility();
}
@@ -155,10 +158,8 @@
this.add_child(icon);
this._monitor = Gio.VolumeMonitor.get();
- this._addedId = this._monitor.connect('mount-added', (monitor, mount)
=> {
- this._addMount(mount);
- this._updateMenuVisibility();
- });
+ this._addedId = this._monitor.connect('mount-added',
+ (monitor, mount) => this._addMount(mount));
this._removedId = this._monitor.connect('mount-removed', (monitor,
mount) => {
this._removeMount(mount);
this._updateMenuVisibility();
@@ -189,6 +190,8 @@
let item = new MountMenuItem(mount);
this._mounts.unshift(item);
this.menu.addMenuItem(item, 0);
+
+ item.connect('notify::visible', () => this._updateMenuVisibility());
}
_removeMount(mount) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/gnome-shell-extensions-40.3/extensions/places-menu/extension.js
new/gnome-shell-extensions-40.4/extensions/places-menu/extension.js
--- old/gnome-shell-extensions-40.3/extensions/places-menu/extension.js
2021-07-12 18:19:01.687019800 +0200
+++ new/gnome-shell-extensions-40.4/extensions/places-menu/extension.js
2021-08-18 01:18:38.601139500 +0200
@@ -8,11 +8,12 @@
const PanelMenu = imports.ui.panelMenu;
const PopupMenu = imports.ui.popupMenu;
-const Gettext = imports.gettext.domain('gnome-shell-extensions');
+const Me = ExtensionUtils.getCurrentExtension();
+
+const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
const _ = Gettext.gettext;
const N_ = x => x;
-const Me = ExtensionUtils.getCurrentExtension();
const PlaceDisplay = Me.imports.placeDisplay;
const PLACE_ICON_SIZE = 16;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/gnome-shell-extensions-40.3/extensions/places-menu/placeDisplay.js
new/gnome-shell-extensions-40.4/extensions/places-menu/placeDisplay.js
--- old/gnome-shell-extensions-40.3/extensions/places-menu/placeDisplay.js
2021-07-12 18:19:01.687019800 +0200
+++ new/gnome-shell-extensions-40.4/extensions/places-menu/placeDisplay.js
2021-08-18 01:18:38.601139500 +0200
@@ -3,10 +3,13 @@
const { Gio, GLib, Shell } = imports.gi;
const Signals = imports.signals;
+const ExtensionUtils = imports.misc.extensionUtils;
const Main = imports.ui.main;
const ShellMountOperation = imports.ui.shellMountOperation;
-const Gettext = imports.gettext.domain('gnome-shell-extensions');
+const Me = ExtensionUtils.getCurrentExtension();
+
+const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
const _ = Gettext.gettext;
const N_ = x => x;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/gnome-shell-extensions-40.3/extensions/window-list/extension.js
new/gnome-shell-extensions-40.4/extensions/window-list/extension.js
--- old/gnome-shell-extensions-40.3/extensions/window-list/extension.js
2021-07-12 18:19:01.689019700 +0200
+++ new/gnome-shell-extensions-40.4/extensions/window-list/extension.js
2021-08-18 01:18:38.602139700 +0200
@@ -11,7 +11,7 @@
const { WindowPicker, WindowPickerToggle } = Me.imports.windowPicker;
const { WorkspaceIndicator } = Me.imports.workspaceIndicator;
-const Gettext = imports.gettext.domain('gnome-shell-extensions');
+const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
const _ = Gettext.gettext;
const ICON_TEXTURE_SIZE = 24;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/gnome-shell-extensions-40.3/extensions/window-list/prefs.js
new/gnome-shell-extensions-40.4/extensions/window-list/prefs.js
--- old/gnome-shell-extensions-40.3/extensions/window-list/prefs.js
2021-07-12 18:19:01.690019800 +0200
+++ new/gnome-shell-extensions-40.4/extensions/window-list/prefs.js
2021-08-18 01:18:38.602139700 +0200
@@ -3,10 +3,11 @@
const { Gio, GObject, Gtk } = imports.gi;
-const Gettext = imports.gettext.domain('gnome-shell-extensions');
-const _ = Gettext.gettext;
-
const ExtensionUtils = imports.misc.extensionUtils;
+const Me = ExtensionUtils.getCurrentExtension();
+
+const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
+const _ = Gettext.gettext;
function init() {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/gnome-shell-extensions-40.3/extensions/window-list/workspaceIndicator.js
new/gnome-shell-extensions-40.4/extensions/window-list/workspaceIndicator.js
---
old/gnome-shell-extensions-40.3/extensions/window-list/workspaceIndicator.js
2021-07-12 18:19:01.690019800 +0200
+++
new/gnome-shell-extensions-40.4/extensions/window-list/workspaceIndicator.js
2021-08-18 01:18:38.602139700 +0200
@@ -2,11 +2,14 @@
const { Clutter, Gio, GObject, Meta, St } = imports.gi;
const DND = imports.ui.dnd;
+const ExtensionUtils = imports.misc.extensionUtils;
const Main = imports.ui.main;
const PanelMenu = imports.ui.panelMenu;
const PopupMenu = imports.ui.popupMenu;
-const Gettext = imports.gettext.domain('gnome-shell-extensions');
+const Me = ExtensionUtils.getCurrentExtension();
+
+const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
const _ = Gettext.gettext;
const TOOLTIP_OFFSET = 6;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/gnome-shell-extensions-40.3/extensions/workspace-indicator/extension.js
new/gnome-shell-extensions-40.4/extensions/workspace-indicator/extension.js
--- old/gnome-shell-extensions-40.3/extensions/workspace-indicator/extension.js
2021-07-12 18:19:01.691019800 +0200
+++ new/gnome-shell-extensions-40.4/extensions/workspace-indicator/extension.js
2021-08-18 01:18:38.602139700 +0200
@@ -9,7 +9,9 @@
const PanelMenu = imports.ui.panelMenu;
const PopupMenu = imports.ui.popupMenu;
-const Gettext = imports.gettext.domain('gnome-shell-extensions');
+const Me = ExtensionUtils.getCurrentExtension();
+
+const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
const _ = Gettext.gettext;
const WORKSPACE_SCHEMA = 'org.gnome.desktop.wm.preferences';
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/gnome-shell-extensions-40.3/extensions/workspace-indicator/prefs.js
new/gnome-shell-extensions-40.4/extensions/workspace-indicator/prefs.js
--- old/gnome-shell-extensions-40.3/extensions/workspace-indicator/prefs.js
2021-07-12 18:19:01.691019800 +0200
+++ new/gnome-shell-extensions-40.4/extensions/workspace-indicator/prefs.js
2021-08-18 01:18:38.603139600 +0200
@@ -3,12 +3,13 @@
const { Gio, GLib, GObject, Gtk, Pango } = imports.gi;
-const Gettext = imports.gettext.domain('gnome-shell-extensions');
+const ExtensionUtils = imports.misc.extensionUtils;
+const Me = ExtensionUtils.getCurrentExtension();
+
+const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
const _ = Gettext.gettext;
const N_ = e => e;
-const ExtensionUtils = imports.misc.extensionUtils;
-
const WORKSPACE_SCHEMA = 'org.gnome.desktop.wm.preferences';
const WORKSPACE_KEY = 'workspace-names';
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/gnome-shell-extensions-40.3/meson.build
new/gnome-shell-extensions-40.4/meson.build
--- old/gnome-shell-extensions-40.3/meson.build 2021-07-12 18:19:01.691019800
+0200
+++ new/gnome-shell-extensions-40.4/meson.build 2021-08-18 01:18:38.603139600
+0200
@@ -1,5 +1,5 @@
project('gnome-shell-extensions',
- version: '40.3',
+ version: '40.4',
meson_version: '>= 0.44.0',
license: 'GPL2+'
)