Compare commits

..

1 Commits

Author SHA1 Message Date
Renovate Bot 0907b8e48b chore(deps): update all-major-updates
Build and Test / build (pull_request) Failing after 17s
Build and Test / release (pull_request) Has been skipped
2026-06-15 09:13:21 +00:00
6 changed files with 1005 additions and 906 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ jobs:
apt-get install -y libglib2.0-dev glib-networking zip apt-get install -y libglib2.0-dev glib-networking zip
- name: Install project dependencies - name: Install project dependencies
run: pnpm install --ignore-scripts run: pnpm install
- name: Run unit tests - name: Run unit tests
run: just test run: just test
-1
View File
@@ -1 +0,0 @@
pnpm-exec-install=false
+29 -9
View File
@@ -1,6 +1,6 @@
{ {
"name": "aerospike", "name": "aerospike",
"version": "0.2.4", "version": "0.2.3",
"description": "Simple, Opinionated Tiling Window Manager for Gnome written in Typescript", "description": "Simple, Opinionated Tiling Window Manager for Gnome written in Typescript",
"type": "module", "type": "module",
"private": true, "private": true,
@@ -24,17 +24,37 @@
"test:coverage": "jest --coverage" "test:coverage": "jest --coverage"
}, },
"devDependencies": { "devDependencies": {
"@girs/gjs": "4.0.4", "@girs/gjs": "4.0.0-beta.38",
"@girs/gnome-shell": "50.0.0", "@girs/gnome-shell": "50.0.0",
"@jest/globals": "^30.4.1", "@jest/globals": "^30.0.0",
"@types/jest": "^30.0.0", "@types/jest": "^30.0.0",
"eslint": "^10.5.0", "eslint": "^10.0.0",
"eslint-plugin-jsdoc": "^63.0.2", "eslint-plugin-jsdoc": "^63.0.0",
"jest": "^30.4.2", "jest": "^30.0.0",
"ts-jest": "^29.4.11", "ts-jest": "^29.1.2",
"typescript": "^6.0.3" "typescript": "^6.0.0"
}, },
"dependencies": { "dependencies": {
"@girs/mtk-17": "17.0.0-4.0.4" "@girs/mtk-17": "17.0.0-4.0.0-beta.38"
},
"pnpm": {
"overrides": {
"@girs/cairo-1.0": "1.0.0-4.0.0-beta.38",
"@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38",
"@girs/gdk-4.0": "4.0.0-4.0.0-beta.38",
"@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.38",
"@girs/gio-2.0": "2.86.0-4.0.0-beta.38",
"@girs/gjs": "4.0.0-beta.38",
"@girs/glib-2.0": "2.86.0-4.0.0-beta.38",
"@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38",
"@girs/gobject-2.0": "2.86.0-4.0.0-beta.38",
"@girs/graphene-1.0": "1.0.0-4.0.0-beta.38",
"@girs/gsk-4.0": "4.0.0-4.0.0-beta.38",
"@girs/gtk-4.0": "4.20.1-4.0.0-beta.38",
"@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38",
"@girs/mtk-17": "17.0.0-4.0.0-beta.38",
"@girs/pango-1.0": "1.57.0-4.0.0-beta.38",
"@girs/pangocairo-1.0": "1.0.0-4.0.0-beta.38"
}
} }
} }
+975 -892
View File
File diff suppressed because it is too large Load Diff
-2
View File
@@ -1,2 +0,0 @@
allowBuilds:
unrs-resolver: true
-1
View File
@@ -173,7 +173,6 @@ export default class AerospikeExtensions extends ExtensionPreferences {
if (!!value) { if (!!value) {
const mappings = value.split(',').map((x) => { const mappings = value.split(',').map((x) => {
const [, key, mods] = Gtk.accelerator_parse(x); const [, key, mods] = Gtk.accelerator_parse(x);
if (mods === null) return false;
return Gtk.accelerator_valid(key, mods) && Gtk.accelerator_name(key, mods); return Gtk.accelerator_valid(key, mods) && Gtk.accelerator_name(key, mods);
}); });
// Filter out any false values to ensure we only have strings // Filter out any false values to ensure we only have strings