1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/trustyhash_ynh.git synced 2024-09-04 01:15:56 +02:00

Update manifest.json

This commit is contained in:
jarod5001 2022-05-05 17:58:08 +02:00 committed by GitHub
parent 64a1a655e9
commit b31e17a774
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,34 +1,31 @@
{ {
"name": "Example app", "name": "TrustyHash",
"id": "example", "id": "TrustyHash",
"packaging_format": 1, "packaging_format": 1,
"description": { "description": {
"en": "Explain in *a few (10~15) words* the purpose of the app or what it actually does (it is meant to give a rough idea to users browsing a catalog of 100+ apps)", "en": "TrustyHash is a small client-side web application that computes SHA-256 hash values on both local files and on remote URLs, with a strong emphasis on a process that will allow you to trust the results. Works offline!",
"fr": "Expliquez en *quelques* (10~15) mots l'utilité de l'app ou ce qu'elle fait (l'objectif est de donner une idée grossière pour des utilisateurs qui naviguent dans un catalogue de 100+ apps)" "fr": "TrustyHash est une petite application Web côté client qui calcule les valeurs de hachage SHA-256 sur les fichiers locaux et sur les URL distantes, en mettant fortement l'accent sur un processus qui vous permettra de faire confiance aux résultats. Fonctionne hors ligne !"
}, },
"version": "1.0~ynh1", "version": "1.0~ynh1",
"url": "https://example.com", "url": "https://github.com/sprin/TrustyHash",
"upstream": { "upstream": {
"license": "free", "license": "MIT license",
"website": "https://example.com", "website": "https://github.com/sprin/TrustyHash",
"demo": "https://demo.example.com", "demo": "https://sprin.github.io/TrustyHash/",
"admindoc": "https://yunohost.org/packaging_apps", "userdoc": "https://github.com/sprin/TrustyHash",
"userdoc": "https://yunohost.org/apps", "code": "https://github.com/sprin/TrustyHash"
"code": "https://some.forge.com/example/example"
}, },
"license": "free", "license": "MIT license",
"maintainer": { "maintainer": {
"name": "John doe", "name": "jarod5001",
"email": "john.doe@example.com" "email": ""
}, },
"requirements": { "requirements": {
"yunohost": ">= 4.3.0" "yunohost": ">= 4.3.0"
}, },
"multi_instance": true, "multi_instance": true,
"services": [ "services": [
"nginx", "nginx"
"php7.3-fpm",
"mysql"
], ],
"arguments": { "arguments": {
"install" : [ "install" : [
@ -39,35 +36,8 @@
{ {
"name": "path", "name": "path",
"type": "path", "type": "path",
"example": "/example", "example": "/TrustyHash",
"default": "/example" "default": "/TrustyHash"
},
{
"name": "is_public",
"type": "boolean",
"default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["fr", "en"],
"default": "fr"
},
{
"name": "admin",
"type": "user"
},
{
"name": "password",
"type": "password",
"help": {
"en": "Use the help field to add an information for the admin about this question.",
"fr": "Utilisez le champ aide pour ajouter une information à l'intention de l'administrateur à propos de cette question."
}
} }
] ]
} }