1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/galene_ynh.git synced 2024-09-03 18:36:31 +02:00
This commit is contained in:
Éric Gaspar 2021-09-09 17:41:29 +02:00 committed by GitHub
parent f0f4fef198
commit ac94045449
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 12 additions and 7 deletions

View file

@ -27,7 +27,7 @@ Galène is a videoconference server (an “SFU”) that is easy to deploy and th
- activity detection
**Shipped version:** 0.4.0~ynh1
**Shipped version:** 0.4.0~ynh2
**Demo:** https://galene.org:8443/
@ -78,7 +78,7 @@ You can also install Galène with an external TURN server with this branch: http
### Server Statistics page
Statistics are available under `/var/www/galene/stats.json`, with a human-readable version at `domain.ltd/stats.html`. This is only available to the server administrator.
Statistics are available under `/opt/yunohost/galene/stats.json`, with a human-readable version at `domain.ltd/stats.html`. This is only available to the server administrator.
### How do I record my lecture?

View file

@ -23,7 +23,7 @@ Galène est un serveur de visioconférence (un « SFU ») facile à déployer et
- détection d'activité
**Version incluse :** 0.4.0~ynh1
**Version incluse :** 0.4.0~ynh2
**Démo :** https://galene.org:8443/
@ -74,7 +74,7 @@ Vous pouvez également installer *Galène* avec un serveur TURN externe avec cet
### Statistiques du serveur
Les statistiques sont disponibles sous `/var/www/galene/stats.json`, avec une version lisible sur `domain.ltd/stats.html`. Cette page n'est disponible que pour l'administrateur du serveur.
Les statistiques sont disponibles sous `/opt/yunohost/galene/stats.json`, avec une version lisible sur `domain.ltd/stats.html`. Cette page n'est disponible que pour l'administrateur du serveur.
### Comment enregistrer ma conférence ?

View file

@ -39,7 +39,7 @@ You can also install Galène with an external TURN server with this branch: http
### Server Statistics page
Statistics are available under `/var/www/galene/stats.json`, with a human-readable version at `domain.ltd/stats.html`. This is only available to the server administrator.
Statistics are available under `/opt/yunohost/galene/stats.json`, with a human-readable version at `domain.ltd/stats.html`. This is only available to the server administrator.
### How do I record my lecture?

View file

@ -39,7 +39,7 @@ Vous pouvez également installer *Galène* avec un serveur TURN externe avec cet
### Statistiques du serveur
Les statistiques sont disponibles sous `/var/www/galene/stats.json`, avec une version lisible sur `domain.ltd/stats.html`. Cette page n'est disponible que pour l'administrateur du serveur.
Les statistiques sont disponibles sous `/opt/yunohost/galene/stats.json`, avec une version lisible sur `domain.ltd/stats.html`. Cette page n'est disponible que pour l'administrateur du serveur.
### Comment enregistrer ma conférence ?

View file

@ -6,7 +6,7 @@
"en": "Videoconferencing server that is easy to deploy",
"fr": "Serveur de visioconférence facile à déployer"
},
"version": "0.4.0~ynh1",
"version": "0.4.0~ynh2",
"url": "https://galene.org/",
"upstream": {
"license": "MIT",

View file

@ -25,6 +25,11 @@ port=$(ynh_app_setting_get --app=$app --key=port)
turn_port=$(ynh_app_setting_get --app=$app --key=turn_port)
architecture=$(ynh_detect_arch)
if ynh_compare_current_package_version --comparison le --version 0.3.5~ynh3
then
ynh_die --message="Please, you need to remove the app and reinstall it"
fi
#=================================================
# CHECK VERSION
#=================================================