Bump to version 68.3

This commit is contained in:
Artyom Zorin
2025-07-07 13:00:30 +01:00
parent 34717961b6
commit f6c8dd38ce
2 changed files with 6 additions and 14 deletions

6
debian/changelog vendored
View File

@@ -1,3 +1,9 @@
gnome-shell-extension-zorin-taskbar (68.3) noble; urgency=medium
* Removed code to handle overview startup animation
-- Artyom Zorin <azorin@zoringroup.com> 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

View File

@@ -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() {