1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mytinytodo_ynh.git synced 2024-09-03 19:46:01 +02:00
mytinytodo_ynh/manifest.json

84 lines
2.8 KiB
JSON
Raw Normal View History

2017-03-25 18:31:20 +01:00
{
2022-04-08 17:28:41 +02:00
"name": "myTinyTodo",
2017-03-25 18:31:20 +01:00
"id": "mytinytodo",
"packaging_format": 1,
"description": {
2021-10-07 16:35:37 +02:00
"en": "Open source to-do list script",
"fr": "Gestionnaire de todo list"
2017-03-25 18:31:20 +01:00
},
2022-01-12 22:04:24 +01:00
"version": "1.6.8~ynh1",
2017-03-25 18:31:20 +01:00
"url": "http://www.mytinytodo.net/",
2021-06-06 09:07:27 +02:00
"upstream": {
"license": "GPL-2.0",
"website": "http://www.mytinytodo.net/",
2021-10-07 16:35:37 +02:00
"demo": "https://www.mytinytodo.net/demo/",
"admindoc": "https://www.mytinytodo.net/faq.php",
"code": "https://github.com/maxpozdeev/mytinytodo"
2021-06-06 09:07:27 +02:00
},
"license": "GPL-2.0",
2017-03-25 18:31:20 +01:00
"maintainer": {
"name": "plabuse",
"email": "pierre.levasseur@free.fr"
2017-03-25 18:31:20 +01:00
},
"requirements": {
2022-01-12 22:04:24 +01:00
"yunohost": ">= 4.3.0"
2017-03-25 18:31:20 +01:00
},
"multi_instance": false,
"services": [
"nginx",
2022-02-26 14:23:25 +01:00
"php8.0-fpm",
2017-03-25 18:31:20 +01:00
"mysql"
],
"arguments": {
"install" : [
{
"name": "domain",
2021-09-21 23:58:04 +02:00
"type": "domain"
2017-03-25 18:31:20 +01:00
},
{
"name": "path",
"type": "path",
"example": "/mytinytodo",
"default": "/mytinytodo"
},
2022-02-26 14:23:25 +01:00
{
"name": "title",
"type": "string",
"ask": {
"en": "Choose a title for your todo list",
"fr": "Choisissez le titre pour votre liste de tâches"
},
"default": "myTinyTodo"
},
{
"name": "set_password",
"type": "password",
"optional": true,
"ask": {
"en": "Specify password here to protect your tasks from modification, or leave empty that everyone could read/write todolist",
"fr": "Spécifiez le mot de passe ici pour protéger vos tâches, ou laissez vide pour que tout le monde puisse lire/écrire votre liste de tâche."
}
},
2017-03-25 18:31:20 +01:00
{
"name": "is_public",
"type": "boolean",
"help": {
"en": "If enabled, myTinyTodo will be accessible by people who do not have an account. This can be changed later via the webadmin.",
"fr": "Si cette case est cochée, myTinyTodo sera accessible aux personnes nayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin."
},
"default": true
2017-03-25 18:31:20 +01:00
},
{
"name": "language",
"type": "string",
2017-03-25 18:31:20 +01:00
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
2022-02-26 14:23:25 +01:00
"choices": ["ar", "de", "en", "fr", "it", "nl", "pt-pt", "ru", "uk", "zh-cn"],
2017-03-25 18:31:20 +01:00
"default": "fr"
}
]
}
}