diff --git a/docs.json b/docs.json index 4c003e3..f15f5b9 100644 --- a/docs.json +++ b/docs.json @@ -18,7 +18,7 @@ "Gdk": ["4.0", "3.0"], "GdkPixbuf": ["2.0"], "GLib": ["2.0"], - "Meta": ["9"], - "Cogl": ["9"] + "Meta": ["10"], + "Cogl": ["10"] } } diff --git a/package.json b/package.json index 8d9d60e..61ba862 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "scripts": { "build": "yarn run lock:types && yarn run build:types && yarn run build:ts && yarn run build:extension", "clean": "yarn run clean:ts && yarn run build:types", - "lock:types": "cross-env XDG_DATA_DIRS=$XDG_DATA_DIRS:/usr/share/gnome-shell:/usr/lib/mutter-9 yarn run gi-ts config --lock", + "lock:types": "cross-env XDG_DATA_DIRS=$XDG_DATA_DIRS:/usr/share/gnome-shell:/usr/lib/mutter-10 yarn run gi-ts config --lock", "build:types": "yarn run clean:types && gi-ts generate", "clean:types": "rm -rf ./@types", "build:ts": "yarn run clean:ts && rollup -c", diff --git a/resources/metadata.json b/resources/metadata.json index bcd10e4..fcdc40d 100644 --- a/resources/metadata.json +++ b/resources/metadata.json @@ -5,5 +5,5 @@ "version": 999, "settings-schema": "org.gnome.shell.extensions.extensions-sync", "url": "https://github.com/oae/gnome-shell-extensions-sync", - "shell-version": ["40", "41"] + "shell-version": ["40", "41", "42"] } diff --git a/rollup.config.js b/rollup.config.js index 13d07bd..08d73c7 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -15,7 +15,7 @@ const globals = { '@imports/glib2': 'imports.gi.GLib', '@imports/st1': 'imports.gi.St', '@imports/shell0': 'imports.gi.Shell', - '@imports/meta9': 'imports.gi.Meta', + '@imports/meta10': 'imports.gi.Meta', '@imports/soup2': 'imports.gi.Soup', '@imports/gobject2': 'imports.gi.GObject', }; diff --git a/src/shell/index.ts b/src/shell/index.ts index a197f63..0bde362 100644 --- a/src/shell/index.ts +++ b/src/shell/index.ts @@ -1,7 +1,7 @@ import { execute, logger } from '@esync/utils'; import { File, FileCreateFlags, file_new_tmp, Settings } from '@imports/gio2'; import { PRIORITY_DEFAULT } from '@imports/glib2'; -import { is_wayland_compositor, restart } from '@imports/meta9'; +import { is_wayland_compositor, restart } from '@imports/meta10'; const debug = logger('shell');