From f6c8dd38cedb5c6033c4be7861c08ad46deccca8 Mon Sep 17 00:00:00 2001 From: Artyom Zorin Date: Mon, 7 Jul 2025 13:00:30 +0100 Subject: [PATCH] Bump to version 68.3 --- debian/changelog | 6 ++++++ src/extension.js | 14 -------------- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/debian/changelog b/debian/changelog index 50ea70b..eea6f95 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +gnome-shell-extension-zorin-taskbar (68.3) noble; urgency=medium + + * Removed code to handle overview startup animation + + -- Artyom Zorin Mon, 07 Jul 2025 12:56:41 +0100 + gnome-shell-extension-zorin-taskbar (68.2.3) noble; urgency=medium * Fixed logic error when adjusting panel menu buttons diff --git a/src/extension.js b/src/extension.js index ffa9018..336a850 100644 --- a/src/extension.js +++ b/src/extension.js @@ -54,8 +54,6 @@ export default class ZorinTaskbarExtension extends Extension { constructor(metadata) { super(metadata) - this._realHasOverview = Main.sessionMode.hasOverview - //create an object that persists until gnome-shell is restarted, even if the extension is disabled PERSISTENTSTORAGE = {} } @@ -94,16 +92,6 @@ export default class ZorinTaskbarExtension extends Extension { // To remove later, try to map settings using monitor indexes to monitor ids PanelSettings.adjustMonitorSettings(SETTINGS) - Main.layoutManager.startInOverview = false - - if (Main.layoutManager._startingUp) { - Main.sessionMode.hasOverview = false - startupCompleteHandler = Main.layoutManager.connect( - 'startup-complete', - () => (Main.sessionMode.hasOverview = this._realHasOverview), - ) - } - this.enableGlobalStyles() let completeEnable = () => { @@ -154,8 +142,6 @@ export default class ZorinTaskbarExtension extends Extension { Main.layoutManager.disconnect(startupCompleteHandler) startupCompleteHandler = null } - - Main.sessionMode.hasOverview = this._realHasOverview } resetGlobalStyles() {