From 550c0573ca210e97dc8b2d54870e13aa10f86b1f Mon Sep 17 00:00:00 2001 From: Moul Date: Sun, 31 Jan 2016 17:14:13 +0100 Subject: [PATCH] Fix manifest thanks to package_checker. Add 'type' and 'url' keys. Ortho, typo. --- manifest.json | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/manifest.json b/manifest.json index 3101e89..d215c73 100644 --- a/manifest.json +++ b/manifest.json @@ -2,9 +2,10 @@ "name": "YunoHost example app", "id": "ynhexample", "description": { - "en": "Example package for Yunohost applications.", - "fr": "Exemple de package d'application pour Yunohost." + "en": "Example package for YunoHost application.", + "fr": "Exemple de package d’application pour YunoHost." }, + "url": "https://example.com", "license": "free", "maintainer": { "name": "John doe", @@ -21,14 +22,16 @@ "install" : [ { "name": "domain", + "type": "domain", "ask": { - "en": "Choose a domain for ynhexample", - "fr": "Choisissez un domaine pour ynhexample" + "en": "Choose a domain name for ynhexample", + "fr": "Choisissez un nom de domaine pour ynhexample" }, "example": "example.com" }, { "name": "path", + "type": "path", "ask": { "en": "Choose a path for ynhexample", "fr": "Choisissez un chemin pour ynhexample" @@ -38,16 +41,17 @@ }, { "name": "admin", + "type": "user", "ask": { "en": "Choose an admin user", - "fr": "Choisissez l'administrateur" + "fr": "Choisissez l’administrateur" }, "example": "johndoe" }, { "name": "is_public", "ask": { - "en": "Is it a public application ?", + "en": "Is it a public application?", "fr": "Est-ce une application publique ?" }, "choices": ["Yes", "No"],