From 738779b0474fd52d092be9a9701b43cb0f12fe74 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Mon, 13 Apr 2026 12:09:51 +0200 Subject: [PATCH] Update mini-qr manifest schema and metadata Migrate manifest to the updated schema and enrich metadata: rename install_methods_json->install_methods and notes_json->notes, add categories, date_created, updateable, interface_port and default_credentials fields. Adjust description text (remove emoji) and set the install script path (ct/mini-qr.sh). These changes prepare the Mini QR package for the newer CT manifest format and include basic deployment metadata. --- json/mini-qr.json | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/json/mini-qr.json b/json/mini-qr.json index 75d385f9..516a0e98 100644 --- a/json/mini-qr.json +++ b/json/mini-qr.json @@ -1,16 +1,23 @@ { "name": "Mini QR", "slug": "mini-qr", - "description": "Create & scan cute qr codes easily 👾", + "categories": [ + 0 + ], + "date_created": "2026-04-13", "type": "ct", + "updateable": true, "privileged": false, + "interface_port": 80, "documentation": "https://github.com/lyqht/mini-qr", "website": "https://mini-qr-code-generator.vercel.app/", "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/mini-qr.webp", "config_path": "/etc/caddy/Caddyfile", - "install_methods_json": [ + "description": "Create & scan cute qr codes easily.", + "install_methods": [ { "type": "default", + "script": "ct/mini-qr.sh", "resources": { "cpu": 2, "ram": 2048, @@ -20,5 +27,9 @@ } } ], - "notes_json": [] -} + "default_credentials": { + "username": null, + "password": null + }, + "notes": [] +} \ No newline at end of file