diff --git a/README.md b/README.md index faeb7ca..d10fcbc 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ To check if Galène can connect to the TURN server, connect to Galène as operat ## Documentation * Official documentation: https://galene.org/ - * YunoHost documentation: https://yunohost.org/#/app_galene + * YunoHost documentation: https://yunohost.org/en/app_galene ## YunoHost specific features diff --git a/README_fr.md b/README_fr.md index ea3a363..4a0c64c 100644 --- a/README_fr.md +++ b/README_fr.md @@ -58,7 +58,7 @@ Pour vérifier si Galène peut se connecter au serveur TURN, connectez-vous à G ## Documentation * Documentation officielle : https://galene.org/ - * Documentation YunoHost : https://yunohost.org/#/app_galene_fr + * Documentation YunoHost : https://yunohost.org/fr/app_galene ## Caractéristiques spécifiques YunoHost diff --git a/conf/groupname.json b/conf/groupname.json index 7a10f63..2051bb0 100644 --- a/conf/groupname.json +++ b/conf/groupname.json @@ -1,7 +1,7 @@ { "op": [{"username": "__ADMIN__", "password": "__PASSWORD__"}], "presenter": [{}], - "description": "a human-readable description of the group; this is displayed on the landing page for public groups.", + "description": "__GROUP_DESCRIPTION__", "public": true, "allow-anonymous": true, "allow-recording": true, diff --git a/manifest.json b/manifest.json index 9629fab..bb3b5a4 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Videoconferencing server that is easy to deploy", "fr": "Serveur de visioconférence facile à déployer" }, - "version": "0.3.2~ynh1", + "version": "0.3.2~ynh2", "url": "https://galene.org/", "license": "MIT", "maintainer": { @@ -75,6 +75,18 @@ }, "default": "public", "example": "public" + }, + { + "name": "group_description", + "type": "string", + "ask": { + "en": "Choose a description for the group you want to create", + "fr": "Décrivez le groupe que vous souhaitez créer" + }, + "help": { + "en": "Add a human-readable description of the group; this is displayed on the landing page for public groups.", + "fr": "Ajoutez une description du groupe; ceci est affiché sur la page de destination des groupes publics." + } } ] } diff --git a/scripts/install b/scripts/install index b06fb65..f3c6364 100755 --- a/scripts/install +++ b/scripts/install @@ -29,6 +29,7 @@ admin=$YNH_APP_ARG_ADMIN is_public=$YNH_APP_ARG_IS_PUBLIC password=$YNH_APP_ARG_PASSWORD group_name=$YNH_APP_ARG_GROUP_NAME +group_description=$YNH_APP_ARG_GROUP_DESCRIPTION architecture=$(ynh_detect_arch) app=$YNH_APP_INSTANCE_NAME @@ -53,6 +54,7 @@ ynh_app_setting_set --app=$app --key=domain --value=$domain ynh_app_setting_set --app=$app --key=path --value=$path_url ynh_app_setting_set --app=$app --key=admin --value=$admin ynh_app_setting_set --app=$app --key=group_name --value="$group_name" +ynh_app_setting_set --app=$app --key=group_description --value="$group_description" ynh_app_setting_set --app=$app --key=password --value=$password #=================================================