This commit is contained in:
Henry Hiles 2025-08-12 17:22:44 -04:00
commit 63b065428b
No known key found for this signature in database
5 changed files with 12 additions and 12 deletions

2
.gitignore vendored
View file

@ -1,3 +1,3 @@
.direnv/ .direnv/
node_modules/ node_modules/
auto-rotate@henryhiles.com.zip fullscreen-rotate@henryhiles.com.zip

View file

@ -14,7 +14,7 @@
system, system,
... ...
}: let }: let
name = "auto-rotate"; name = "fullscreen-rotate";
uuid = "${name}@henryhiles.com"; uuid = "${name}@henryhiles.com";
extDir = "share/gnome-shell/extensions/${uuid}"; extDir = "share/gnome-shell/extensions/${uuid}";
in { in {
@ -43,7 +43,7 @@
''; '';
meta = { 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."; description = "An extension to automatically rotate the screen when a window is fullscreened, useful for GNOME Shell Mobile.";
license = lib.licenses.gpl3Only; license = lib.licenses.gpl3Only;
maintainers = [lib.maintainers.quadradical]; maintainers = [lib.maintainers.quadradical];

View file

@ -1,8 +1,8 @@
{ {
"name": "Auto Rotate", "name": "Auto Rotate",
"description": "An extension to automatically rotate the screen when a window is fullscreened, useful for GNOME Shell Mobile.", "description": "An extension to automatically rotate the screen when a window is fullscreened, useful for GNOME Shell Mobile.",
"uuid": "auto-rotate@henryhiles.com", "uuid": "fullscreen-rotate@henryhiles.com",
"url": "https://git.federated.nexus/Henry-Hiles/auto-rotate", "url": "https://git.federated.nexus/Henry-Hiles/fullscreen-rotate",
"settings-schema": "org.gnome.shell.extensions.auto-rotate", "settings-schema": "org.gnome.shell.extensions.fullscreen-rotate",
"shell-version": ["48", "49"] "shell-version": ["48", "49"]
} }

4
package-lock.json generated
View file

@ -1,11 +1,11 @@
{ {
"name": "auto-rotate", "name": "fullscreen-rotate",
"version": "1.0.0", "version": "1.0.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "auto-rotate", "name": "fullscreen-rotate",
"version": "1.0.0", "version": "1.0.0",
"license": "GPL-3.0-only", "license": "GPL-3.0-only",
"dependencies": { "dependencies": {

View file

@ -1,19 +1,19 @@
{ {
"name": "auto-rotate", "name": "fullscreen-rotate",
"version": "1.0.0", "version": "1.0.0",
"description": "An extension to automatically rotate the screen when a window is fullscreened, useful for GNOME Shell Mobile.", "description": "An extension to automatically rotate the screen when a window is fullscreened, useful for GNOME Shell Mobile.",
"type": "module", "type": "module",
"private": true, "private": true,
"repository": { "repository": {
"type": "git", "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", "author": "Henry Hiles",
"license": "GPL-3.0-only", "license": "GPL-3.0-only",
"bugs": { "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": { "devDependencies": {
"eslint": "^9.33.0", "eslint": "^9.33.0",
"eslint-plugin-jsdoc": "^52.0.4", "eslint-plugin-jsdoc": "^52.0.4",