Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
35e98e2061 |
6
debian/changelog
vendored
6
debian/changelog
vendored
@@ -1,3 +1,9 @@
|
|||||||
|
gnome-shell-extension-zorin-taskbar (68.2) noble; urgency=medium
|
||||||
|
|
||||||
|
* Corrected code to detect Tiling Shell gap offset
|
||||||
|
|
||||||
|
-- Artyom Zorin <azorin@zoringroup.com> Sat, 10 May 2025 23:52:12 +0100
|
||||||
|
|
||||||
gnome-shell-extension-zorin-taskbar (68.1) noble; urgency=medium
|
gnome-shell-extension-zorin-taskbar (68.1) noble; urgency=medium
|
||||||
|
|
||||||
* Adjusted app icon margins and padding
|
* Adjusted app icon margins and padding
|
||||||
|
|||||||
@@ -42,6 +42,7 @@ let zorinDashDelayId = 0
|
|||||||
export let DTP_EXTENSION = null
|
export let DTP_EXTENSION = null
|
||||||
export let SETTINGS = null
|
export let SETTINGS = null
|
||||||
export let TILINGSETTINGS = null
|
export let TILINGSETTINGS = null
|
||||||
|
export let SHELLSETTINGS = null
|
||||||
export let DESKTOPSETTINGS = null
|
export let DESKTOPSETTINGS = null
|
||||||
export let TERMINALSETTINGS = null
|
export let TERMINALSETTINGS = null
|
||||||
export let NOTIFICATIONSSETTINGS = null
|
export let NOTIFICATIONSSETTINGS = null
|
||||||
@@ -69,6 +70,9 @@ export default class ZorinTaskbarExtension extends Extension {
|
|||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(e)
|
console.log(e)
|
||||||
}
|
}
|
||||||
|
SHELLSETTINGS = new Gio.Settings({
|
||||||
|
schema_id: 'org.gnome.shell',
|
||||||
|
})
|
||||||
DESKTOPSETTINGS = new Gio.Settings({
|
DESKTOPSETTINGS = new Gio.Settings({
|
||||||
schema_id: 'org.gnome.desktop.interface',
|
schema_id: 'org.gnome.desktop.interface',
|
||||||
})
|
})
|
||||||
@@ -135,6 +139,7 @@ export default class ZorinTaskbarExtension extends Extension {
|
|||||||
|
|
||||||
DTP_EXTENSION = null
|
DTP_EXTENSION = null
|
||||||
SETTINGS = null
|
SETTINGS = null
|
||||||
|
SHELLSETTINGS = null
|
||||||
DESKTOPSETTINGS = null
|
DESKTOPSETTINGS = null
|
||||||
TERMINALSETTINGS = null
|
TERMINALSETTINGS = null
|
||||||
panelManager = null
|
panelManager = null
|
||||||
|
|||||||
@@ -59,6 +59,7 @@ import * as Transparency from './transparency.js'
|
|||||||
import {
|
import {
|
||||||
SETTINGS,
|
SETTINGS,
|
||||||
TILINGSETTINGS,
|
TILINGSETTINGS,
|
||||||
|
SHELLSETTINGS,
|
||||||
DESKTOPSETTINGS,
|
DESKTOPSETTINGS,
|
||||||
PERSISTENTSTORAGE,
|
PERSISTENTSTORAGE,
|
||||||
EXTENSION_PATH,
|
EXTENSION_PATH,
|
||||||
@@ -1078,7 +1079,7 @@ export const Panel = GObject.registerClass(
|
|||||||
|
|
||||||
if (
|
if (
|
||||||
TILINGSETTINGS != null &&
|
TILINGSETTINGS != null &&
|
||||||
Main.extensionManager._extensionOrder.includes(ZORIN_TILING_SHELL_UUID) &&
|
SHELLSETTINGS.get_strv('enabled-extensions').includes(ZORIN_TILING_SHELL_UUID) &&
|
||||||
TILINGSETTINGS.get_uint('outer-gaps') > 0
|
TILINGSETTINGS.get_uint('outer-gaps') > 0
|
||||||
) {
|
) {
|
||||||
let position = this.getPosition()
|
let position = this.getPosition()
|
||||||
|
|||||||
Reference in New Issue
Block a user