Compare commits

..

5 Commits

Author SHA1 Message Date
Lucas Oskorep 2fa02eac85 fix: build
Build and Test / build (push) Successful in 25s
Build and Test / release (push) Successful in 3s
2026-06-15 15:39:02 -04:00
Lucas Oskorep 6dfb107ad9 feat: ver-bump
Build and Test / build (push) Failing after 1m13s
Build and Test / release (push) Has been skipped
2026-06-15 15:32:52 -04:00
Lucas Oskorep e2fc4e7127 feat: update all packages 2026-06-15 15:31:41 -04:00
Lucas Oskorep bf7fe98b05 fix: ci
Build and Test / build (push) Successful in 25s
Build and Test / release (push) Successful in 13s
2026-06-15 15:22:36 -04:00
Lucas Oskorep 4a2067811c fix: ci
Build and Test / build (push) Failing after 17s
Build and Test / release (push) Has been skipped
2026-06-15 11:53:49 -04:00
6 changed files with 907 additions and 1006 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 run: pnpm install --ignore-scripts
- name: Run unit tests - name: Run unit tests
run: just test run: just test
+1
View File
@@ -0,0 +1 @@
pnpm-exec-install=false
+9 -29
View File
@@ -1,6 +1,6 @@
{ {
"name": "aerospike", "name": "aerospike",
"version": "0.2.3", "version": "0.2.4",
"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,37 +24,17 @@
"test:coverage": "jest --coverage" "test:coverage": "jest --coverage"
}, },
"devDependencies": { "devDependencies": {
"@girs/gjs": "4.0.0-beta.38", "@girs/gjs": "4.0.4",
"@girs/gnome-shell": "50.0.0", "@girs/gnome-shell": "50.0.0",
"@jest/globals": "^30.0.0", "@jest/globals": "^30.4.1",
"@types/jest": "^30.0.0", "@types/jest": "^30.0.0",
"eslint": "^10.0.0", "eslint": "^10.5.0",
"eslint-plugin-jsdoc": "^63.0.0", "eslint-plugin-jsdoc": "^63.0.2",
"jest": "^30.0.0", "jest": "^30.4.2",
"ts-jest": "^29.1.2", "ts-jest": "^29.4.11",
"typescript": "^6.0.0" "typescript": "^6.0.3"
}, },
"dependencies": { "dependencies": {
"@girs/mtk-17": "17.0.0-4.0.0-beta.38" "@girs/mtk-17": "17.0.0-4.0.4"
},
"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"
}
} }
} }
+893 -976
View File
File diff suppressed because it is too large Load Diff
+2
View File
@@ -0,0 +1,2 @@
allowBuilds:
unrs-resolver: true
+1
View File
@@ -173,6 +173,7 @@ 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