1 Commits

Author SHA1 Message Date
Artyom Zorin 582b8b280b Bump to version 68.5.1 2025-08-05 22:50:54 +01:00
2 changed files with 11 additions and 7 deletions
+6
View File
@@ -1,3 +1,9 @@
gnome-shell-extension-zorin-taskbar (68.5.1) noble; urgency=medium
* Minor code cleanups
-- Artyom Zorin <azorin@zoringroup.com> Tue, 05 Aug 2025 22:47:20 +0100
gnome-shell-extension-zorin-taskbar (68.5) noble; urgency=medium gnome-shell-extension-zorin-taskbar (68.5) noble; urgency=medium
* Rebased on upstream commit 16e16c11ce08abc3c9f0bf922bbc08e17b2c1f08 * Rebased on upstream commit 16e16c11ce08abc3c9f0bf922bbc08e17b2c1f08
+5 -7
View File
@@ -36,7 +36,6 @@ const ZORIN_DASH_UUID = 'zorin-dash@zorinos.com'
export const ZORIN_TILING_SHELL_UUID = 'zorin-tiling-shell@zorinos.com' export const ZORIN_TILING_SHELL_UUID = 'zorin-tiling-shell@zorinos.com'
let panelManager let panelManager
let startupCompleteHandler
let zorinDashDelayId = 0 let zorinDashDelayId = 0
export let DTP_EXTENSION = null export let DTP_EXTENSION = null
@@ -122,26 +121,25 @@ export default class ZorinTaskbarExtension extends Extension {
disable() { disable() {
if (zorinDashDelayId) GLib.Source.remove(zorinDashDelayId) if (zorinDashDelayId) GLib.Source.remove(zorinDashDelayId)
zorinDashDelayId = 0
panelManager.disable() panelManager?.disable()
DTP_EXTENSION = null DTP_EXTENSION = null
SETTINGS = null SETTINGS = null
TILINGSETTINGS = null
SHELLSETTINGS = null SHELLSETTINGS = null
DESKTOPSETTINGS = null DESKTOPSETTINGS = null
TERMINALSETTINGS = null TERMINALSETTINGS = null
NOTIFICATIONSSETTINGS = null
panelManager = null panelManager = null
tracker = null
delete global.zorinTaskbar delete global.zorinTaskbar
this.disableGlobalStyles() this.disableGlobalStyles()
AppIcons.resetRecentlyClickedApp() AppIcons.resetRecentlyClickedApp()
if (startupCompleteHandler) {
Main.layoutManager.disconnect(startupCompleteHandler)
startupCompleteHandler = null
}
} }
resetGlobalStyles() { resetGlobalStyles() {