Bump to version 68.5.3

This commit is contained in:
Artyom Zorin
2025-08-07 00:11:11 +01:00
parent 582b8b280b
commit a4f86d41f8
3 changed files with 22 additions and 0 deletions
+9
View File
@@ -58,6 +58,12 @@ export default class ZorinTaskbarExtension extends Extension {
}
async enable() {
// Workaround for race condition in GNOME Shell where enable() may be called multiple times
if (this._alreadyEnabled) {
return
}
this._alreadyEnabled = true
DTP_EXTENSION = this
SETTINGS = this.getSettings('org.gnome.shell.extensions.zorin-taskbar')
try {
@@ -124,6 +130,7 @@ export default class ZorinTaskbarExtension extends Extension {
zorinDashDelayId = 0
panelManager?.disable()
PanelSettings.clearCache()
DTP_EXTENSION = null
SETTINGS = null
@@ -140,6 +147,8 @@ export default class ZorinTaskbarExtension extends Extension {
this.disableGlobalStyles()
AppIcons.resetRecentlyClickedApp()
this._alreadyEnabled = false
}
resetGlobalStyles() {
+1
View File
@@ -45,6 +45,7 @@ export var availableMonitors = []
export async function init(settings) {
useCache = true
cache = {}
await setMonitorsInfo(settings)
}