mirror of
https://github.com/YunoHost-Apps/galene_ynh.git
synced 2024-09-03 18:36:31 +02:00
Testing (#61)
This commit is contained in:
parent
f0f4fef198
commit
ac94045449
6 changed files with 12 additions and 7 deletions
|
@ -27,7 +27,7 @@ Galène is a videoconference server (an “SFU”) that is easy to deploy and th
|
||||||
- activity detection
|
- activity detection
|
||||||
|
|
||||||
|
|
||||||
**Shipped version:** 0.4.0~ynh1
|
**Shipped version:** 0.4.0~ynh2
|
||||||
|
|
||||||
**Demo:** https://galene.org:8443/
|
**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
|
### 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?
|
### How do I record my lecture?
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ Galène est un serveur de visioconférence (un « SFU ») facile à déployer et
|
||||||
- détection d'activité
|
- détection d'activité
|
||||||
|
|
||||||
|
|
||||||
**Version incluse :** 0.4.0~ynh1
|
**Version incluse :** 0.4.0~ynh2
|
||||||
|
|
||||||
**Démo :** https://galene.org:8443/
|
**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
|
### 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 ?
|
### Comment enregistrer ma conférence ?
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ You can also install Galène with an external TURN server with this branch: http
|
||||||
|
|
||||||
### Server Statistics page
|
### 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?
|
### How do I record my lecture?
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ Vous pouvez également installer *Galène* avec un serveur TURN externe avec cet
|
||||||
|
|
||||||
### Statistiques du serveur
|
### 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 ?
|
### Comment enregistrer ma conférence ?
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"en": "Videoconferencing server that is easy to deploy",
|
"en": "Videoconferencing server that is easy to deploy",
|
||||||
"fr": "Serveur de visioconférence facile à déployer"
|
"fr": "Serveur de visioconférence facile à déployer"
|
||||||
},
|
},
|
||||||
"version": "0.4.0~ynh1",
|
"version": "0.4.0~ynh2",
|
||||||
"url": "https://galene.org/",
|
"url": "https://galene.org/",
|
||||||
"upstream": {
|
"upstream": {
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
|
@ -25,6 +25,11 @@ port=$(ynh_app_setting_get --app=$app --key=port)
|
||||||
turn_port=$(ynh_app_setting_get --app=$app --key=turn_port)
|
turn_port=$(ynh_app_setting_get --app=$app --key=turn_port)
|
||||||
architecture=$(ynh_detect_arch)
|
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
|
# CHECK VERSION
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Reference in a new issue