Compare commits
54 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 05a1adb5ff | |||
| 0d81c99618 | |||
| 0546da32ee | |||
| ca64fa5fe1 | |||
| f6a08ab52e | |||
| cfd295a766 | |||
| e33b057c10 | |||
| e554feca92 | |||
| 16d490844e | |||
| ce9f643daa | |||
| 7b75f6481e | |||
| 8a17bf432b | |||
| e3a3149ed1 | |||
| 9bb8ba0724 | |||
| b5c2ecaad1 | |||
| 6cf93ca7ae | |||
| 185ce958cd | |||
| 40fe725a36 | |||
| 44fd52dd77 | |||
| 294c8c2f6b | |||
| 0cf5de6178 | |||
| 7279de66a0 | |||
| abfd04a7a8 | |||
| e2a18e35fc | |||
| 6b41af61cc | |||
| 666f05fc72 | |||
| 0f01145edb | |||
| ee0ed1bac4 | |||
| 05e3529277 | |||
| b508ca589f | |||
| a41ea2492f | |||
| 0d5d0f942c | |||
| 1285dca723 | |||
| a383a34900 | |||
| c9a6d64ca3 | |||
| 52ebd96a48 | |||
| ce202ef73f | |||
| 0a81829886 | |||
| d4f528945a | |||
| e09f0aa0fc | |||
| 47970f591d | |||
| e6e6e976b4 | |||
| 57be4ee903 | |||
| 185de5a88e | |||
| ea0b902ef2 | |||
| d3986dd08e | |||
| 0efc0dbf50 | |||
| 7e493d04d3 | |||
| c71cc19ef4 | |||
| f5ae2a7474 | |||
| ef6c184033 | |||
| 9f506b7993 | |||
| a450eccedb | |||
| 541e691849 |
@@ -1 +0,0 @@
|
||||
25
|
||||
@@ -8,7 +8,7 @@ packages:
|
||||
|
||||
build: packages && build-schemas
|
||||
rm -rf dist/*
|
||||
pnpm run build
|
||||
pnpm exec tsc
|
||||
cp metadata.json dist/
|
||||
cp stylesheet.css dist/
|
||||
mkdir -p dist/schemas
|
||||
@@ -47,12 +47,6 @@ test-coverage:
|
||||
ci-local:
|
||||
act -W .gitea/workflows/build.yaml
|
||||
|
||||
lint:
|
||||
pnpm run lint
|
||||
|
||||
clean:
|
||||
pnpm run clean
|
||||
|
||||
#pack: build
|
||||
# gnome-extensions pack dist \
|
||||
# --force \
|
||||
|
||||
+1
-4
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "aerospike",
|
||||
"version": "0.2.2",
|
||||
"version": "0.2.1",
|
||||
"description": "Simple, Opinionated Tiling Window Manager for Gnome written in Typescript",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
@@ -16,9 +16,6 @@
|
||||
"homepage": "https://github.com/lucasoskorep/aerospike-gnome/#readme",
|
||||
"sideEffects": false,
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"clean": "rm -rf dist/*",
|
||||
"lint": "eslint .",
|
||||
"test": "jest",
|
||||
"test:watch": "jest --watch",
|
||||
"test:coverage": "jest --coverage"
|
||||
|
||||
Generated
+522
-673
File diff suppressed because it is too large
Load Diff
@@ -47,10 +47,6 @@ export class WindowWrapper {
|
||||
return this._window.get_frame_rect();
|
||||
}
|
||||
|
||||
isFullscreen(): boolean {
|
||||
return this._window.is_fullscreen();
|
||||
}
|
||||
|
||||
getTabLabel(): string {
|
||||
const rawAppName = this._window.get_wm_class() ?? '';
|
||||
// Strip reverse-domain prefix (e.g. "org.gnome.Nautilus" -> "Nautilus")
|
||||
@@ -144,11 +140,6 @@ export class WindowWrapper {
|
||||
return;
|
||||
}
|
||||
|
||||
if (this.isFullscreen()) {
|
||||
Logger.info("STOPPED RESIZE BECAUSE WINDOW IS FULLSCREEN");
|
||||
return;
|
||||
}
|
||||
|
||||
const actor = this._window.get_compositor_private() as Clutter.Actor | null;
|
||||
if (!actor) {
|
||||
Logger.log("No actor available, can't resize safely yet");
|
||||
|
||||
Reference in New Issue
Block a user