diff --git a/.gitignore b/.gitignore index ad203f2..87fe453 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ .direnv/ node_modules/ -auto-rotate@henryhiles.com.zip \ No newline at end of file +fullscreen-rotate@henryhiles.com.zip \ No newline at end of file diff --git a/README.md b/README.md index 3382a77..7b78670 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ An extension to automatically rotate the screen when a window is fullscreened, useful for GNOME Shell Mobile. + +Grab the zip from [the latest release](https://git.federated.nexus/Henry-Hiles/fullscreen-rotate/releases/latest), and install with `gnome-extensions install -f `. Enjoy! diff --git a/flake.nix b/flake.nix index 095da82..9759202 100644 --- a/flake.nix +++ b/flake.nix @@ -14,7 +14,7 @@ system, ... }: let - name = "auto-rotate"; + name = "fullscreen-rotate"; uuid = "${name}@henryhiles.com"; extDir = "share/gnome-shell/extensions/${uuid}"; in { @@ -26,11 +26,11 @@ packages.default = pkgs.buildNpmPackage (finalAttrs: { pname = name; - version = "1.0.0"; + version = "1.0.1"; src = ./.; nativeBuildInputs = with pkgs; [typescript]; - npmDepsHash = "sha256-YlKPinb6wmpo6kL/lL7DQnhVmnR9zJaIOKGzBg9kvRM="; + npmDepsHash = "sha256-t2WNmLP6ip1sraRgQRsETuarw3D2bDVMfuhzQtpR/z4="; buildPhase = '' tsc @@ -43,7 +43,7 @@ ''; meta = { - homepage = "https://git.federated.nexus/Henry-Hiles/auto-rotate"; + homepage = "https://git.federated.nexus/Henry-Hiles/fullscreen-rotate"; description = "An extension to automatically rotate the screen when a window is fullscreened, useful for GNOME Shell Mobile."; license = lib.licenses.gpl3Only; maintainers = [lib.maintainers.quadradical]; diff --git a/metadata.json b/metadata.json index 790b393..681a67c 100644 --- a/metadata.json +++ b/metadata.json @@ -1,8 +1,8 @@ { - "name": "Auto Rotate", + "name": "Fullscreen Rotate", "description": "An extension to automatically rotate the screen when a window is fullscreened, useful for GNOME Shell Mobile.", - "uuid": "auto-rotate@henryhiles.com", - "url": "https://git.federated.nexus/Henry-Hiles/auto-rotate", - "settings-schema": "org.gnome.shell.extensions.auto-rotate", + "uuid": "fullscreen-rotate@henryhiles.com", + "url": "https://git.federated.nexus/Henry-Hiles/fullscreen-rotate", + "settings-schema": "org.gnome.shell.extensions.fullscreen-rotate", "shell-version": ["48", "49"] } diff --git a/package-lock.json b/package-lock.json index d84721c..2a68492 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "auto-rotate", + "name": "fullscreen-rotate", "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "auto-rotate", + "name": "fullscreen-rotate", "version": "1.0.0", "license": "GPL-3.0-only", "dependencies": { diff --git a/package.json b/package.json index 44bf044..7e0aea0 100644 --- a/package.json +++ b/package.json @@ -1,19 +1,19 @@ { - "name": "auto-rotate", - "version": "1.0.0", + "name": "fullscreen-rotate", + "version": "1.0.1", "description": "An extension to automatically rotate the screen when a window is fullscreened, useful for GNOME Shell Mobile.", "type": "module", "private": true, "repository": { "type": "git", - "url": "git+https://git.federated.nexus/Henry-Hiles/auto-rotate.git" + "url": "git+https://git.federated.nexus/Henry-Hiles/fullscreen-rotate.git" }, "author": "Henry Hiles", "license": "GPL-3.0-only", "bugs": { - "url": "https://git.federated.nexus/Henry-Hiles/auto-rotate/issues" + "url": "https://git.federated.nexus/Henry-Hiles/fullscreen-rotate/issues" }, - "homepage": "https://git.federated.nexus/Henry-Hiles/auto-rotate", + "homepage": "https://git.federated.nexus/Henry-Hiles/fullscreen-rotate", "devDependencies": { "eslint": "^9.33.0", "eslint-plugin-jsdoc": "^52.0.4",