From 9ac65de683886a862d01e3f517816413a79300df Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sun, 10 Jan 2021 09:41:27 +0100 Subject: [PATCH] Upgrade to version 0.2 --- README.md | 2 +- README_fr.md | 2 +- manifest.json | 2 +- scripts/install | 4 ++-- scripts/upgrade | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5e7c222..b3f40ea 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Overview Galène is a videoconferencing server that is easy to deploy (just copy a few files and run the binary) and that requires moderate server resources. It was originally designed for lectures and conferences (where a single speaker streams audio and video to hundreds or thousands of users), but later evolved to be useful for student practicals (where users are divided into many small groups), and meetings (where a few dozen users interact with each other). -**Shipped version:** 0.1 +**Shipped version:** 0.2 ## Screenshots diff --git a/README_fr.md b/README_fr.md index 8fbee11..0df2488 100644 --- a/README_fr.md +++ b/README_fr.md @@ -11,7 +11,7 @@ Si vous n'avez pas YunoHost, consultez [le guide](https://yunohost.org/#/install ## Vue d'ensemble Galène est un serveur de visioconférence facile à déployer (il suffit de copier quelques fichiers et d'exécuter le binaire) et qui nécessite des ressources serveur modérées. Il a été conçu à l'origine pour les conférences (où un seul orateur diffuse l'audio et la vidéo à des centaines ou des milliers d'utilisateurs), mais a ensuite évolué pour être utile pour les travaux pratiques des étudiants (où les utilisateurs sont divisés en plusieurs petits groupes) et les réunions (où un quelques dizaines d'utilisateurs interagissent les uns avec les autres). -**Version incluse :** 0.1 +**Version incluse :** 0.2 ## Captures d'écran diff --git a/manifest.json b/manifest.json index c0cfbf2..6d16f69 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.1~ynh1", + "version": "0.2~ynh1", "url": "https://galene.org/", "license": "MIT", "maintainer": { diff --git a/scripts/install b/scripts/install index 8237dca..fcf5a1b 100755 --- a/scripts/install +++ b/scripts/install @@ -85,7 +85,7 @@ ynh_app_setting_set --app=$app --key=final_path --value=$final_path # Download, check integrity, uncompress and patch the source from app.src #ynh_setup_source --dest_dir="$final_path" mkdir -p $final_path -cp -R ../sources/* $final_path/ +cp -R ../sources_2/* $final_path/ #================================================= # CREATE A SERVER CERTIFICATE @@ -130,7 +130,7 @@ cp ../conf/passwd $final_path/data/passwd ynh_replace_string --match_string="__ADMIN__" --replace_string="$admin" --target_file="$final_path/data/passwd" ynh_replace_string --match_string="__PASSWORD__" --replace_string="$password" --target_file="$final_path/data/passwd" -cp ../sources/groups/groupname.json $final_path/groups/$group_name.json +cp ../sources_2/groups/groupname.json $final_path/groups/$group_name.json ynh_replace_string --match_string="__ADMIN__" --replace_string="$admin" --target_file="$final_path/groups/$group_name.json" ynh_replace_string --match_string="__PASSWORD__" --replace_string="$password" --target_file="$final_path/groups/$group_name.json" diff --git a/scripts/upgrade b/scripts/upgrade index a5f88e0..2c3be49 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -82,7 +82,7 @@ then ynh_secure_remove --file="$final_path" mkdir -p $final_path - cp -R ../sources/* $final_path/ + cp -R ../sources_2/* $final_path/ # Copy the admin saved settings from tmp directory to final path cp -ar "$tmpdir/groups" "$final_path/groups"