From f3c04997fee49b6b6779e221a27e2764ab310556e8d6f5e338279e719ddc776b Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Tue, 26 Nov 2024 13:02:40 +0000 Subject: [PATCH] - Update to version 47.2: + places-menu: Fix a11y labelling + screenshot-window-sizer: Mention shortcut in description + Misc. bug fixes and cleanups + Updated translations. OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell-extensions?expand=0&rev=297 --- .gitattributes | 23 + .gitignore | 1 + README.SUSE | 5 + _service | 19 + gnome-shell-add-app-to-desktop.patch | 141 ++ gnome-shell-extensions-46.2.obscpio | 3 + gnome-shell-extensions-47.0.obscpio | 3 + gnome-shell-extensions-47.1.obscpio | 3 + gnome-shell-extensions-47.2.obscpio | 3 + gnome-shell-extensions.changes | 2538 ++++++++++++++++++++++++++ gnome-shell-extensions.obsinfo | 4 + gnome-shell-extensions.spec | 197 ++ 12 files changed, 2940 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 README.SUSE create mode 100644 _service create mode 100644 gnome-shell-add-app-to-desktop.patch create mode 100644 gnome-shell-extensions-46.2.obscpio create mode 100644 gnome-shell-extensions-47.0.obscpio create mode 100644 gnome-shell-extensions-47.1.obscpio create mode 100644 gnome-shell-extensions-47.2.obscpio create mode 100644 gnome-shell-extensions.changes create mode 100644 gnome-shell-extensions.obsinfo create mode 100644 gnome-shell-extensions.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/README.SUSE b/README.SUSE new file mode 100644 index 0000000..a2d5b5e --- /dev/null +++ b/README.SUSE @@ -0,0 +1,5 @@ +GNOME Shell extensions are usually not packaged for openSUSE, unless +needed for the default installation. + +It is recommended to install extensions via the extensions website: + https://extensions.gnome.org. diff --git a/_service b/_service new file mode 100644 index 0000000..87e7984 --- /dev/null +++ b/_service @@ -0,0 +1,19 @@ + + + + git + https://gitlab.gnome.org/GNOME/gnome-shell-extensions.git + 47.2 + @PARENT_TAG@+@TAG_OFFSET@ + (.*)\+0 + \1 + + + + + *.tar + zst + + + + diff --git a/gnome-shell-add-app-to-desktop.patch b/gnome-shell-add-app-to-desktop.patch new file mode 100644 index 0000000..147967e --- /dev/null +++ b/gnome-shell-add-app-to-desktop.patch @@ -0,0 +1,141 @@ +Index: gnome-shell-extensions-43.rc/extensions/apps-menu/extension.js +=================================================================== +--- gnome-shell-extensions-43.rc.orig/extensions/apps-menu/extension.js ++++ gnome-shell-extensions-43.rc/extensions/apps-menu/extension.js +@@ -5,6 +5,8 @@ const { + Atk, Clutter, Gio, GLib, GMenu, GObject, Gtk, Meta, Shell, St, + } = imports.gi; + const {EventEmitter} = imports.misc.signals; ++const BoxPointer = imports.ui.boxpointer; ++const AppFavorites = imports.ui.appFavorites; + + const DND = imports.ui.dnd; + const ExtensionUtils = imports.misc.extensionUtils; +@@ -48,8 +50,19 @@ class ApplicationMenuItem extends PopupM + let textureCache = St.TextureCache.get_default(); + let iconThemeChangedId = textureCache.connect('icon-theme-changed', + this._updateIcon.bind(this)); ++ ++ this.actor.connect('button-press-event', this._onButtonPress.bind(this)); ++ this.actor.connect('popup-menu', this._onKeyboardPopupMenu.bind(this)); ++ this._menu = null; ++ this._menuManager = new PopupMenu.PopupMenuManager(this); ++ + this.connect('destroy', () => { + textureCache.disconnect(iconThemeChangedId); ++ if (this._menu) { ++ this._menu.destroy(); ++ this._menu = null; ++ this._menuManager = null; ++ } + }); + this._updateIcon(); + +@@ -64,6 +77,107 @@ class ApplicationMenuItem extends PopupM + }; + } + ++ _onKeyboardPopupMenu() { ++ this.popupMenu(); ++ this._menu.actor.navigate_focus(null, Gtk.DirectionType.TAB_FORWARD, false); ++ } ++ ++ _onButtonPress(actor, event) { ++ // close any opened menu to avoid input focus grab ++ if (this._menu && this._menu.isOpen) { ++ this._menu.close(); ++ return Clutter.EVENT_STOP; ++ } ++ ++ let button = event.get_button(); ++ if (button == 3) { ++ this.popupMenu(); ++ return Clutter.EVENT_STOP; ++ } ++ return Clutter.EVENT_PROPAGATE ++ } ++ ++ popupMenu() { ++ if (!this._menu) { ++ this._menu = new PopupMenu.PopupMenu(this.actor, 0.0, St.Side.TOP, 0); ++ let openItem = new PopupMenu.PopupMenuItem(_("Open")); ++ this._menu.addMenuItem(openItem); ++ openItem.connect('activate', () => { ++ this._menu.destroy(); ++ this._menu = null; ++ this._app.open_new_window(-1); ++ this._button.selectCategory(null, null); ++ this._button.menu.toggle(); ++ }); ++ ++ let sepItem = new PopupMenu.PopupSeparatorMenuItem(); ++ this._menu.addMenuItem(sepItem); ++ ++ let isFavorite = AppFavorites.getAppFavorites().isFavorite(this._app.get_id()); ++ let favText = null; ++ if (isFavorite) ++ favText = _("Remove from Favorites"); ++ else ++ favText = _("Add to Favorites"); ++ ++ let favItem = new PopupMenu.PopupMenuItem(favText); ++ this._menu.addMenuItem(favItem); ++ favItem.connect('activate', () => { ++ let favs = AppFavorites.getAppFavorites(); ++ let isFavorite = favs.isFavorite(this._app.get_id()); ++ if (isFavorite) ++ favs.removeFavorite(this._app.get_id()); ++ else ++ favs.addFavorite(this._app.get_id()); ++ ++ /*As the item text changes, we need to re-generate the menu */ ++ this._menu.destroy(); ++ this._menu = null; ++ ++ this._button.selectCategory(null, null); ++ this._button.menu.toggle(); ++ }); ++ ++ let desktopItem = new PopupMenu.PopupMenuItem(_("Add to Desktop")); ++ this._menu.addMenuItem(desktopItem); ++ desktopItem.connect('activate', () => { ++ let desktopApp = this._app.get_app_info(); ++ let sourcePath = desktopApp.get_filename(); ++ let sourceFile = Gio.File.new_for_path(sourcePath); ++ let destDirPath = GLib.get_user_special_dir(GLib.UserDirectory.DIRECTORY_DESKTOP); ++ let destDir = Gio.File.new_for_path(destDirPath); ++ ++ if (!destDir.query_exists(null)) { ++ destDirPath = Glib.build_filenamev([GLib.get_home_dir(), "Desktop"]); ++ } ++ let destFile = Gio.File.new_for_path(destDirPath + '/' + sourceFile.get_basename()); ++ if (sourceFile.copy(destFile, Gio.FileCopyFlags.OVERWRITE, null, null)) { ++ // In order to make the general monitor recognize the setting of metadata, ++ // this function call should before the setting of unix mode. ++ let info = new Gio.FileInfo(); ++ info.set_attribute_string('metadata::trusted', 'true'); ++ destFile.set_attributes_from_info(info, ++ Gio.FileQueryInfoFlags.NOFOLLOW_SYMLINKS, null); ++ destFile.set_attribute_uint32( Gio.FILE_ATTRIBUTE_UNIX_MODE, parseInt("0755", 8), ++ Gio.FileQueryInfoFlags.NOFOLLOW_SYMLINKS, null); ++ } ++ this._menu.destroy(); ++ this._menu = null; ++ this._button.selectCategory(null, null); ++ this._button.menu.toggle(); ++ }); ++ ++ Main.uiGroup.add_actor(this._menu.actor); ++ ++ this._menuManager.addMenu(this._menu); ++ } ++ ++ this._menu.open(BoxPointer.PopupAnimation.NONE); ++ this._menuManager.ignoreRelease(); ++ ++ return false; ++ } ++ + activate(event) { + this._app.open_new_window(-1); + this._button.selectCategory(null); diff --git a/gnome-shell-extensions-46.2.obscpio b/gnome-shell-extensions-46.2.obscpio new file mode 100644 index 0000000..526a245 --- /dev/null +++ b/gnome-shell-extensions-46.2.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eeca39a287d07b470500f0cba10f9ab6e4a5d5a4df9856e2cee274890d7c7f0 +size 1534988 diff --git a/gnome-shell-extensions-47.0.obscpio b/gnome-shell-extensions-47.0.obscpio new file mode 100644 index 0000000..9e39db6 --- /dev/null +++ b/gnome-shell-extensions-47.0.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d78f2c8fc0a762c6711187995eaad292bdd51f9fc53e7b375fd8d3eb119dfe86 +size 1544204 diff --git a/gnome-shell-extensions-47.1.obscpio b/gnome-shell-extensions-47.1.obscpio new file mode 100644 index 0000000..fd86830 --- /dev/null +++ b/gnome-shell-extensions-47.1.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85fa22d398a0ab340e7d15689f75d0d8b8684574dcdcefa0ac584582c96bee09 +size 1543692 diff --git a/gnome-shell-extensions-47.2.obscpio b/gnome-shell-extensions-47.2.obscpio new file mode 100644 index 0000000..49c7fc3 --- /dev/null +++ b/gnome-shell-extensions-47.2.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79183e43cab847ccf8af72a5604c2b57d3e98a1ee5927785af04d93c82c2b729 +size 1545228 diff --git a/gnome-shell-extensions.changes b/gnome-shell-extensions.changes new file mode 100644 index 0000000..561909b --- /dev/null +++ b/gnome-shell-extensions.changes @@ -0,0 +1,2538 @@ +------------------------------------------------------------------- +Mon Nov 25 20:03:12 UTC 2024 - Bjørn Lie + +- Update to version 47.2: + + places-menu: Fix a11y labelling + + screenshot-window-sizer: Mention shortcut in description + + Misc. bug fixes and cleanups + + Updated translations. + +------------------------------------------------------------------- +Thu Oct 31 08:53:35 UTC 2024 - Bjørn Lie + +- Split out gnome-shell-classic-xsession sub-package. + +------------------------------------------------------------------- +Sat Oct 19 08:54:08 UTC 2024 - Bjørn Lie + +- Update to version 47.1: + + classic: Add missing top-bar indicators + + window-list: + - Fix window state styling + - Fix "ignore-workspace" setting getting reset + + Misc. bug fixes and cleanups + +------------------------------------------------------------------- +Sun Sep 15 06:57:27 UTC 2024 - Bjørn Lie + +- Update to version 47.0: + + Updated translations. + +------------------------------------------------------------------- +Sun Sep 1 13:16:32 UTC 2024 - Bjørn Lie + +- Update to version 47.rc: + + Misc. bug fixes and cleanups. + + Updated translations. +- Changes from version 47.beta: + + window-list: Modernize styling + + Include "status-icons" extension + + Misc. bug fixes and cleanups + + Updated translations. +- Changes from version 47.alpha: + + Improve workspace previews in window-list and + workspace-indicator + + apps-menu: Fix a11y of category labels + + window-list: Fix long-press support + + window-list: Animate transitions + + Misc. bug fixes and cleanups + + Updated translations. +- Build the new status-icons extension. + +------------------------------------------------------------------- +Mon May 27 07:03:29 UTC 2024 - Dominique Leuenberger + +- Update to version 46.2: + + apps-menu: Fix a11y of category labels. + + window-list: Fix long-press support. + + Misc. bug fixes and cleanups. + + Updated translations. + +------------------------------------------------------------------- +Thu May 2 08:07:41 UTC 2024 - Dominique Leuenberger + +- Update to version 46.1: + + screenshot-window-sizer: Add flathub-recommended size. + + Updated translations. + +------------------------------------------------------------------- +Sun Mar 17 09:29:12 UTC 2024 - Dominique Leuenberger + +- Update to version 46.0: + + system-monitor: Fix net speed. + + Misc. bug fixes and cleanups. + + Updated translations. + +------------------------------------------------------------------- +Mon Mar 4 08:33:42 UTC 2024 - Dominique Leuenberger + +- Update to version 46.rc: + + Fix window previews in workspace indicator. + + Fix menu ornament in workspace indicator. + + Misc. bug fixes and cleanups. + + Updated translations. + +------------------------------------------------------------------- +Mon Feb 12 16:36:03 UTC 2024 - Dominique Leuenberger + +- Update to version 46.beta: + + apps-menu: Rename Applications to Apps. + + Misc. bug fixes and cleanups. + +------------------------------------------------------------------- +Tue Jan 16 20:34:46 UTC 2024 - Muhammad Akbar Yanuar Mantari + +- Enable system-monitor extension. + +------------------------------------------------------------------- +Tue Jan 16 13:16:40 UTC 2024 - Dominique Leuenberger + +- Update to version 46.alpha: + + workspace-indicator: Fix initial preview visibility. + + screenshot-window-sizer: Fix cycling between sizes backwards. + + Add back overview in Classic session. + + Allow running Classic session headless. + + window-list: Fix buttons not being clickable at the screen + edge. + + Add system-monitor extension. + + Fixed crash. + + Misc. bug fixes and cleanups. +- Convert to source service for easier updating. + +------------------------------------------------------------------- +Sat Dec 2 20:06:52 UTC 2023 - Bjørn Lie + +- Update to version 45.2: + + window-list: + - Fix buttons not being clickable at the screen edge + - Really fix initial preview visibility + + workspace-indicator: Really fix initial preview visibility + + Misc. bug fixes and cleanups + +------------------------------------------------------------------- +Wed Nov 1 09:47:46 UTC 2023 - Bjørn Lie + +- Update to version 45.1: + + workspace-indicator: Fix initial preview visibility + + screenshot-window-sizer: Fix cycling between sizes backwards + + Misc. bug fixes and cleanups + + Updated translations. + +------------------------------------------------------------------- +Sat Sep 16 22:20:32 UTC 2023 - Bjørn Lie + +- Update to version 45.0: + + Updated translations. + +------------------------------------------------------------------- +Fri Sep 15 11:59:45 UTC 2023 - Bjørn Lie + +- Drop gnome-shell-extension-desktop-icons Requires from the + gnome-shell-classic package, and add a Obsoletes. Upstream have + stagnated since two releases back, and does currently not work. +- Fix a typo in an old Obsoletes. + +------------------------------------------------------------------- +Wed Sep 6 19:31:18 UTC 2023 - Bjørn Lie + +- Update to version 45.rc: + + Misc. bug fixes and cleanups. + + Updated translations. + +------------------------------------------------------------------- +Wed Aug 9 00:50:13 UTC 2023 - Dominique Leuenberger + +- Disable gnome-shell-add-app-to-desktop.patch for now: patch needs + to be rebased. + +------------------------------------------------------------------- +Tue Aug 8 13:48:39 UTC 2023 - Bjørn Lie + +- Update to version 45.beta: + + Port extensions to ESM + + Misc. bug fixes and cleanups + + Updated translations. + +------------------------------------------------------------------- +Sat Jul 15 14:45:42 UTC 2023 - Bjørn Lie + +- Update to version 45.alpha: + + window-list: Modernize default styling + + Replace classic styling with built-in light style + + window-list: Add tooltip for long window titles + + light-style: New extension + + Misc. bug fixes and cleanups + +------------------------------------------------------------------- +Sun Mar 19 12:44:14 UTC 2023 - Bjørn Lie + +- Update to version 44.0: + + Version bump only. + +------------------------------------------------------------------- +Mon Mar 6 18:59:15 UTC 2023 - Bjørn Lie + +- Update to version 44.rc: + + Version bump only. + +------------------------------------------------------------------- +Fri Feb 24 15:16:52 UTC 2023 - Bjørn Lie + +- Update to version 44.beta: + + Tweak menu alignment. + + Updated translations. + +------------------------------------------------------------------- +Fri Nov 4 17:59:30 UTC 2022 - Bjørn Lie + +- Update to version 43.1: + + Fixed crash. + + Misc. bug fixes and cleanups. + + Updated translations. + +------------------------------------------------------------------- +Sun Sep 18 08:21:11 UTC 2022 - Bjørn Lie + +- Update to version 43.0: + + Updated translations. + +------------------------------------------------------------------- +Tue Sep 6 15:36:16 UTC 2022 - Dominique Leuenberger + +- Rebase gnome-shell-add-app-to-desktop.patch. + +------------------------------------------------------------------- +Tue Sep 6 06:28:59 UTC 2022 - Bjørn Lie + +- Update to version 43.rc: + + Misc. bug fixes and cleanups. + +------------------------------------------------------------------- +Wed Aug 10 20:17:54 UTC 2022 - Bjørn Lie + +- Update to version 43.beta: + + Misc. bug fixes and cleanups. + + Updated translations. + +------------------------------------------------------------------- +Wed Aug 3 09:47:05 UTC 2022 - Dominique Leuenberger + +- Update to version 43.alpha: + + Updated translations. + +------------------------------------------------------------------- +Wed Jul 6 12:23:18 UTC 2022 - Dominique Leuenberger + +- Update to version 42.3: + + screenshot-window-sizer: Fix reported sizes on wayland. + + window-list: Improve touch support. + +------------------------------------------------------------------- +Mon May 30 11:59:47 UTC 2022 - Dominique Leuenberger + +- Update to version 42.2: + + native-window-placement: Adjust to gnome-shell 42 changes. + + window-list: Fix visibility on non-primary monitors. + +------------------------------------------------------------------- +Sun May 8 00:20:21 UTC 2022 - Emily Gonyer + +- Update to version 42.1: + + Misc. bug fixes and cleanups. + + Updated translations. + +------------------------------------------------------------------- +Wed Apr 6 06:20:55 UTC 2022 - QK ZHU + +- Deprecate SLE-Classic in GNOME 42: + + Drop 00_org.gnome.shell.extensions.sle-classic.gschema.override + + Drop gse-sle-classic-ext.patch + + Drop sle-classic.desktop + + Drop sle-classic.json + + Drop sle-classic@suse.com.tar.gz + SLE-Classic is not compatible with GNOME 42 which makes this mode + not usable. After careful consideration, we decide to deprecate + SLE-Classic in GNOME 42, please find the reason in (boo#1197907). + + Drop gnome-shell-extensions-restore-classic-css.patch + +------------------------------------------------------------------- +Fri Apr 1 08:04:47 UTC 2022 - QK ZHU + +- Add gnome-shell-extensions-restore-classic-css.patch: the version + of gnome-classic.css in the tarball is wrong, somehow it contains + the CSS file for GNOME42, so restore to the right version by this + patch before the upstream release the new tarball. +- Revert gse-sle-classic-ext.patch to the last revision + (bsc#1197175, glgo#GNOME/gnome-shell-extensions#382). + +------------------------------------------------------------------- +Sun Mar 13 09:22:03 UTC 2022 - Bjørn Lie + +- Update to version 42.0: + + Updated translations. + +------------------------------------------------------------------- +Mon Mar 7 18:34:04 UTC 2022 - Bjørn Lie + +- Update to version 42.rc: + + Misc. bug fixes and cleanups. + + Updated translations. +- Rebase patches with quilt. +- Disable gse-sle-classic-ext.patch: Fails to apply. This means + disabling sle classic desktop variant too. + +------------------------------------------------------------------- +Tue Feb 15 22:33:44 UTC 2022 - Bjørn Lie + +- Update to version 42.beta: + + workspace-indicator: Fix cancelling editing with Esc + + window-list: Update window tracking to avoid missing icons + + Use libadwaita for preferences + + Adapt to Clutter grab API changes + + Misc. bug fixes and cleanups. +- Drop cdaa837d48894737ca0b4e7d2dfb365119e53759.patch: Fixed + upstream. +- Rebase patches with quilt. + +------------------------------------------------------------------- +Tue Feb 15 21:22:23 UTC 2022 - Bjørn Lie + +- Rebase cdaa837d48894737ca0b4e7d2dfb365119e53759.patch: Use + upstream commit. + +------------------------------------------------------------------- +Tue Feb 15 20:22:07 UTC 2022 - Bjørn Lie + +- Update to version 41.2: + + window-list: Update window tracking to avoid missing icons. +- Rebase gse-sle-classic-ext.patch. + +------------------------------------------------------------------- +Thu Feb 3 05:51:27 UTC 2022 - Bjørn Lie + +- Add cdaa837d48894737ca0b4e7d2dfb365119e53759.patch: Fix build + with meson 0.61 and newer. Backported to apply on stable version. + +------------------------------------------------------------------- +Wed Jan 12 10:29:32 UTC 2022 - Dominique Leuenberger + +- Update to version 42.alpha: + + Misc. bug fixes and cleanups. + + Updated translations. + +------------------------------------------------------------------- +Mon Dec 13 16:10:45 UTC 2021 - Bjørn Lie + +- Update to version 41.1: + + native-window-placement: Fix distorted layout in app grid. + + window-list: Fix on-screen keyboard. + + Misc. bug fixes. + + Updated translations. + +------------------------------------------------------------------- +Fri Oct 8 06:51:46 UTC 2021 - Xiaoguang Wang + +- Update sle-classic to version 41 + + Update gse-sle-classic-ext.patch + + Update sle-classic@suse.com.tar.gz + +------------------------------------------------------------------- +Tue Sep 21 19:40:12 UTC 2021 - Michael Gorse + +- Update to version 41.0: + + No changes. + +------------------------------------------------------------------- +Tue Sep 21 07:11:06 UTC 2021 - Dominique Leuenberger + +- Update to version 41.rc.1: + + Fix pre-generating stylesheets in tarball. +- Changes from version 41.rc: + + window-list: Adapt to overview-on-startup. + + apps-menu: Use a custom 'toggle-menu' shortcut. + + Misc. bug fixes and cleanups. + +------------------------------------------------------------------- +Mon Sep 20 19:51:16 UTC 2021 - Stanislav Brabec + +- Remove obsolete translation-update-upstream and + gnome-patch-translation support (jsc#SLE-21105). + +------------------------------------------------------------------- +Thu Sep 2 02:27:21 UTC 2021 - xiaoguang wang + +- Add dependency on gnome-shell-extensions-common for + gnome-shell-classic to fix the translations in SLE Classic and + GNOME Classic(bsc#1190016 jsc#SLE-20311). + +------------------------------------------------------------------- +Tue Aug 24 11:03:03 UTC 2021 - Dominique Leuenberger + +- Update to version 41.beta: + + window-list: Extend reactive area of minimap to screen edges. + + drive-menu: Improve detection of network mounts. + + Misc. bug fixes and cleanups. + +------------------------------------------------------------------- +Thu Aug 19 08:13:48 UTC 2021 - Bjørn Lie + +- Update to version 40.4: + + drive-menu: Fix indicator visibility + + Use distinct gettext domain for e.g.o uploads + +------------------------------------------------------------------- +Tue Jul 13 14:11:02 UTC 2021 - Bjørn Lie + +- Update to version 40.3: + + drive-menu: Improve detection of network mounts. + + Misc. bug fixes. +- Rebase gse-sle-classic-ext.patch. + +------------------------------------------------------------------- +Fri Jun 11 13:58:34 UTC 2021 - Bjørn Lie + +- Update to version 40.2: + + window-list: Extend reactive area of minimap to screen edges. + + Misc. bug fixes. + + Updated translations. + +------------------------------------------------------------------- +Fri May 14 19:20:17 UTC 2021 - Dominique Leuenberger + +- Update to version 40.1: + + Disable welcome dialog in classic session. + + windowsNavigator: Adjust to a late gnome-shell change. + +------------------------------------------------------------------- +Fri Apr 23 14:07:17 UTC 2021 - Michael Gorse + +- Have gnome-shell-classic obsolete gnome-shell-classic-session, + since gnome-shell-classic-session is no longer used. + +------------------------------------------------------------------- +Tue Apr 20 08:27:12 UTC 2021 - Xiaoguang Wang + +- Remove gnome-shell-classic-session package: From the upstream + commit 9a78c7e4, the gnome-classic.session was not used anymore, + we can remove gnome-shell-classic-session package now + (bsc#1184933). + +------------------------------------------------------------------- +Tue Apr 6 02:20:47 UTC 2021 - Xiaoguang Wang + +- Adapt sle-classic to version 40.0 + + Update gse-sle-classic-ext.patch + + Update sle-classic@suse.com.tar.gz + +------------------------------------------------------------------- +Sat Mar 20 16:50:23 UTC 2021 - Dominique Leuenberger + +- Update to version 40.0: + + Updated translations. + +------------------------------------------------------------------- +Fri Mar 19 19:10:56 UTC 2021 - Dominique Leuenberger + +- Move user-theme schema file to user-theme package. + +------------------------------------------------------------------- +Thu Mar 18 13:48:24 UTC 2021 - Dominique Leuenberger + +- Update to version 40.rc: + + native-window-placement: Adjust to gnome-shell changes. + + windows-navigator: Adjust to gnome-shell changes. + + window-list, workspace-indicator: Only show previews for up to + six workspaces. + + window-list, workspace-indicator: Improve workspace preview + appearance. + + Updated translations. + +------------------------------------------------------------------- +Fri Feb 26 13:50:13 UTC 2021 - Dominique Leuenberger + +- Update to version 40.beta: + + Add tooltips to workspace thumbnails. + + Drop arrows from top bar menus. + + drive-menu: Mark mounts that can be unmounted as removable. + + Remove horizontal-workspaces extension. + + Adjust to shell overview changes. + + Fix crashes. + + Misc. bug fixes and cleanups. + + Updated translations. + +------------------------------------------------------------------- +Fri Jan 15 15:27:03 UTC 2021 - Dominique Leuenberger + +- Update to version 40.alpha.1: + + Don't depend on sassc when building from tarball. + + Port extensions preferences to GTK4. + + Misc. bug fixes and cleanups. + +------------------------------------------------------------------- +Thu Dec 3 20:58:59 UTC 2020 - Bjørn Lie + +- Update to version 3.38.2: + + window-list: Honor changes in skip-taskbar property. + + window-list, workspace-indicator: + - Improve previews in workspace thumbs. + - Adjust to 3.38 changes. + + auto-move: Improve behavior on multi-monitor setups. + + windowNavigator: Adjust to 3.38 changes. + + Misc. bug fixes. + +------------------------------------------------------------------- +Fri Oct 30 01:26:33 UTC 2020 - Xiaoguang Wang + +- Update sle-classic@suse.com.tar.gz: Change metadata shell-version + to 3.34 (bsc#1176911). + +------------------------------------------------------------------- +Tue Oct 13 03:07:02 UTC 2020 - Xiaoguang Wang + +- Update file sle-classic.desktop according to the upstream commit + 9a78c7e4. + +------------------------------------------------------------------- +Thu Oct 8 03:38:01 UTC 2020 - dimstar@opensuse.org + +- Update to version 3.38.1: + + Updated translations. + +------------------------------------------------------------------- +Thu Oct 8 03:38:00 UTC 2020 - dimstar@opensuse.org + +- Update to version 3.38.0: + + Updated translations. + +------------------------------------------------------------------- +Wed Oct 7 19:05:36 UTC 2020 - Bjørn Lie + +- Update to version 3.36.7: + + Update sass submodule. + +------------------------------------------------------------------- +Thu Sep 10 02:08:23 UTC 2020 - Xiaoguang Wang + +- Move branding image file to branding-SLE package + (jsc#SLE-11720 bsc#1176304). + + Remove sle-classic-lock-screen-background.patch + + Remove SLE-theme.tar.gz + +------------------------------------------------------------------- +Mon Sep 7 07:38:24 UTC 2020 - dimstar@opensuse.org + +- Update to version 3.37.92: + + Updated translations. + +------------------------------------------------------------------- +Sat Sep 5 15:12:18 UTC 2020 - dimstar@opensuse.org + +- Update to version 3.37.91: + + Updated translations. +- Changes from version 3.37.90: + + Misc. bug fixes and cleanups. +- Changes from version 3.37.3: + + window-list, native-window-placement: Adjust to shell changes. +- Changes from version 3.37.2: + + window-list, auto-move: Modernize preference dialogs. + + Adjust to gnome-shell changes. +- Changes from version 3.37.1: + + drive-menu: Emphasize eject buttons. + + user-theme: Add preference dialog> + + window-list: Fix inconsistent state in preference dialog. + + workspace-indicator: Overhaul preference dialog. + + user-theme: Support session mode styles. + + Misc. bug fixes and cleanups. + + Updated translations. +- Drop gnome-classic-s390-not-require-g-s-d_wacom.patch and + gnome-shell-extensions-remove-gsd-XSettings.patch: no longer + applicable. + +------------------------------------------------------------------- +Thu Aug 13 21:48:09 UTC 2020 - Bjørn Lie + +- Update to version 3.36.3: + + Updated translations. + +------------------------------------------------------------------- +Mon Jul 13 02:17:42 UTC 2020 - Xiaoguang Wang + +- Update gnome-shell-extensions.spec: Replace is_opensuse with + sle_version (jsc#SLE-11720). + +------------------------------------------------------------------- +Tue May 12 07:16:00 UTC 2020 - Xiaoguang Wang + +- Update gnome-classic-s390-not-require-g-s-d_wacom.patch: Solve + conflict with gnome-shell-extensions-remove-gsd-XSettings.patch + (bsc#1171485). + +------------------------------------------------------------------- +Thu Apr 30 05:26:25 UTC 2020 - Bjørn Lie + +- Update to version 3.36.2: + + Misc. bug fixes and cleanups. + + Updated translations. + +------------------------------------------------------------------- +Wed Apr 29 03:43:20 UTC 2020 - Xiaoguang Wang + +- Update gnome-shell-add-app-to-desktop.patch: Remove error in + journal log(bsc#1170761). + +------------------------------------------------------------------- +Fri Apr 17 03:36:01 UTC 2020 - Bjørn Lie + +- Update to version 3.36.1: + + Updated translations. + +------------------------------------------------------------------- +Fri Apr 17 03:36:00 UTC 2020 - Bjørn Lie + +- Update to version 3.36.0: + + Update sass submodule. + + build: Switch to js68 for tests. + +------------------------------------------------------------------- +Fri Apr 17 03:35:55 UTC 2020 - xiaoguang wang + +- Adapt sle-classic to 3.35.92: + + Update gse-sle-classic-ext.patch + + Update sle-classic@suse.com.tar.gz + +------------------------------------------------------------------- +Fri Apr 17 03:35:54 UTC 2020 - bjorn.lie@gmail.com + +- Update to version 3.35.92: + + Update sass submodule. + +------------------------------------------------------------------- +Fri Apr 17 03:35:53 UTC 2020 - Dominique Leuenberger + +- Build extension-user-theme as noarch: there is nothing arch + dependant in this package. + +------------------------------------------------------------------- +Fri Apr 17 03:35:52 UTC 2020 - Dominique Leuenberger + +- Update to version 3.35.91: + + Updated translations. + +------------------------------------------------------------------- +Fri Apr 17 03:35:50 UTC 2020 - dimstar@opensuse.org + +- Update to version 3.35.90: + + Adjust to gnome-shell changes. + + Force single-line window titles in window list. + + Misc. bug fixes and cleanup. +- Changes from version 3.35.2: + + Adjust to gnome-shell changes. + + window-list, workspace-indicator: Exclude DESKTOP windows from + previews. + + screenshot-window-sizer: Fix cycling through all valid sizes. + + Updated translations. + +------------------------------------------------------------------- +Mon Mar 16 06:44:29 UTC 2020 - Xiaoguang Wang + +- Add gnome-shell-extensions-remove-gsd-XSettings.patch: Remove + org.gnome.SettingsDaemon.XSettings from file gnome-classic.session + (bsc#1163262 glgo#GNOME/gnome-session#51) + +------------------------------------------------------------------- +Sun Mar 1 20:21:31 UTC 2020 - mgorse@suse.com + +- Update to version 3.34.2: + + window-list, workspace-indicator: Exclude DESKTOP windows + from previews. + + screenshot-window-sizer: Fix cycling through all valid sizes. + +------------------------------------------------------------------- +Fri Feb 14 13:46:01 UTC 2020 - Dominique Leuenberger + +- Enable packaging of user-theme extension: Despite its name, this + extension is also used to enable 'system themes' in GMOME Tweaks. + And since we have multiple themes in the repository, we should + also provide the needed extension to enable them. +- No longer obsolete gnome-shell-extension-user-theme. + +------------------------------------------------------------------- +Sat Jan 25 14:11:54 UTC 2020 - Dominique Leuenberger + +- No longer recommend -lang: supplements are in use + +------------------------------------------------------------------- +Tue Dec 10 00:58:50 UTC 2019 - Xiaoguang Wang + +- Update gse-sle-classic-ext.patch: Adapt version 3.34.1 + (bsc#1158496). +- Remove file sle-classic-xorg.desktop: now sle-classic only works + on X, we don't need this file anymore. + +------------------------------------------------------------------- +Mon Dec 2 09:17:46 UTC 2019 - Frederic Crozat + +- Rebase patch gnome-classic-s390-not-require-g-s-d_wacom.patch. + +------------------------------------------------------------------- +Thu Oct 17 07:44:40 UTC 2019 - Xiaoguang Wang + +- Update gse-sle-classic-ext.patch: Change panel background color + to transparent on lock screen and unlock screen. + +------------------------------------------------------------------- +Wed Oct 9 10:32:09 UTC 2019 - Bjørn Lie + +- Update to version 3.34.1: + + Adjust to gnome-settings-daemon plugin removals. + + Updated translations. + +------------------------------------------------------------------- +Tue Oct 8 04:35:27 UTC 2019 - Xiaoguang Wang + +- Add requires gnome-shell-extension-desktop-icons for package + gnome-shell-classic, when start sle-classic session, enable + extension desktop-icons automatically (bsc#1148036). + +------------------------------------------------------------------- +Wed Sep 11 07:09:01 UTC 2019 - Xiaoguang Wang + +- Update gse-sle-classic-ext.patch: Missing the solution for + boo#1094148, add it back. + +------------------------------------------------------------------- +Mon Sep 9 16:31:41 CDT 2019 - mgorse@suse.com + +- Update to version 3.34.0: + + Updated translations. + +------------------------------------------------------------------- +Fri Sep 6 01:04:26 UTC 2019 - Xiaoguang Wang + +- Update to version 3.33.92: + + Translators: Марко Костић [sr], Tim Sabsch [de], + Rūdolfs Mazurs [lv], Matej Urbančič [sl], Balázs Úr [hu], + Claude Paroz [fr], Fran Dieguez [gl], Changwoo Ryu [ko], + Ryuta Fujii [ja], Fabio Tomat [fur], Goran Vidović [hr]. +- Adapt sle-classic to 3.33.92 + + Update file sle-classic.json + + Update sle-classic@suse.com.tar.gz + + Update gse-sle-classic-ext.patch +- Drop gnome-shell-favorites-menu-at-end.patch: + Merge this function to gse-sle-classic-ext.patch. + +------------------------------------------------------------------- +Wed Sep 4 02:17:34 UTC 2019 - Xiaoguang Wang + +- Update to version 3.33.91: + + window-list: Support showing windows from all workspaces. + + Misc. bug fixes and cleanups. + + Make GNOME Classic more classic: + - Disable GNOME 3 overview. + - Add window picker button to window list. + - Style improvements and fixes. + - Support horizontal workspace layout in window list. + - Add draggable previews to window list workspace switcher. + - Arrange workspaces horizontally. + + workspace-indicator: Support horizontal workspace layout. + + workspace-indicator: Add draggable previews. +- Drop gse-apps-menu-Add_missing_chain-up.patch: Fixed upstream. +- Rebase gnome-shell-add-app-to-desktop.patch +- Rebase gnome-shell-favorites-menu-at-end.patch +- Rebase gse-sle-classic-ext.patch +- Rebase sle-classic-lock-screen-background.patch + +------------------------------------------------------------------- +Fri Aug 2 18:08:38 UTC 2019 - Bjørn Lie + +- Add gse-apps-menu-Add_missing_chain-up.patch: PanelMenu.Button is + a bit weird in that it also "contains" its parent actor. That + container is supposed to be destroyed with the button, but as we + currently don't chain up to the parent class' _onDestroy(), we + leave behind an empty container every time the extension is + disabled. Fix this by adding the missing chain-up. + +------------------------------------------------------------------- +Mon Jul 8 07:12:55 UTC 2019 - Chingkai + +- Update gse-sle-classic-ext.patch: Drop Convenience library since it + is now a gnome-shell built-in module (boo#1139990). + +------------------------------------------------------------------- +Wed May 29 09:42:28 UTC 2019 - Yifan Jiang + +- Split the architecture dependent session file to a new package + gnome-shell-classic-session required by gnome-shell-classic. +- Move BuildArch: noarch to subpackages to enable %ifarch macro + (bsc#1129412). + +------------------------------------------------------------------- +Thu Apr 18 11:16:42 UTC 2019 - Dominique Leuenberger + +- Update to version 3.32.1: + + Fix windowsNavigator extension after ES6 port. + + screenshot-window-sizer: Add phone screenshot sizes. + + Misc. bug fixes and cleanups + + +------------------------------------------------------------------- +Tue Apr 9 07:27:44 UTC 2019 - Chingkai + +- Rebase sle-classic@suse.com.tar.gz to version 3.32.0: + + Drop Lang.bind(). + + Drop Convenience library. + + Stop using Shell.GenericContainer. +- Update gse-sle-classic-ext.patch: + + Rename WorkspaceIndicator to WorkspaceIndicatorWList(bsc#1130478). + +------------------------------------------------------------------- +Fri Mar 29 06:33:23 UTC 2019 - Yifan Jiang + +- Add gnome-classic-s390-not-require-g-s-d_wacom.patch: Remove the + gnome session runtime requirement of g-s-d Wacom plugin because + it is not build on s390 (bsc#1129412). + +------------------------------------------------------------------- +Wed Mar 20 08:45:23 UTC 2019 - Chingkai + +- Rebase: the following patches are rebased to version 3.32.0 + + gnome-shell-add-app-to-desktop.patch + + gnome-shell-favorites-menu-at-end.patch + + gse-sle-classic-ext.patch + +------------------------------------------------------------------- +Tue Mar 12 06:31:37 UTC 2019 - Bjørn Lie + +- Update to version 3.32.0: + + Updated translations. +- Disable sle-classic-favorites-menu-at-end.patch: Needs rebase. + +------------------------------------------------------------------- +Fri Feb 22 06:47:35 UTC 2019 - bjorn.lie@gmail.com + +- Update to version 3.31.91: + + apps-menu: Remove outdated legacy-tray handling. + + user-theme: Allow using XDG user data dir. + + Misc. bug fixes and cleanups. + +------------------------------------------------------------------- +Thu Feb 21 16:19:41 UTC 2019 - bjorn.lie@gmail.com + +- Update to version 3.31.90: + + Misc. bug fixes and cleanups. + + Updated translations. +- Rebase gnome-shell-favorites-menu-at-end.patch via + refresh_patches service. +- Disable gnome-shell-add-app-to-desktop.patch and + gse-sle-classic-ext.patch, needs rebase. + +------------------------------------------------------------------- +Sat Jan 5 11:01:46 UTC 2019 - bjorn.lie@gmail.com + +- Update to version 3.31.2: + + Remove obsolete alternate-tab extension. + + Adjust to gnome-shell changes. + +------------------------------------------------------------------- +Tue Oct 9 10:12:44 UTC 2018 - bjorn.lie@gmail.com + +- Update to version 3.30.1: + + apps-menu: Fix height on HiDPI systems + (glgo#GNOME/gnome-shell-extensions#102). + + window-list: Only switch between windows on active workspace + when scrolling (glgo#GNOME/gnome-shell-extensions#78). + +------------------------------------------------------------------- +Thu Sep 6 08:23:44 UTC 2018 - xwang@suse.com + +- Update sle-classic to adapte version 3.30.0 + + Add 00_org.gnome.shell.extensions.sle-classic.gschema.override + + Update gse-sle-classic-ext.patch + + Update sle-classic-xorg.desktop + + Update sle-classic.desktop + + Update sle-classic@suse.com.tar.gz + +------------------------------------------------------------------- +Thu Sep 6 03:38:52 UTC 2018 - luc14n0@linuxmail.org + +- Update to version 3.30.0: + + No visible changes. +- Changes frome version 3.29.91: + + Misc. bug fixes: glgo#GNOME/gnome-shell-extensions#90. + +------------------------------------------------------------------- +Fri Aug 3 20:49:10 UTC 2018 - bjorn.lie@gmail.com + +- Update to version 3.29.90: + + Misc. bug fixes: bgo#786496. + +------------------------------------------------------------------- +Fri Aug 3 06:05:03 UTC 2018 - qkzhu@suse.com + +- Update gse-sle-classic-ext.patch CSS files are generated by Sass + sources in 3.28, the default margin-bottom of popup-menu.panel-menu + is 1.75em which creates an ugly gap between menu and its source + actor when the PanelMenu's source actor is at the bottom + (boo#1094148). + +------------------------------------------------------------------- +Tue Jul 24 16:52:54 UTC 2018 - dimstar@opensuse.org + +- Help translation-update-upstream finding the right gettext domain + name: pass "po %{name}" to the call. + +------------------------------------------------------------------- +Tue Jul 17 07:00:04 UTC 2018 - xwang@suse.com + +- Update sle-classic@suse.com.tar.gz. After sle-classic extension + is disabled, can't show clone window in overview mode + (bsc#1095325). + +------------------------------------------------------------------- +Fri Jun 22 02:24:25 UTC 2018 - luc14n0@linuxmail.org + +- Update to version 3.29.2: + + Misc. bug fix: glgo#GNOME/gnome-shell-extensions#69. +- Drop source-service use: the situation has been normalized. + +------------------------------------------------------------------- +Mon Jun 4 03:11:44 UTC 2018 - xwang@suse.com + +- Update sle-classic@suse.com.tar.gz. Don't allow user to enable + sle-classic extension in tweak tool (bsc#1095325). + +------------------------------------------------------------------- +Sun Apr 22 20:55:58 UTC 2018 - bjorn.lie@gmail.com + +- Update to version 3.28.1+20180413.6746061: + + cleanup: Use Array.includes() to check for element existence. + + window-list: Handle no overrides settings. + + apps-menu: Duplicate destroy actor. + + Updated translations. +- Switch back to using git-checkout via source-service, upstream + seems unable to produce tarballs. + +------------------------------------------------------------------- +Thu Apr 19 07:06:03 UTC 2018 - xwang@suse.com + +- Update sle-classic-xorg.desktop translations (bsc#1077156). + +------------------------------------------------------------------- +Tue Mar 20 17:20:01 UTC 2018 - dimstar@opensuse.org + +- Unconditionally enable translation-update-upstream: on + Tumbleweed, this results in a NOP and for Leap in SLE paid + translations being used (boo#1086036). + +------------------------------------------------------------------- +Mon Mar 12 23:16:28 UTC 2018 - luc14n0@linuxmail.org + +- Update to version 3.28.0: + + Updated translations. +- Conditionalyze the use of translation-update-upstream and + gnome-patch-translation: these are a SLE-only requirements. +- Add fdupes BuildRequires and its macro for replacement of + duplicates with links under the data directory. +- Drop: + + intltool BuildRequires as upstream migrated to Gettext long + ago. + + pkgconfig(gio-2.0) BuildRequires: this is no longer used/needed + anymore. + + gnome-common BuildRequires: there is no patches touching the + build system. + +------------------------------------------------------------------- +Tue Mar 6 10:26:32 UTC 2018 - dimstar@opensuse.org + +- Update to version 3.27.92: + + Updated translations. +- Drop gse-build-fixes.patch: fixed upstream. + +------------------------------------------------------------------- +Mon Mar 5 06:24:23 UTC 2018 - xwang@suse.com + +- Rebase gse-sle-classic-ext.patch (bsc#1082345). + +------------------------------------------------------------------- +Wed Feb 28 16:29:39 UTC 2018 - dimstar@opensuse.org + +- Modernize spec-file by calling spec-cleaner + +------------------------------------------------------------------- +Sat Feb 24 03:01:16 UTC 2018 - xwang@suse.com + +- Rebase gnome-shell-add-app-to-desktop.patch (bsc#1082345). +- Rebase gnome-shell-favorites-menu-at-end.patch +- Drop gnome-shell-extensions-window-list-app-icon-not-shown.patch: + fixed upstream. + +------------------------------------------------------------------- +Thu Feb 22 15:23:55 UTC 2018 - dimstar@opensuse.org + +- Update to version 3.27.91: + + places-menu: Support unmounting ejectable places. + + apps-menu: Support separators and custom sort order. + + Port to meson. + + window-list: Fix missing icons on wayland. + + places-menu: Fix terminating gnome-shell with recent gjs. + + auto-move: Make it work with wayland windows. + + Classic theme fixes. + + Require sassc for classic styling. + + Misc. bug fixes: bgo#772211, + glgo#GNOME/gnome-shell-extensions#32, + glgo#GNOME/gnome-shell-extensions#30. + + Updated translations. +- Switch to meson build system: + + Add meson BuildRequires. + + Replace configure/make/make_install with + meson/meson_build/meson_install macros. +- Add sassc BuildRequires: new dependency. +- Add gse-build-fixes.patch: Fix installation of classic desktop + session files. +- Disable SLE-classic patches that need rebase: + gse-sle-classic-ext.patch, gnome-shell-add-app-to-desktop.patch, + gnome-shell-favorites-menu-at-end.patch and + gnome-shell-extensions-window-list-app-icon-not-shown.patch. + +------------------------------------------------------------------- +Thu Feb 8 00:42:44 UTC 2018 - xwang@suse.com + +- Update sle-classic-xorg.desktop translations (bsc#1077156). + +------------------------------------------------------------------- +Sun Jan 7 22:57:57 UTC 2018 - zaitor@opensuse.org + +- Own {_datadir}/gnome-shell/extensions, needed after changes in + gnome-shell package. + +------------------------------------------------------------------- +Thu Dec 14 01:29:21 UTC 2017 - xwang@suse.com + +- Fix in SLE-Classic session application title bar doesn't show + application menu (bsc#1070090 bgo#746592). + + Update sle-classic@suse.com.tar.gz + + Update sle-classic.desktop + + Update sle-classic-xorg.desktop + +------------------------------------------------------------------- +Wed Nov 29 03:27:01 UTC 2017 - badshah400@gmail.com + +- Update to version 3.27.1: + + Updated translations. +- Rebase gnome-shell-add-app-to-desktop.patch. + +------------------------------------------------------------------- +Fri Nov 24 01:02:22 UTC 2017 - xwang@suse.com + +- Lower update-alternative priority of sle-classic desktop to 20, + resulting in GNOME session becoming the default session + (fate#324384). + +------------------------------------------------------------------- +Mon Nov 20 03:05:29 UTC 2017 - xwang@suse.com + +- Add gnome-shell-extensions-window-list-app-icon-not-shown.patch: + Fix window-list doesn't show app icon on taskbar when working in + wayland (bgo#745064). + +------------------------------------------------------------------- +Thu Nov 9 01:37:47 UTC 2017 - xwang@suse.com + +- Apply SLE-Classic session on Tumbleweed (bsc#1051772). + + Rename sle-classic-favorites-menu-at-end.patch to + gnome-shell-favorites-menu-at-end.patch + +------------------------------------------------------------------- +Mon Nov 6 01:20:01 UTC 2017 - xwang@suse.com + +- Move SLE-Classic function in gnome-shell to + gnome-shell-extensions (bsc#1065611). + + Update gnome-shell-add-app-to-desktop.patch + + Update gse-sle-classic-ext.patch + + Update sle-classic-favorites-menu-at-end.patch + + Update sle-classic-xorg.desktop + + Update sle-classic.desktop + + Add sle-classic.json + + Add sle-classic@suse.com.tar.gz + +------------------------------------------------------------------- +Sat Nov 4 03:09:18 UTC 2017 - luc14n0@linuxmail.org + +- Update to version 3.26.2: + + Updated translations. +- Update Url to + https://wiki.gnome.org/Projects/GnomeShell/Extensions: current + GNOME Shell Extensions project web page. + +------------------------------------------------------------------- +Wed Nov 1 04:47:28 UTC 2017 - xwang@suse.com + +- Apply gnome-shell-add-app-to-desktop.patch on openSUSE + (bsc#1061742). + +------------------------------------------------------------------- +Mon Oct 30 09:30:06 UTC 2017 - qzheng@suse.com + +- Update gse-sle-classic-ext.patch, make the bottom panel + background of SLE-Classic "black" in the Overview mode + (bsc#1064377). + +------------------------------------------------------------------- +Wed Oct 18 02:59:02 UTC 2017 - xwang@suse.com + +- Add sle-classic-xorg.desktop file. + Allow user to open X session or wayland session (bsc#1062909). +- Add default.desktop file in '{_datadir}/wayland-sessions/' + Make default.desktop session working on wayland (bsc#1062196). + +------------------------------------------------------------------- +Tue Oct 17 06:38:09 UTC 2017 - qzheng@suse.com + +- Update gnome-shell-add-app-to-desktop.patch, allow app + shortcut added to desktop could be executed with default + attribute "trusted" (bsc#1055240). + +------------------------------------------------------------------- +Mon Oct 9 06:30:17 UTC 2017 - xwang@suse.com + +- Update gse-sle-classic-ext.patch to version 3.26.1 + +------------------------------------------------------------------- +Wed Oct 4 21:20:54 UTC 2017 - zaitor@opensuse.org + +- Update to version 3.26.1: + + native-window-placement: Adjust to gnome-shell changes. + + Updated translations. + +------------------------------------------------------------------- +Wed Sep 27 08:37:53 UTC 2017 - xwang@suse.com + +- Enable SLE-Classic session working on Wayland. + Add sle-classic.desktop in folder '{_datadir}/wayland-sessions/' + (bsc#1058797) + +------------------------------------------------------------------- +Fri Sep 22 08:44:34 UTC 2017 - dimstar@opensuse.org + +- Register SLE-Classic with u-a handler for default.desktop + implementation, which obsoletes the change in + /etc/sysconfig/windowmanager to pick the 'default window manager' + (boo#1039756). + +------------------------------------------------------------------- +Mon Sep 18 06:38:10 UTC 2017 - xwang@suse.com + +- Update patch gse-sle-classic-ext.patch. + Fix 'this._pureWinList is null', error involved in bsc#1046570 + fix(bsc#1046570). + +------------------------------------------------------------------- +Wed Sep 13 02:57:16 UTC 2017 - xwang@suse.com + +- Update sle-classic patches to version 3.26.0: + + Update gse-sle-classic-ext.patch + + Update sle-classic-favorites-menu-at-end.patch + + Update sle-classic-lock-screen-background.patch + +------------------------------------------------------------------- +Tue Sep 12 19:21:13 UTC 2017 - luc14n0@linuxmail.org + +- Update to version 3.26.0: + + Updated translations. + +------------------------------------------------------------------- +Sun Sep 10 21:26:22 UTC 2017 - jengelh@inai.de + +- Update package summaries. Replace historic tar option specs. + +------------------------------------------------------------------- +Wed Aug 23 07:59:02 UTC 2017 - xwang@suse.com + +- Update patch gse-sle-classic-ext.patch. Fix only half panel shown + on bottom of desktop when scaling-factor equals 2(Require patched + gnome-shell)(bsc#1046570). + +------------------------------------------------------------------- +Tue Aug 22 08:25:53 UTC 2017 - zaitor@opensuse.org + +- Update to version 3.25.91: + + Updated translations. + +------------------------------------------------------------------- +Mon Aug 21 20:07:58 UTC 2017 - zaitor@opensuse.org + +- Update to version 3.25.90: + + Updated translations. + +------------------------------------------------------------------- +Wed Aug 2 20:46:14 UTC 2017 - zaitor@opensuse.org + +- Update to version 3.25.4: + + screenshot-window-sizer: Fix backward cycling. + + Updated translations. + +------------------------------------------------------------------- +Wed Aug 2 13:25:03 UTC 2017 - zaitor@opensuse.org + +- Update to version 3.25.3: + + places-menu: Use mount operation if necessary. + + window-list: Respect MWM hints. + + Updated translations. +- Drop glib2_gsettings_schema handling in post(un), file-triggers + takes care of this for us now. + +------------------------------------------------------------------- +Wed Aug 2 13:25:02 UTC 2017 - zaitor@opensuse.org + +- Update to version 3.25.2: + + places-menu: Make URI launching asynchronous. + + Updated translations. + +------------------------------------------------------------------- +Wed Aug 2 13:25:01 UTC 2017 - zaitor@opensuse.org + +- Update to version 3.25.1: + + apps-menu: Mark copied launchers as trusted. + + places-menu: Make icon lookup asynchronous. + +------------------------------------------------------------------- +Wed Aug 2 02:51:32 UTC 2017 - xwang@suse.com + +- Update sle-classic patches to version 3.24.3: + + Update gnome-shell-add-app-to-desktop.patch + + Update gse-sle-classic-ext.patch + + Update sle-classic-favorites-menu-at-end.patch + + Update sle-classic-lock-screen-background.patch + +------------------------------------------------------------------- +Thu Jul 20 08:57:14 UTC 2017 - zaitor@opensuse.org + +- Update to version 3.24.3: + + screenshot-window-sizer: Fix backward cycling. + + Updated translations. + +------------------------------------------------------------------- +Thu May 11 16:09:41 UTC 2017 - zaitor@opensuse.org + +- Update to version 3.24.2: + + apps-menu: Mark copied launchers as trusted. + + places-menu: Make icon lookup asynchronous. + + Updated translations. + +------------------------------------------------------------------- +Mon Apr 24 17:09:55 UTC 2017 - dimstar@opensuse.org + +- Update to version 3.24.1: + + apps-menu: Allow creating desktop launchers via DND. + + Updated translations. + +------------------------------------------------------------------- +Mon Mar 20 20:23:35 UTC 2017 - dimstar@opensuse.org + +- Update to version 3.24.0: + + Updated translations. + +------------------------------------------------------------------- +Tue Mar 14 18:19:27 UTC 2017 - dimstar@opensuse.org + +- Update to version 3.23.92: + + update classic theme. + + Updated translations. + +------------------------------------------------------------------- +Wed Mar 1 21:17:31 UTC 2017 - zaitor@opensuse.org + +- Update to version 3.23.91: + + Updated translations. + +------------------------------------------------------------------- +Thu Feb 16 23:15:07 UTC 2017 - dimstar@opensuse.org + +- Update to version 3.23.90: + + window-list: + - Improve styling. + - Hide workspace indicator when there's a single (static) + workspace. + + Updated translations. + +------------------------------------------------------------------- +Fri Nov 25 14:47:02 UTC 2016 - dimstar@opensuse.org + +- Update to version 3.23.2: + + alternateTab: Don't take over 'switch-group' shortcut. + + Updated translations. + +------------------------------------------------------------------- +Fri Nov 11 10:08:20 UTC 2016 - dimstar@opensuse.org + +- Update to version 3.22.2: + + Updated translations. + +------------------------------------------------------------------- +Tue Nov 1 02:28:56 UTC 2016 - xwang@suse.com + +- Add SUSE logo on lock screen when auth is requested (bsc#1007468) + + sle-classic-lock-screen-background.patch + + SLE-theme.tar.gz + +------------------------------------------------------------------- +Tue Oct 11 09:36:09 UTC 2016 - zaitor@opensuse.org + +- Update to version 3.22.1: + + window-list: Update icon on app changes. + +------------------------------------------------------------------- +Tue Oct 11 05:06:17 UTC 2016 - yfjiang@suse.com + +- Enable SLE-Classic for Leap 42.2 (bnc#999655) + + add workspace indicator back for LEAP 42.2 + +------------------------------------------------------------------- +Tue Sep 20 18:35:46 CST 2016 - cxiong@suse.com + +- Enable SLE-Classic for Leap 42.2 (bnc#999655) + + modify SPEC to re-enable SLE-Classic for Leap 42.2 + +------------------------------------------------------------------- +Mon Sep 19 23:03:28 UTC 2016 - zaitor@opensuse.org + +- Update to version 3.22.0: + + Updated translations. + +------------------------------------------------------------------- +Tue Sep 13 20:59:44 UTC 2016 - zaitor@opensuse.org + +- Update to version 3.21.92: + + Update style. + + Updated translations. + +------------------------------------------------------------------- +Tue Aug 30 11:29:48 UTC 2016 - zaitor@opensuse.org + +- Update to version 3.21.91: + + Updated translations. +- Add global Requires exclude for the now private typelib(Meta) + from mutter. + +------------------------------------------------------------------- +Fri Aug 19 22:30:23 UTC 2016 - zaitor@opensuse.org + +- Update to version 3.21.90: + + Updated translations. +- Drop gnome-common BuildRequires: No longer needed as we are not + using a git tarball anymore. +- Drop intltool BuildRequires: No longer used by upstream. +- Add pkgconfig(gio-2.0) BuildRequires: previously pulled in by + gnome-common. + +------------------------------------------------------------------- +Mon Jul 25 17:19:01 UTC 2016 - zaitor@opensuse.org + +- Update to version 3.21.4: + + apps-menu: Fix entries from non-standard AppDir directories. + +------------------------------------------------------------------- +Thu Jul 14 14:13:44 UTC 2016 - dimstar@opensuse.org + +- Update to version 3.21.3: + + adjust to gnome-shell changes. + + Updated translations. +- Changes from version 3.21.2: + + version bump only. + +------------------------------------------------------------------- +Mon May 23 16:18:24 CST 2016 - cxiong@suse.com + +- Update to GNOME 3.20.2 fate#318572 + + gse-sle-classic-ext.patch updated. + +------------------------------------------------------------------- +Wed May 11 08:41:10 UTC 2016 - zaitor@opensuse.org + +- Update to version 3.20.1: + + Update classic style. + + Updated translations. + +------------------------------------------------------------------- +Mon May 9 15:51:02 CST 2016 - cxiong@suse.com + +- SLE Classic (REBASING DONE) + + DROPPED places-menu-use-nautilus-for-links.patch (Invalid) + + Add workspace-indicator to the build + + Fix the gap between bottom menu and its button. + + Fix windows auto-grouping. + + Hide window list in Overview + + Clean up spec file. + +------------------------------------------------------------------- +Wed May 4 20:51:08 CST 2016 - cxiong@suse.com + +- Rebasing SLE Classic (basic) (Fate#318572) +- Add source sle-classic.desktop: xsession file +- Add patch gse-sle-classic-ext.patch: add sle classic support +- DROPPED: Invalid + + gnome-classic-exts-arrow-fix.patch + + gnome-sle-classic-ext-build.patch + + sle-classic.tar.bz2 + +------------------------------------------------------------------- +Tue Apr 19 19:07:38 CST 2016 - cxiong@suse.com + +- Patches(none-SLE-classic) reviewing for SP2 GNOME 3.20 +- REBASED: + + gnome-shell-add-app-to-desktop.patch +- DROPPED: Upstreamed + + gnome-shell-use-env-var-for-mode.patch + + place-menu-handle-special-user-dirs-update.patch + + 0001-window-list-import-gettext-for-the-right-domain.patch + + gnome-shell-extensions-bnc872820-wm-button-layout.patch + + bnc947381-Application-menu-selections-stop-working.patch +- DROPPED: Invalid + + gnome-classic-move-notification-widget-above.patch + +------------------------------------------------------------------- +Fri Apr 15 21:51:23 CEST 2016 - hpj@suse.com + +- Update to GNOME 3.20 -- Fate#318572. +- Temporarily disable SLE patches and theming. It will be + re-enabled in a later update. + +------------------------------------------------------------------- +Wed Mar 23 08:26:49 UTC 2016 - dimstar@opensuse.org + +- Update to version 3.20.0: + + version bump, nothing to see here. + +------------------------------------------------------------------- +Thu Mar 17 08:43:58 UTC 2016 - dimstar@opensuse.org + +- Update to version 3.19.92: + + version bump, nothing to see here. + +------------------------------------------------------------------- +Thu Mar 3 20:02:45 UTC 2016 - zaitor@opensuse.org + +- Update to version 3.19.91: + + Updated translations. + +------------------------------------------------------------------- +Fri Feb 19 18:40:33 UTC 2016 - zaitor@opensuse.org + +- Update to version 3.19.90: + + Version bump only, no changes. + +------------------------------------------------------------------- +Fri Jan 22 08:35:54 UTC 2016 - dimstar@opensuse.org + +- Update to version 3.19.4: + + screenshot-window-sizer: HiDPI support. + + Fix gnome-shell component in classic session. + + Updated translations. + +------------------------------------------------------------------- +Sun Jan 10 13:09:20 UTC 2016 - dimstar@opensuse.org + +- Update to version 3.19.3: + + native-window-placement: Don't let border overlap title. + + apps-menu: Fix handling of .desktop files in subdirectories. + + Updated translations. + +------------------------------------------------------------------- +Sun Jan 10 13:08:20 UTC 2016 - zaitor@opensuse.org + +- Update to version 3.19.2: + + Updated translations. + +------------------------------------------------------------------- +Sun Jan 10 13:07:20 UTC 2016 - zaitor@opensuse.org + +- Update to version 3.19.1: + + Fix some theme issues. + +------------------------------------------------------------------- +Sun Jan 10 13:06:20 UTC 2016 - zaitor@opensuse.org + +- Update to version 3.18.3: + + apps-menu: Fix .desktop entries in subdirectories. + +------------------------------------------------------------------- +Mon Nov 16 07:45:02 UTC 2015 - cxiong@suse.com + +- Add bnc947381-Application-menu-selections-stop-working.patch: + Fix application menu open issue. Upstream has this fixed but no + related bug report (bnc947381). + +------------------------------------------------------------------- +Thu Nov 12 16:12:43 UTC 2015 - zaitor@opensuse.org + +- Update to version 3.18.2: + + Fix classic style issues. + +------------------------------------------------------------------- +Tue Nov 3 10:02:47 UTC 2015 - cxiong@suse.com + +- Fix skewed icons in SLE Classic (bnc#948793) + + There was a mismatch between the available space and declared + icon size. + + SPECFILE: a minor fix to avoid double unpacking the first + source tarball. + +------------------------------------------------------------------- +Thu Oct 15 20:54:28 UTC 2015 - zaitor@opensuse.org + +- Update to version 3.18.1: + + window-list: Fix accessibility of window buttons. + + apps-menu: Fix unreliable highlight. + + Updated translations. + +------------------------------------------------------------------- +Tue Sep 22 07:04:20 UTC 2015 - dimstar@opensuse.org + +- Update to version 3.18.0: + + Bump version. + +------------------------------------------------------------------- +Wed Sep 16 17:53:24 UTC 2015 - dimstar@opensuse.org + +- Update to version 3.17.92: + + places: Include DESKTOP when desktop icons are enabled. + + Updated translations. +- Drop gnome-shell-reload-specials-when-xdg-user-dirs-changes.patch: + Upstream reworked the directory monitoring. + +------------------------------------------------------------------- +Thu Sep 3 19:20:34 UTC 2015 - zaitor@opensuse.org + +- Update to version 3.17.91: + + Updated translations. + +------------------------------------------------------------------- +Thu Aug 20 15:11:03 UTC 2015 - zaitor@opensuse.org + +- Update to version 3.17.90: + + window-list: Improve application ordering. + + workspace-indicator: Use consistent workspace numbering. + +------------------------------------------------------------------- +Thu Aug 6 08:48:00 UTC 2015 - cxiong@suse.com + +- Fix multiple issues related to windows grouping (bnc#933183) in + SLE Classic + + The old code contains multiple bugs for windows grouping + display. + + Fix missing AppButton for applications without desktop file + in SLE Classic. + +------------------------------------------------------------------- +Thu Jul 23 15:36:29 UTC 2015 - zaitor@opensuse.org + +- Update to version 3.17.4: + + Updated translations. + +------------------------------------------------------------------- +Mon Jul 6 18:35:17 UTC 2015 - zaitor@opensuse.org + +- Update to version 3.17.3: + + window-list: Adjust with text-scaling-factor. + + classic style updates. + + Updated translations. + +------------------------------------------------------------------- +Thu Jul 2 18:29:45 UTC 2015 - zaitor@opensuse.org + +- Update to version 3.17.2: + + Updated translations. + +------------------------------------------------------------------- +Thu Jul 2 18:29:44 UTC 2015 - zaitor@opensuse.org + +- Update to version 3.17.1: + + Style updates. + + Updated translations. + +------------------------------------------------------------------- +Thu Jul 2 17:29:16 UTC 2015 - zaitor@opensuse.org + +- Update to version 3.16.2: + + classic: Update theme. + + Updated translations. + +------------------------------------------------------------------- +Wed Apr 22 12:37:23 UTC 2015 - cxiong@suse.com + +- Fix click event "missing" for window buttons in SLE Classic (bnc#913204) + + No separate patch file, changes are in sle-classic.tar.bz2 + + "clicked" event in St.Button is not compatible with Clutter's event model. + Though an upstream bug, but the exact cause is still unknown yet. Resort back + to Clutter's native "button-press-event" to fix this for SLE Classic. + +------------------------------------------------------------------- +Wed Apr 15 07:20:58 UTC 2015 - dimstar@opensuse.org + +- Update to version 3.16.1: + + window-list: Fix workspace indicators popup menu position. + + apps-menu: Fix taking over panel-main-menu shortcut. + + Updated translations. + +------------------------------------------------------------------- +Mon Mar 23 20:33:29 UTC 2015 - dimstar@opensuse.org + +- Update to version 3.16.0: + + Updated translations. + +------------------------------------------------------------------- +Thu Mar 19 06:40:43 UTC 2015 - cxiong@suse.com + +- Add gnome-shell-reload-specials-when-xdg-user-dirs-changes.patch. + Let places menu handle changes of special user directories + properly (bnc#885490, bgo#746338). + +------------------------------------------------------------------- +Wed Mar 18 08:22:29 UTC 2015 - dimstar@opensuse.org + +- Update to version 3.15.92: + + classic: Update theme. + + update for mutter API changes. + + Updated translations. + +------------------------------------------------------------------- +Thu Mar 5 17:09:53 UTC 2015 - dimstar@opensuse.org + +- Update to version 3.15.91: + + Classic: Update theme. + + systemMonitor extension was removed, as the message tray where + it put its indicator no longer exists. + + window-list: Adjust for gnome-shell changes. + +------------------------------------------------------------------- +Sat Feb 21 11:05:16 UTC 2015 - dimstar@opensuse.org + +- Update to version 3.15.90: + + classic: Visual refresh based on new shell theme. + + window-list: Adjust for gnome-shell changes. + + Updated translations. + +------------------------------------------------------------------- +Wed Feb 4 17:10:17 UTC 2015 - mgorse@suse.com + +- Add a Recommends on gnome-shell-extensions-common-lang in + gnome-shell-classic. + +------------------------------------------------------------------- +Sun Jan 25 22:58:36 UTC 2015 - zaitor@opensuse.org + +- Update to version 3.15.4: + + window-list: Improve interaction with system modal dialogs. + + Updated translations. + +------------------------------------------------------------------- +Sat Dec 20 12:15:48 UTC 2014 - zaitor@opensuse.org + +- Update to version 3.15.3.1: + + Adjust to gnome-shell change. + +------------------------------------------------------------------- +Fri Dec 19 17:11:07 UTC 2014 - zaitor@opensuse.org + +- Update to version 3.15.3: + + classic-mode: + - Add high-contrast theme variant. + - Drop .desktop file. + + places-menu: Fix error when XDG user directories are not set + up. + + window-list: Add option to show on all monitors. + + Updated translations. + +------------------------------------------------------------------- +Wed Dec 19 17:10:33 UTC 2014 - zaitor@opensuse.org + +- Update to version 3.15.2: + + removable-drive, user-theme, window-list: Update for + gnome-shell changes. + + apps-menu: Fix some visual glitches. + + Fix classic mode style. + + Updated translations. + +------------------------------------------------------------------- +Wed Dec 19 17:09:33 UTC 2014 - badshah400@gmail.com + +- Fix build failure by having the package own the directory + /usr/share/gnome-shell/theme. + +------------------------------------------------------------------- +Wed Dec 19 17:08:33 UTC 2014 - zaitor@opensuse.org + +- Update to version 3.15.1: + + Updated translations. + +------------------------------------------------------------------- +Fri Dec 19 15:20:42 UTC 2014 - zaitor@opensuse.org + +- Update to version 3.14.3: + + apps-menu: Fix some visual glitches. + + places-menu: Fix error when XDG user directories are not set + up. + + window-list: Update for gnome-shell changes. + +------------------------------------------------------------------- +Wed Nov 26 10:14:29 UTC 2014 - cxiong@suse.com + +- Fix gnome-shell-add-app-to-desktop.patch + + (bnc#899923). A dangled open menu would grab the focus and + leave the system in a useless state. Close any open menus + before any other action. + +------------------------------------------------------------------- +Wed Nov 12 21:03:30 UTC 2014 - zaitor@opensuse.org + +- Update to version 3.14.2: + + drive-menu: Update for nautilus/gnome-shell changes. + +------------------------------------------------------------------- +Wed Oct 15 06:21:29 UTC 2014 - dimstar@opensuse.org + +- Update to versoin 3.14.1: + + alternateTab: Fix dismissing popup with Escape. + + Some improvements to the window-list (spacing in app buttons, + no flash when closing windows with auto-grouping). + + Updated translations. + +------------------------------------------------------------------- +Thu Sep 25 21:04:27 CDT 2014 - federico@suse.com + +- Added gnome-shell-extensions-bnc872820-wm-button-layout.patch for + bnc872820. This lets us have the correct defaults for the window + manager's button layout, for the classic session mode. + +------------------------------------------------------------------- +Tue Sep 23 10:29:01 UTC 2014 - dimstar@opensuse.org + +- Update to version 3.14.0: + + Updated translations. + +------------------------------------------------------------------- +Thu Sep 18 09:26:30 UTC 2014 - cxiong@suse.com + +- Fine-tune window button style, particularly the hovering effect. + + (bnc#862615) Thanks Marcus Moeller (m.moeller@opensuse.org) + for offering highlighting patch. + + Highlight buttons when hovering (lighter color and darker text) + + Add extra box shadow to make buttons more visible. + +------------------------------------------------------------------- +Wed Sep 17 10:02:07 UTC 2014 - dimstar@opensuse.org + +- Update to version 3.13.92: + + New extension: screenshot-window-sizer. + + window-list: Don't add sticky windows more than once. + + Updated translations. + +------------------------------------------------------------------- +Wed Sep 10 08:03:22 UTC 2014 - cxiong@suse.com + +- Add places-menu-use-nautilus-for-links.patch + + (bnc#891919) Use Nautilus for all links in places menu and + such avoids all unnecessary issues. + +------------------------------------------------------------------- +Tue Sep 9 10:56:20 UTC 2014 - cxiong@suse.com + +- Force a monitors update to avoid background failure (bnc#893979) + +------------------------------------------------------------------- +Mon Sep 8 09:16:24 UTC 2014 - dimstar@opensuse.org + +- Update to version 3.13.91: + + window-list: restore fitts'ability of workspace button. + + Updated for gnome-shell changes. + + Updated translations. + +------------------------------------------------------------------- +Thu Sep 4 10:53:13 UTC 2014 - cxiong@suse.com + +- Add gnome-classic-move-notification-widget-above.patch + + (bnc#877898) move notifications above the panel such that it + doesn't cover part of the main panel. +- SLE Classic multiple fixes + + Add callbacks for overview, fullscreen, monitor change event, + such that the positioning&visibility of on-screen keyboard, + message tray&widgets and panels are adapted accordingly + (bnc#891560). + + Offer a hack for restoring of xsettings.overrides. The + counterpart is installed in Main._sessionLoaded (bnc#894048). + + Hide the bottom panel so that the overview hiding animation + works smoothly now. At least before we figure out why it + doesn't work with the bottom panel. (improvement) + + Adjust the positioning of LookingGlass. (improvement) + + Other small changes. + +------------------------------------------------------------------- +Wed Aug 27 10:03:32 UTC 2014 - fcrozat@suse.com + +- Add 0001-window-list-import-gettext-for-the-right-domain.patch: + properly define gettext domain for window-list extension + (bnc#893598). + +------------------------------------------------------------------- +Fri Aug 22 07:19:11 UTC 2014 - cxiong@suse.com + +- Add place-menu-handle-special-user-dirs-update.patch: + Let place menu handles changes of special user directories + properly (bnc#885490). + +------------------------------------------------------------------- +Wed Aug 20 13:27:24 UTC 2014 - dimstar@opensuse.org + +- Update to version 3.13.90: + + Updated translations. + +------------------------------------------------------------------- +Tue Aug 12 09:09:33 UTC 2014 - cxiong@suse.com + +- Add sle-classic-favorites-menu-at-end.patch: + put the favorites at the end of the app catogories for + accessibility reason (bnc#890989). + +------------------------------------------------------------------- +Thu Jul 24 17:58:02 UTC 2014 - dimstar@opensuse.org + +- Update to version 3.13.4: + + Updated for gnome-shell changes. + + Updated translations. + +------------------------------------------------------------------- +Mon Jul 21 01:55:06 UTC 2014 - dliang@suse.com + +- Update gnome-shell-add-app-to-desktop.patch to use system libs. + (bnc#882421) + +------------------------------------------------------------------- +Sat Jul 12 21:55:23 UTC 2014 - dimstar@opensuse.org + +- Update to version 3.13.3: + + Tweak preference UIs some more. + + Fix classic mode schema overrides. +- Changes from version 3.13.2: + + Fix sorting of grouped buttons in window list. + + Tweak preference UIs. +- Changes from version 3.13.1: + + Add DesktopNames key to the classic session file. + + window-list: don't shift message tray on other monitors. + + Updated translations. + +------------------------------------------------------------------- +Fri Jul 11 05:30:17 UTC 2014 - cxiong@suse.com + +- Remove Avatar symbol from system indicators (bnc#886569) + + No separate patch file, changes are in sle-classic.tar.bz2 + + It's not considered a good indication for log out + +------------------------------------------------------------------- +Wed Jul 2 09:46:01 UTC 2014 - fcrozat@suse.com + +- Fix typo in gnome-shell-add-app-to-desktop.patch. + +------------------------------------------------------------------- +Wed Jul 2 05:47:52 UTC 2014 - cxiong@suse.com + +- Add Logout symbol into system indicators, using 'sle-avatar' in SLE theme. + (bnc#862615) + + No separate patch file, changes are in sle-classic.tar.bz2 + +------------------------------------------------------------------- +Tue Jun 17 01:38:15 UTC 2014 - dliang@suse.com + +- Update gnome-shell-add-app-to-desktop.patch: + add translate-update-upstream (bnc#882421). + +------------------------------------------------------------------- +Sat May 17 10:57:08 UTC 2014 - zaitor@opensuse.org + +- Update to version 3.12.2: + + Classic theme: remove rounded corners from tile previews. + + Several fixes and improvements to the window-list. (Keep button + order stable, don't shift message tray on other monitors). + + auto-move-windows: several fixes and updates for api changes. + + launch-new-instances: updates for api changes. + + Updated translations. + +------------------------------------------------------------------- +Wed Apr 2 11:55:01 UTC 2014 - cxiong@suse.com + +- Bring back the official style for workspace indicator + A continued improvement on (bnc#862615) + +------------------------------------------------------------------- +Wed Apr 2 03:37:47 UTC 2014 - dliang@suse.com + +- Add gnome-shell-add-app-to-desktop.patch: + Add 'open' 'Add to Favoriate' 'Add to Desktop' menu item to the + app-menu (bnc#870580). + +------------------------------------------------------------------- +Fri Mar 28 10:29:02 UTC 2014 - cxiong@suse.com + +- Implement SLE Classic Mode (bnc#862615) + + Split changes for SLE Classic out of 'window-list' extension + + SLE Classic is now implemented as a separate extension + + session mode files. + A fork of 'window-list' extension combined with other SLE + specific tweaks. + + "SLE Classic" is now a option for choice in Login. + TODO translation for this part is unfinished. + + GNOME Classic is now in vanilla state and can be selected in + Login. + + Various changes + Conditional arrow patch, code refactoring. + + NOTE: this depends on SLE Classic extension patch for GNOME + Shell, see (request#35065). + + add gnome-classic-exts-arrow-fix.patch + + add patch gnome-sle-classic-ext-build.patch + + add sle-classic.tar.bz2 + + add suse-gnome-classic.patch + +------------------------------------------------------------------- +Wed Mar 26 19:43:34 UTC 2014 - zaitor@opensuse.org + +- Update to version 3.12.0: + + Updated translations. + +------------------------------------------------------------------- +Fri Mar 21 12:59:48 UTC 2014 - dimstar@opensuse.org + +- Update to version 3.11.92: + + Nothing to see here, move on. + +------------------------------------------------------------------- +Wed Mar 19 15:53:38 UTC 2014 - fcrozat@suse.com + +- Replace openSUSE by SUSE Linux Enterprise in README.SUSE +- Add a Recommends on gnome-shell-extensions-common-lang in + gnome-shell-classic. + +------------------------------------------------------------------- +Thu Mar 6 08:48:45 UTC 2014 - dimstar@opensuse.org + +- Update to version 3.11.91: + + Updated translations. + +------------------------------------------------------------------- +Mon Mar 3 08:09:52 UTC 2014 - cxiong@novell.com + +- Add gnome-shell-use-env-var-for-mode.patch: + use environment variable instead of command line to specify + mode so that the session saving can work as expected (bnc#863709, + bgo#720894). + +------------------------------------------------------------------- +Thu Feb 27 13:49:02 UTC 2014 - cxiong@novell.com + +- Various fixes and some minor tweaks. (bnc#865977, bnc#862615) + + improve indicators consistency in lock screen. + + see comment 13 of the second bug + +------------------------------------------------------------------- +Wed Feb 26 06:44:16 UTC 2014 - cxiong@novell.com + +- Various fixes (#862615) + + This commit only some of all issues listed there. + Plus some enhancements in window list style. + +------------------------------------------------------------------- +Thu Feb 20 10:01:46 UTC 2014 - zaitor@opensuse.org + +- Update to version 3.11.90: + + Several fixes and improvements to the window-list (can be + scrolled, works correctly with the OSD keyboard, filters + skip-taskbar windows, does not force all notifications to + bold). + + Drive-menu fixed not to show shadowed mounts. + + Updates for gnome-shell changes (launch-new-instance, + auto-move-windows, places-menu). + + Build system fixes for systems without /bin/bash. + + Updated translations. + +------------------------------------------------------------------- +Wed Feb 5 11:46:54 UTC 2014 - dimstar@opensuse.org + +- Update to version 3.11.5: + + window-list: update for gnome-shell changes. + + Updated translations. + +------------------------------------------------------------------- +Thu Jan 23 14:37:32 UTC 2014 - cxiong@novell.com + +- Feature: Implement SUSE Classic GNOME style + + This is a preview for review purpose mainly. + + Only one panel that resides in the bottom. + + Application menus, workspace&message indicators, window list + switcher are all integrated on this panel. + +------------------------------------------------------------------- +Fri Jan 17 19:58:14 UTC 2014 - zaitor@opensuse.org + +- Update to version 3.11.4: + + Classic mode now supports session saving. + + Updates for gnome-shell changes. + + Updated translations. + +------------------------------------------------------------------- +Fri Dec 20 20:50:36 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.11.3: + + workspace-indicator is vertically aligned now. + + Updated translations. + +------------------------------------------------------------------- +Tue Nov 19 20:46:42 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.11.2: + + Updated translations. +- Changes from version 3.11.1: + + Ignore shadowed mounts in drive-menu extension. + + Updates for gnome-shell/gjs changes. + + Updated translations. + +------------------------------------------------------------------- +Wed Oct 16 06:49:01 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.10.1: + + Updated translations. + +------------------------------------------------------------------- +Tue Sep 24 13:45:39 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.10.0: + + Updated translations. + +------------------------------------------------------------------- +Tue Sep 17 16:04:39 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.9.92: + + more updates and fixes for gnome-shell master changes and + regressions (systemMonitor, window-list, apps-menu). + + Updated translations. + +------------------------------------------------------------------- +Tue Sep 3 09:18:09 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.9.91: + + Update the classic mode session and theme to work with the new + system menu. + + The usual round of updates and fixes for gnome-shell API + changes. + + Updated translations. + +------------------------------------------------------------------- +Thu Aug 22 08:32:31 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.9.90: + + xrandr-indicator was removed, as the implementation was + incompatible with the new DisplayConfig mutter API. + + Various extensions were updated for the 3.9.90 gnome-shell API. + + Updated translations. + +------------------------------------------------------------------- +Tue Jul 30 16:28:37 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.9.5: + + alternative-status-menu was removed entirely, as it does not + fit in the designs of the new unified status menu. + + Updated translations. +- Drop gnome-shell-extension-alternative-status-menu subpackage: + the alternative status menu has been dropped. +- Remove alternative-status-menu.gschema.override source: as the + alternative status menu no longer exists, there is no need to + provide a configuration for it. + +------------------------------------------------------------------- +Thu Jul 18 11:31:22 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.9.4: + + apps-menu: fixed handling of hot corner in case of screen + reconfiguration. + + alternative-status-menu now correctly honors polkit for + hibernation. + + user-menu now loads themes from $XDG_DATA_HOME too. + + Updated translations. + +------------------------------------------------------------------- +Fri Jun 21 19:31:11 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.9.3: + + Classic mode mini extensions were replaced with a GSettings + override specified in the .json file. + + Styling of classic mode improved. + + Native-window-placement is back working on 3.9. + + Misc bug fixes. + + Updated translations. + +------------------------------------------------------------------- +Tue May 28 19:53:21 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.9.2: + + apps-menu: appearance of the scrollbars was improved. + + window-list is a little taller in classic mode (to account for + the workspace switcher). + + alternative-status-menu honors again the dconf configuration. + + Updated translations. + +------------------------------------------------------------------- +Wed May 1 08:17:08 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.9.1: + + Updates to window-list, xrandr-indicator, orkspace-indicator + and windowsNavigator for gnome-shell changes. + + Updated translations. + +------------------------------------------------------------------- +Tue Apr 16 20:36:48 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.8.1: + + Many improvements to window-list: + - Windows are activated by DND over them + - Window buttons now have the right size, even if the text is + smaller or larger than the ideal + - Window buttons can be grouped automatically when the panel + becomes crowded + - Added a workspace switcher menu + + Added keyboard navigation to apps-menu. + + Small tweaks to classic-mode theme, in particular for menus. + + Updated translations. + +------------------------------------------------------------------- +Sat Apr 13 15:50:44 UTC 2013 - dimstar@opensuse.org + +- Change gnome-classic.desktop to invoke 'gnome' instead of + 'gnome-session'. We use a wrapper script to start gnome. + +------------------------------------------------------------------- +Wed Mar 27 19:08:16 UTC 2013 - dimstar@opensuse.org + +- Fix scriptlets: move the glib2_gsettings_schema_post/postun to + the sub-package gnome-shell-extension-alternative-status-menu: + the .gschema.xml lives in this subpackage as well (bnc#811203). +- Add glib2_gsettings_schema_post/postun scriptlets for + gnome-shell-classic subpackage. + +------------------------------------------------------------------- +Tue Mar 26 10:35:49 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.8.0: + + Updated translations. + +------------------------------------------------------------------- +Tue Mar 19 08:48:07 UTC 2013 - zaitor@opensuse.org + +- Update to version 3.7.92: + + Misc bug fixes to app-menu and window-list. + + Updated translations. + +------------------------------------------------------------------- +Tue Mar 5 11:50:19 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.7.91: + + Various updates for shell changes. + + Update window-list to always use application icons + + Update apps-menu to not load subdirectories as separate + categories + + Updated translations. + +------------------------------------------------------------------- +Wed Feb 20 20:34:22 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.7.90: + + Various fixes to make places-menu behave more like Nautilus, + including showing the machine name in place of File System. + + Various updates for shell changes. + + alternative-status-menu no longer supports ConsoleKit systems, + you need to install logind to have suspend or hibernate, + +------------------------------------------------------------------- +Fri Feb 8 16:47:32 UTC 2013 - dimstar@opensuse.org + +- Create a gnome-shell-classic subpackage: + + Pass --enable-classic-mode to configure + + Extract CLASSIC_EXTENSIONS from configure and build those along + the alternative-status-menu (just passing classic does not + allow to add more extensions). + +------------------------------------------------------------------- +Fri Feb 8 15:32:04 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.7.5.1: + + New extension forgotten in previous NEWS entry: windows-list. + + Also forgotten previously: classic mode got a new GNOME2 style. + + Build fixes. +- Changes from version 3.7.5: + + places-menu is back in the classic extensions, with a new old + GNOME-2 look. + + classic mode moved the date menu to right, where we all know it + rightly belongs. + + apps-menu received a face-lift, with the inclusion of a reduced + form of AxeMenu. + + new extension in the classic set: launch-new-instance, which + modifies the behavior of clicking in the dash and app launcher. + + alternate-tab, native-window-placement and windowsNavigator + updated for gnome-shell changes. + + Updated translations. +- Drop g-s-e-power-off-elipsis.patch: mostly fixed upstream. + +------------------------------------------------------------------- +Sun Jan 20 18:51:07 UTC 2013 - dimstar@opensuse.org + +- Update to version 3.7.4: + + A separate configure switch has been added to enable classic + mode session definitions + + places-menu is no longer part of the classic-mode extension set +- Changes from version 3.7.3: + + new extensions: default-min-max, static-workspaces + + alternate-tab now uses the built-in window switcher and just + takes over the switch-application keybinding + + workspace-indicator: is no longer part of classic-mode + + we now install classic-mode data files for gdm, gnome-session + and gnome-shell, so if you enable classic-mode you get a new + session option in GDM +- Changes from version 3.7.2: + + fixed crashes with places-menu, windowsNavigator, alternate-tab + and native-window-placement + + alternate-tab now hides attached modal dialogs + + places-menu has restored support for Nautilus 3.4 + + the default for hibernate is now to show in + alternative-status-menu + + some extensions are now tagged as "classic", and can be chosen + with --enable-extensions=classic-mode + + dock and gajim were removed at the beginning of the 3.7.1 cycle, + as they were buggy and unmaintained + + Updated translations. + +------------------------------------------------------------------- +Sat Jan 19 19:23:13 UTC 2013 - dimstar@opensuse.org + +- Add g-s-e-power-off-elipsis.patch: "Power Off..." was changed to + "Power Off", but a bunch of translations missed that yet. + +------------------------------------------------------------------- +Fri Jan 18 09:34:56 UTC 2013 - dimstar@opensuse.org + +- Add alternative-status-menu.gschema.override: Enable hibernate by + default for users of the packaged version of the + alternative-status-menu extension. + +------------------------------------------------------------------- +Fri Dec 28 01:35:02 UTC 2012 - mike.catanzaro@gmail.com + +- Update to version 3.6.2: + + Ignore missing local bookmarks. + + Support historical location for bookmarks file. + + Don't fail for GIO errors getting the file name. + + native-window-placement: fix disabling the extension. +- Changes from version 3.6.1: + + Fixed alternative-status-menu for the new lock screen + + Squashed some alternate-tab warnings + + drive-menu now works with 3.6 again +- Changes from version 3.6.0: + + major rework in places menu, to make it work without + removed supporting code in the shell and to make it look like + the nautilus sidebar +- Changes from version 3.5.91: + + Various crashers were fixed in alternative-tab + + auto-move-windows now can be made to work with static + workspaces + + place-menu is now on the left and uses symbolic icons like + Files + + StIconType usage was removed from all extensions, after it was + removed in core + + systemMonitor, xrandr-indicator, apps-menu, places-menu, + alternative-status-menu were updated for the newer shell +- Changes from version 3.5.90: + + alternate-tab has been reworked again, the old mode switch + was removed and the all&thumbnails code extended to handle + icons and filtering to the workspace + + alternate-tab thumbnails now reflect the aspect ratio of the + windows + + systemMonitor now shows a tooltip above the indicator + + native-window-placement, systemMonitor and windowsNavigator + have been updated for the newer shell +- Changes from version 3.5.5: + + convenience module has been relicensed to BSD, for + compatibility with GPLv3 extensions + + alternate-tab has been refactored and seen various + improvements to all&thumbnails mode, including a new + overlaid application icon +- Changes from version 3.5.4: + + Updated translations. +- Changes from version 3.5.2: + + removable-drive-menu is now a11y friendly + + the dock can now be placed on any monitor, not just the + primary + + dock is now clipped to its monitor + + alternative-status-menu now exposes GSettings for Suspend + and Hibernate visibility - no UI yet + + more gnome-shell API changes (places-menu, + removable-drive-menu, alternative-status-menu) + + miscellaneous bug fixes (native-window-placement, gajim, + auto-move-windows) + + Updated translations. +- Add glib2_gsettings_schema macros to post/postun. + +------------------------------------------------------------------- +Fri May 25 14:25:55 UTC 2012 - vuntz@opensuse.org + +- Update to version 3.4.0: + + Build system improvements. + + Updated translations. +- Changes from version 3.3.92: + + Various updates for gnome-shell API changes (dock, + native-window-placement). + + local-install is now a make rule, not a shell script. + + Updated translations. +- Changes from version 3.3.90: + + System wide installation via "make install" is possible again. + + alternate-tab: can now pre-activate the selected window. + + auto-move-windows, workspace-indicator and example gained new + preference dialogs. + + workspace-indicator: fixed a bug wrt focus stealing prevention. + + Updated translations. +- Changes from version 3.3.5: + + Improvements to the build system and convenience module, making + it easier for other extensions to use, and bringing it up to + date with gnome-shell changes. + + All extensions were ported to the Lang.Class framework (except + xrandr-indicator, which is pending GDBus merge). + + alternate-tab and dock were slightly refactored to clean up + some old code. +- Changes from version 3.3.4: + + native-window-placement: fixed native-window-placement with + custom button layout. + + windowsNavigator: + - improved styling of tooltips. + - fixed when used with the numeric keypad. + + Updated translations. +- Changes from version 3.3.3: + + alternative-status-menu no longer conflicts with other + extensions in the user menu. + + dock: + - the default value of hide-effect is now move. + - if autohide is disabled, now it pushes maximized windows + aside. + - updated to match current core shell styling. + + drive-menu: changed to use media-eject icon instead of + media-optical. + + native-window-placement: position stategy setting was removed. + + windowsNavigator: fixed to work with azerty keyboards. + + Various other minor bug fixes. + + Updated translations. +- Changes from version 3.3.2: + + All extensions are now self-contained, including l10n and + settings. + + Introduce a convenience module that can be shared among all + extensions. + + You can know build an installable zip file with make zip-file. + + alternative-status-menu, alternate-tab: fix for master shell. + + apps-menu: no longer shows NoDisplay apps +- Changes from version 3.2.1: + + alternate-tab: both modes now work with gnome-shell 3.2. + + dock: added "move" hide effect. + + systemMonitor: + - now it enables/disables properly. + - improved styling. + + Various other bug fixes. + + Updated translations. +- Add gnome-common BuildRequires and call to ./autogen.sh in %setup + as the tarball we have is generated with "git archive" (no + tarball is published anymore upstream). +- Drop gnome-shell-extensions-fix-popup-menus.patch and + gnome-shell-extensions-make-dock-extension-work.patch: fixed + upstream. +- Rename gnome-shell-extension-alt-status-menu subpackage to + gnome-shell-extension-alternative-status-menu, following upstream + name change of the extension. Add appropriate Provides/Obsoletes + for smooth upgrades. +- Only package the alternative-status-menu extension, as we want to + avoid packaging extensions we don't ship by default. Users can + get other extensions from https://extensions.gnome.org instead: + + Remove subpackages for other extensions: + gnome-shell-extension-alternate-tab, + gnome-shell-extension-apps-menu, + gnome-shell-extension-auto-move-windows, + gnome-shell-extension-dock, gnome-shell-extension-drive-menu, + gnome-shell-extension-gajim, + gnome-shell-extension-native-window-placement, + gnome-shell-extension-places-menu, + gnome-shell-extension-systemMonitor, + gnome-shell-extension-user-theme, + gnome-shell-extension-windows-navigator, + gnome-shell-extension-workspace-indicator, + gnome-shell-extension-xrandr-indicator. + + Add Obsoletes for all those dropped subpackages to + gnome-shell-extensions-common, to help have smooth upgrades. + + Remove main subpackage, as it makes no sense anymore since we + don't build all the extensions anymore. Move README.SUSE to the + gnome-shell-extensions-common subpackage instead. + + Update README.SUSE to mention that other extensions are + available on https://extensions.gnome.org. + + Remove pkgconfig(gnome-desktop-3.0) and pkgconfig(libgtop-2.0) + BuildRequires as they were only needed for other extensions. + + Pass --enable-extensions=alternative-status-menu instead of + --enable-extensions=all to only build the + alternative-status-menu extension. + +------------------------------------------------------------------- +Fri Oct 29 09:31:01 UTC 2011 - rbrownccb@opensuse.org + +- Make it easier to install individual extensions without + installing all of them: + + This was happening because of the lang subpackage Recommends + that was bringing the main subpackage, which in term was + bringing all extensions through Recommends. + + Create a gnome-shell-extensions-common subpackage and use it + as a basis for the translations, by renaming the lang + subpackage to gnome-shell-extensions-common-lang. + + Replace gnome-shell Requires and lang Recommends in all + extensions subpackages with a Requires on + gnome-shell-extensions-common which leads to the same result. + +------------------------------------------------------------------- +Thu Oct 20 14:23:41 UTC 2011 - malcolmlewis@opensuse.org + +- Add gnome-shell-extensions-fix-popup-menus.patch: the dock + popup menus weren't working because a signal had been renamed + ('popup' -> 'open-state-changed') (bgo#661484). +- Add gnome-shell-extensions-make-dock-extension-work.patch: + without this patch, dock is invisible, but reacts on mouse + clicks. + +------------------------------------------------------------------- +Mon Oct 3 20:12:10 CEST 2011 - malcolmlewis@opensuse.org + +- Update to version 3.2.0: + + Various updates for gnome-shell API changes. +- Changes from version 3.1.91: + + Update for gnome-shell API changes in gajim. +- Changes from version 3.1.90: + + All extensions have been ported to the new extension + system (including live enable/disable). + + xrandr-indicator no longer requires a specific gjs version. + + windowsNavigator fixed for more than 2 workspaces. + + Updated translations. +- Drop + gnome-shell-extensions-fix-zero-length-warning-for-stylesheets.patch: + fixed upstream. +- Drop gnome-common BuildRequires and call to autogen.sh: we're not + using a git checkout anymore. +- Add intltool BuildRequires: it was implicitly brought in by + gnome-common before. + +------------------------------------------------------------------- +Tue Aug 9 10:20:16 CEST 2011 - dimstar@opensuse.org + +- Update to version 3.1.4: + + New: A menu for changing workspace (workspace-indicator) + + systemMonitor: lower the requirement on libgtop + + auto-move-windows: open overview when last window on last + workspace is closed + + dock: implement autohiding, with various configurable effects + + alternate-tab: more configurable implementations available + + native-window-placement: don't rearrange the windows when the + workspace switcher is shown/hidden + + update for gnome-shell 3.1.4 API changes. +- Re-enable the systemMonitor extension, as the requirements were + lowered. Remove build_systemMonitor define as the issue has been + resolved. +- Add new recommended sub-package for workspace-indicator. +- Add pkgconfig(libgtop-2.0) BuildRequires for systemMonitor. +- Add gobject-introspection BuildRequires in order to get typelib() + Requires for the packages. +- Remove bogus libgtop Requires from the systemMonitor package. + +------------------------------------------------------------------- +Thu Jul 21 09:25:54 CEST 2011 - vuntz@opensuse.org + +- Fix various typos and other small issues in summaries and + descriptions. + +------------------------------------------------------------------- +Fri Jul 8 20:45:41 UTC 2011 - malcolmlewis@opensuse.org + +- Update to version 3.1.3: + + New extensions added: + - drive-menu: A menu for removable drives. + - apps-menu: A GNOME 2 like menu for apps. + - places-menu: A GNOME 2 like menu for places. + - native-window-placement: Additional configurability for the + window layout in the overview, including a mechanism similar + to KDE4. + - systemMonitor: A message tray indicator for CPU and memory + usage (uses libgtop). + + user-theme: Fixed resetting theme and support themes installed + in /usr/share/themes. + + alternative-status-menu: ported to gnome-shell master. + + dock: ported to gnome-shell master, make position configurable + (can be left or right). + + Updated translations. +- Disable systemMonitor for now, with a %build_systemMonitor + macro. It requires libgtop >= 2.28.4 which is not available. +- Add schema requirements to dock extension. +- Change License field from GPLv2+ to GPL-2.0+ to conform with + spdx.org identifier. +- Dropped %build_drive_menu macro as it is now part of the 3.1.x + tarball. +- Add gnome-shell-extensions-fix-zero-length-warning-for- + stylesheets.patch, reported upstream as bgo#654274. + +------------------------------------------------------------------- +Tue May 24 11:36:07 CEST 2011 - dimstar@opensuse.org + +- Update to version 3.0.2: + + bgo#647386: reverting of user-theme to default + + bgo#647599: support globally installed themes + + Added license and README + + Updated translations. +- Disable drive menu extension for now, with a %build_drive_menu + macro. It was in git, but is not part of the 3.0.x tarballs. + +------------------------------------------------------------------- +Sat Apr 30 15:42:10 UTC 2011 - malcolmlewis@opensuse.org + +- Update based on git commit f016b95 (which is nearly 3.0.1): + + Add drive-menu extension. + +------------------------------------------------------------------- +Thu Apr 28 23:22:32 CEST 2011 - vuntz@opensuse.org + +- Remove fdupes BuildRequires and call to %fdupes as we package + each extension in its own subpackage. + +------------------------------------------------------------------- +Thu Apr 28 16:13:25 UTC 2011 - malcolmlewis@opensuse.org + +- Update based on git commit b223396 (which is nearly 3.0.1): + + Add Alternative Status Menu extension + + Add Gajim extension + + Add user-theme extension + + AlternateTab: make it work with the mouse + + AutoMoveWindows: modify workspace management to only remove + empty workspaces at end. + + Dock: lower the actor to the bottom. + + windowsNavigator: + - support current gnome-shell + - correct restore focus +- Split out extensions into subpackages, with + gnome-shell-extensions having a Recommends for each of them. + +------------------------------------------------------------------- +Tue Feb 22 20:39:45 UTC 2011 - dimstar@opensuse.org + +- Initial package, based on git commit b289b0f. + diff --git a/gnome-shell-extensions.obsinfo b/gnome-shell-extensions.obsinfo new file mode 100644 index 0000000..90d8ea7 --- /dev/null +++ b/gnome-shell-extensions.obsinfo @@ -0,0 +1,4 @@ +name: gnome-shell-extensions +version: 47.2 +mtime: 1732547681 +commit: 70e2a02e69261b1ae64e461503a06a2cb1c668a4 diff --git a/gnome-shell-extensions.spec b/gnome-shell-extensions.spec new file mode 100644 index 0000000..373f7e8 --- /dev/null +++ b/gnome-shell-extensions.spec @@ -0,0 +1,197 @@ +# +# spec file for package gnome-shell-extensions +# +# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2011 Dominique Leuenberger, Amsterdam, The Netherlands +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%global __requires_exclude typelib\\(Meta\\) +Name: gnome-shell-extensions +Version: 47.2 +Release: 0 +Summary: A collection of extensions for GNOME Shell +License: GPL-2.0-or-later +Group: System/GUI/GNOME +URL: https://wiki.gnome.org/Projects/GnomeShell/Extensions +Source0: %{name}-%{version}.tar.zst +Source1: README.SUSE + +# PATCH-FEATURE-OPENSUSE gnome-shell-add-app-to-desktop.patch bnc#870580 dliang@suse.com -- allow adding app shortcut to desktop easily. +Patch1: gnome-shell-add-app-to-desktop.patch + +## NOTE keep SLE Classic patch at the bottom +BuildRequires: fdupes +# Needed for directory ownership +BuildRequires: gnome-shell +# gobject-introspection is needed for the typelib() rpm magic. +BuildRequires: gobject-introspection +BuildRequires: meson >= 0.53.0 +BuildRequires: sassc + +%description +GNOME Shell Extensions is a collection of extensions providing +additional and optional functionality to GNOME Shell. + +%package common +Summary: Common files for GNOME Shell extensions +Group: System/GUI/GNOME +Requires: gnome-shell +# Obsoletes for metapackage and extensions from gnome-shell-extensions that we used to package +Obsoletes: gnome-shell-extension-alternate-tab < %{version} +Obsoletes: gnome-shell-extension-apps-menu < %{version} +Obsoletes: gnome-shell-extension-auto-move-windows < %{version} +Obsoletes: gnome-shell-extension-dock < %{version} +Obsoletes: gnome-shell-extension-drive-menu < %{version} +Obsoletes: gnome-shell-extension-gajim < %{version} +Obsoletes: gnome-shell-extension-native-window-placement < %{version} +Obsoletes: gnome-shell-extension-places-menu < %{version} +Obsoletes: gnome-shell-extension-systemMonitor < %{version} +Obsoletes: gnome-shell-extension-windows-navigator < %{version} +Obsoletes: gnome-shell-extension-workspace-indicator < %{version} +Obsoletes: gnome-shell-extension-xrandr-indicator < %{version} +Obsoletes: gnome-shell-extensions < %{version} +BuildArch: noarch + +%description common +This package provides files common to several GNOME Shell Extensions + +%package -n gnome-shell-classic +Summary: A collection of extensions for Gnome-shell classic +Group: System/GUI/GNOME +Requires: gnome-shell-extensions-common +Obsoletes: gnome-shell-classic-session < %{version} +Obsoletes: gnome-shell-extension-desktop-icons < %{version} +BuildArch: noarch + +%description -n gnome-shell-classic +This GNOME Shell extension adds a power off item in the status +menu, and provides the ability to hibernate. + +This package provides the extensions required to switch to +gnome-shell classic. + +%package -n gnome-shell-classic-xsession +Summary: Xsession(X11) desktop session +Requires: gnome-session-xsession +Requires: gnome-shell-classic +Requires: gnome-shell-extensions-common +Provides: gnome-shell-classic:%{_datadir}/xsessions/gnome-classic-xorg.desktop +BuildArch: noarch + +%description -n gnome-shell-classic-xsession +This package allows GNOME Shell to run the session on Xorg (X11). + +%package -n gnome-shell-extension-user-theme +Summary: Allow the user to change GNOME Shell Themes +Group: System/GUI/GNOME +BuildArch: noarch + +%description -n gnome-shell-extension-user-theme +This extension allows the user to switch to different themes. It's possible +to pick system installed themes or even themes installed in the user's home. + +%package -n gnome-shell-extension-system-monitor +Summary: System monitor for GNOME Shell +Group: System/GUI/GNOME +BuildArch: noarch +Recommends: gnome-system-monitor + +%description -n gnome-shell-extension-system-monitor +This GNOME Shell extension displays system usage information in the top bar. + +%lang_package -n %{name}-common + +%prep +%autosetup -N +# Needs rebase +#patch1 -p1 + +# In openSUSE GNOME, we don't launch gnome-session directly, but wrap this through a shell script, /usr/bin/gnome +sed -i "s:Exec=gnome-session:Exec=gnome:g" data/gnome-classic.desktop.in +cp %{SOURCE1} . +%if 0%{?sle_version} +sed -i -e 's/openSUSE/SUSE Linux Enterprise/g' README.SUSE +%endif + +%build +%meson \ + -D classic_mode=true \ + -D extension_set=classic \ + -D enable_extensions="apps-menu,places-menu,launch-new-instance,window-list,workspace-indicator,user-theme,system-monitor,status-icons" +%meson_build + +%install +%meson_install +%find_lang %{name} %{?no_lang_C} +%fdupes %{buildroot}%{_datadir} + +%if 0%{?sle_version} +# Prepare for 'default.desktop' being update-alternative handled, boo#1039756 +mkdir -p %{buildroot}%{_sysconfdir}/alternatives +touch %{buildroot}%{_sysconfdir}/alternatives/default-xsession.desktop +ln -s %{_sysconfdir}/alternatives/default-xsession.desktop %{buildroot}%{_datadir}/xsessions/default.desktop +touch %{buildroot}%{_sysconfdir}/alternatives/default-waylandsession.desktop +install -d -m755 %{buildroot}%{_datadir}/wayland-sessions +ln -s %{_sysconfdir}/alternatives/default-waylandsession.desktop %{buildroot}%{_datadir}/wayland-sessions/default.desktop +%endif + +%files common +%license COPYING +%doc README.SUSE HACKING.md NEWS README.md + +%files -n gnome-shell-classic +%{_datadir}/glib-2.0/schemas/00_org.gnome.shell.extensions.classic.gschema.override +%{_datadir}/glib-2.0/schemas/org.gnome.shell.extensions.apps-menu.gschema.xml +%{_datadir}/glib-2.0/schemas/org.gnome.shell.extensions.window-list.gschema.xml +%{_datadir}/glib-2.0/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml +%dir %{_datadir}/gnome-shell/extensions +%{_datadir}/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/ +%{_datadir}/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com/ +%{_datadir}/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/ +%{_datadir}/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com/ +%{_datadir}/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/ +%{_datadir}/gnome-shell/extensions/status-icons@gnome-shell-extensions.gcampax.github.com/ +%dir %{_datadir}/gnome-shell/modes +%{_datadir}/gnome-shell/modes/classic.json +%dir %{_datadir}/wayland-sessions +%{_datadir}/wayland-sessions/gnome-classic-wayland.desktop +%{_datadir}/wayland-sessions/gnome-classic.desktop +%if 0%{?sle_version} +%dir %{_datadir}/wayland-sessions +%{_datadir}/wayland-sessions/default.desktop +%ghost %{_sysconfdir}/alternatives/default-waylandsession.desktop +%endif + +%files -n gnome-shell-classic-xsession +%{_datadir}/xsessions/gnome-classic-xorg.desktop +%{_datadir}/xsessions/gnome-classic.desktop +%if 0%{?sle_version} +%{_datadir}/xsessions/default.desktop +%ghost %{_sysconfdir}/alternatives/default-xsession.desktop +%endif + +%files -n gnome-shell-extension-user-theme +%license COPYING +%{_datadir}/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/ +%{_datadir}/glib-2.0/schemas/org.gnome.shell.extensions.user-theme.gschema.xml + +%files -n gnome-shell-extension-system-monitor +%license COPYING +%{_datadir}/glib-2.0/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml +%{_datadir}/gnome-shell/extensions/system-monitor@gnome-shell-extensions.gcampax.github.com/ + +%files common-lang -f %{name}.lang + +%changelog