From 8cc23b24b10a39ac3b25131e38ea1b4efaa696a3 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 5 Jun 2021 15:32:05 +0200 Subject: [PATCH 01/15] Fix --- manifest.json | 2 +- scripts/install | 20 ++++++++++---------- scripts/upgrade | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/manifest.json b/manifest.json index ba36430..cf69775 100644 --- a/manifest.json +++ b/manifest.json @@ -31,7 +31,7 @@ { "name": "domain", "type": "domain", - "example": "domain.org" + "example": "example.com" }, { "name": "is_public", diff --git a/scripts/install b/scripts/install index 59878bb..f687ebf 100644 --- a/scripts/install +++ b/scripts/install @@ -96,16 +96,6 @@ ynh_script_progression --message="Configuring NGINX web server..." --weight=1 # Create a dedicated NGINX config ynh_add_nginx_config -#================================================= -# ADD A CONFIGURATION -#================================================= -# ynh_script_progression --message="Adding a configuration file..." --weight=1 - -# ynh_add_config --template="../conf/config.local.js" --destination="$final_path/dist/config.local.js" - -# chmod 400 "$final_path/dist/config.local.js" -# chown $app "$final_path/dist/config.local.js" - #================================================= # SPECIFIC SETUP #================================================= @@ -122,6 +112,16 @@ ynh_use_nodejs ls -lah ) +#================================================= +# ADD A CONFIGURATION +#================================================= +ynh_script_progression --message="Adding a configuration file..." --weight=1 + +ynh_add_config --template="../conf/config.local.js" --destination="$final_path/dist/config.local.js" + +chmod 400 "$final_path/dist/config.local.js" +chown $app "$final_path/dist/config.local.js" + #================================================= # SETUP SYSTEMD #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 66d150e..3eb8940 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -84,7 +84,7 @@ then ynh_script_progression --message="Upgrading source files..." --weight=1 # Download, check integrity, uncompress and patch the source from app.src - ynh_setup_source --dest_dir="$final_path" #--keep="$final_path/dist/config.local.js" + ynh_setup_source --dest_dir="$final_path" --keep="$final_path/dist/config.local.js" fi chmod 750 "$final_path" From 03097a5fc3ab124947e8d31b3af63cb0e08c8d4d Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 5 Jun 2021 15:40:23 +0200 Subject: [PATCH 02/15] Update upgrade --- scripts/upgrade | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/scripts/upgrade b/scripts/upgrade index 3eb8940..20c4dbd 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -57,14 +57,7 @@ ynh_script_progression --message="Ensuring downward compatibility..." --weight=1 # If final_path doesn't exist, create it if [ -z "$final_path" ]; then final_path=/var/www/$app - ynh_app_setting_set "$app" final_path "$final_path" -fi - -# Cleaning legacy permissions -if ynh_legacy_permissions_exists; then - ynh_legacy_permissions_delete_all - - ynh_app_setting_delete --app=$app --key=is_public + ynh_app_setting_set --app=$app --key=final_path --value=$final_path fi #================================================= From ff319079a2ed9369209b3021bb5b3dac1e67bae6 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 5 Jun 2021 15:42:37 +0200 Subject: [PATCH 03/15] Fix --- doc/DISCLAIMER.md | 2 ++ doc/DISCLAIMER_fr.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md index 6ce7dbe..4a86552 100644 --- a/doc/DISCLAIMER.md +++ b/doc/DISCLAIMER.md @@ -1 +1,3 @@ #### Setup + +Various configuration options are available for Mumble web on this configuration file `/var/www/mumble-web/dist/config.local.js` diff --git a/doc/DISCLAIMER_fr.md b/doc/DISCLAIMER_fr.md index 6e02320..5368175 100644 --- a/doc/DISCLAIMER_fr.md +++ b/doc/DISCLAIMER_fr.md @@ -1 +1,3 @@ ## Configuration + +Diverses options de configuration sont disponibles pour Mumble web sur ce fichier de configuration `/var/www/mumble-web/dist/config.local.js` From 783598966e5aa232a557fd9ad22bc96750853286 Mon Sep 17 00:00:00 2001 From: Yunohost-Bot <> Date: Sat, 5 Jun 2021 13:42:42 +0000 Subject: [PATCH 04/15] Auto-update README --- README.md | 2 ++ README_fr.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index c1dcc3a..e38c86c 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,8 @@ Web interface for voice chat software (VoIP) #### Setup +Various configuration options are available for Mumble web on this configuration file `/var/www/mumble-web/dist/config.local.js` + ## Documentation and resources * Official app website: https://mumble.info diff --git a/README_fr.md b/README_fr.md index aa6bb5d..ce8cbe4 100644 --- a/README_fr.md +++ b/README_fr.md @@ -25,6 +25,8 @@ Interface web interface pour voix sur IP (VoIP) ## Configuration +Diverses options de configuration sont disponibles pour Mumble web sur ce fichier de configuration `/var/www/mumble-web/dist/config.local.js` + ## Documentations et ressources * Site officiel de l'app : https://mumble.info From f596dca52db1643a4b2dbbd52772758268db7170 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 5 Jun 2021 15:50:42 +0200 Subject: [PATCH 05/15] Fix --- scripts/install | 4 ++-- scripts/remove | 2 +- scripts/restore | 2 +- scripts/upgrade | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/install b/scripts/install index f687ebf..0a5b5d7 100644 --- a/scripts/install +++ b/scripts/install @@ -78,7 +78,7 @@ ynh_system_user_create --username=$app --home_dir="$final_path" #================================================= # INSTALL Mumble-web #================================================= -ynh_script_progression --message="Installing Mumble Web..." --weight=4 +ynh_script_progression --message="Installing Mumble web client..." --weight=4 ynh_app_setting_set --app=$app --key=final_path --value=$final_path # Download, check integrity, uncompress and patch the source from app.src @@ -101,7 +101,7 @@ ynh_add_nginx_config #================================================= # mumble server conf.ini #================================================= -ynh_script_progression --message="Configuring Mumble Web..." --weight=1 +ynh_script_progression --message="Configuring Mumble web client..." --weight=1 ynh_use_nodejs ( diff --git a/scripts/remove b/scripts/remove index 6f0e0cb..fe8e8a6 100644 --- a/scripts/remove +++ b/scripts/remove @@ -74,7 +74,7 @@ ynh_remove_nginx_config # REMOVE OTHER FILES #================================================= -ynh_secure_remove "/var/log/$app" +ynh_secure_remove --file="/var/log/$app" #================================================= # GENERIC FINALIZATION diff --git a/scripts/restore b/scripts/restore index 1e8d20e..09b65de 100644 --- a/scripts/restore +++ b/scripts/restore @@ -89,7 +89,7 @@ systemctl enable $app.service --quiet ynh_script_progression --message="Integrating service in YunoHost..." --weight=1 # Add Mumble as a YunoHost service -yunohost service add $app --description="Mumble web interface" --log="/var/log/$app/$app.log" +yunohost service add $app --description="Mumble web client" --log="/var/log/$app/$app.log" #================================================= # START SYSTEMD SERVICE diff --git a/scripts/upgrade b/scripts/upgrade index 20c4dbd..f62dace 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -116,7 +116,7 @@ ynh_add_systemd_config #================================================= # Add Mumble as a YunoHost service -yunohost service add $app --description="Mumble web interface" --log="/var/log/$app/$app.log" +yunohost service add $app --description="Mumble web client" --log="/var/log/$app/$app.log" #================================================= # START SYSTEMD SERVICE From 2c33524db998d877e5397ec680d16d8f704c7537 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 5 Jun 2021 15:54:37 +0200 Subject: [PATCH 06/15] Update config.local.js --- conf/config.local.js | 46 ++++++++++++++++++++++---------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/conf/config.local.js b/conf/config.local.js index a550607..74090a3 100644 --- a/conf/config.local.js +++ b/conf/config.local.js @@ -10,34 +10,34 @@ let config = window.mumbleWebConfig // eslint-disable-line no-unused-vars // Which fields to show on the Connect to Server dialog -config.connectDialog.address : 'false' -config.connectDialog.port : 'false' -config.connectDialog.token : 'false' -// config.connectDialog.username : 'true' -// config.connectDialog.password : 'true' -// config.connectDialog.channelName : 'false' +config.connectDialog.address = 'false' +config.connectDialog.port = 'false' +config.connectDialog.token = 'false' +// config.connectDialog.username = 'true' +// config.connectDialog.password = 'true' +// config.connectDialog.channelName = 'false' // Default values for user settings // You can see your current value by typing `localStorage.getItem('mumble.$setting')` in the web console. -// config.settings.voiceMode : 'vad' // one of 'cont' (Continuous), 'ptt' (Push-to-Talk), 'vad' (Voice Activity Detection) -// config.settings.pttKey : 'ctrl + shift' -// config.settings.vadLevel : '0.3' -// config.settings.toolbarVertical : 'false' -// config.settings.showAvatars : 'always' // one of 'always', 'own_channel', 'linked_channel', 'minimal_only', 'never' -// config.settings.userCountInChannelName : 'false' -// config.settings.audioBitrate : '40000' // bits per second -// config.settings.samplesPerPacket : '960' +// config.settings.voiceMode = 'vad' // one of 'cont' (Continuous), 'ptt' (Push-to-Talk), 'vad' (Voice Activity Detection) +// config.settings.pttKey = 'ctrl + shift' +// config.settings.vadLevel = '0.3' +// config.settings.toolbarVertical = 'false' +// config.settings.showAvatars = 'always' // one of 'always', 'own_channel', 'linked_channel', 'minimal_only', 'never' +// config.settings.userCountInChannelName = 'false' +// config.settings.audioBitrate = '40000' // bits per second +// config.settings.samplesPerPacket = '960' // Default values (can be changed by passing a query parameter of the same name) // Connect Dialog -// config.defaults.address': window.location.hostname, -// config.defaults.port : '443' -// config.defaults.token : '' -// config.defaults.username': '' -// config.defaults.password': '', -// config.defaults.joinDialog : 'false' // replace whole dialog with single "Join Conference" button -// config.defaults.matrix : 'false' // enable Matrix Widget support (mostly auto-detected; implies 'joinDialog') -// config.defaults.avatarurl : '' // download and set the user's Mumble avatar to the image at this URL +// config.defaults.address = 'window.location.hostname' +// config.defaults.port = '443' +// config.defaults.token = '' +// config.defaults.username = '' +// config.defaults.password = '', +// config.defaults.joinDialog = 'false' // replace whole dialog with single "Join Conference" button +// config.defaults.matrix = 'false' // enable Matrix Widget support (mostly auto-detected; implies 'joinDialog') +// config.defaults.avatarurl = '' // download and set the user's Mumble avatar to the image at this URL // General -config.defaults.theme : 'MetroMumbleDark' +config.defaults.theme = 'MetroMumbleDark' From e94acdcb533001dd3280c32a7ea565cda0cc8590 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 5 Jun 2021 15:57:43 +0200 Subject: [PATCH 07/15] Fix --- conf/systemd.service | 4 ++-- scripts/remove | 8 -------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/conf/systemd.service b/conf/systemd.service index 4146ed5..90a2fbb 100644 --- a/conf/systemd.service +++ b/conf/systemd.service @@ -1,8 +1,8 @@ [Unit] Description=Mumble web interface (app: __APP__) Documentation=https://github.com/johni0702/mumble-web -Requires=network.target #mumbleserver.service -After=network.target #mumbleserver.service +Requires=network.target mumbleserver.service +After=network.target mumbleserver.service [Service] Type=simple diff --git a/scripts/remove b/scripts/remove index fe8e8a6..785b27f 100644 --- a/scripts/remove +++ b/scripts/remove @@ -68,14 +68,6 @@ ynh_script_progression --message="Removing NGINX web server configuration..." -- # Remove the dedicated nginx config ynh_remove_nginx_config -#================================================= -# SPECIFIC REMOVE -#================================================= -# REMOVE OTHER FILES -#================================================= - -ynh_secure_remove --file="/var/log/$app" - #================================================= # GENERIC FINALIZATION #================================================= From c608386e1c193852c2b68fdc52d9f02027daabf7 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 5 Jun 2021 16:01:44 +0200 Subject: [PATCH 08/15] Update install --- scripts/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index 0a5b5d7..459ebea 100644 --- a/scripts/install +++ b/scripts/install @@ -78,7 +78,7 @@ ynh_system_user_create --username=$app --home_dir="$final_path" #================================================= # INSTALL Mumble-web #================================================= -ynh_script_progression --message="Installing Mumble web client..." --weight=4 +ynh_script_progression --message="Setting up source files..." --weight=1 ynh_app_setting_set --app=$app --key=final_path --value=$final_path # Download, check integrity, uncompress and patch the source from app.src @@ -91,7 +91,7 @@ chown -R $app:www-data "$final_path" #================================================= # NGINX CONFIGURATION #================================================= -ynh_script_progression --message="Configuring NGINX web server..." --weight=1 +ynh_script_progression --message="Configuring NGINX web server..." --weight=4 # Create a dedicated NGINX config ynh_add_nginx_config From c8a0393c452bb6c0c672df4bf64391b9ce1f6e67 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 5 Jun 2021 16:04:09 +0200 Subject: [PATCH 09/15] Update config.local.js --- conf/config.local.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/conf/config.local.js b/conf/config.local.js index 74090a3..d429a95 100644 --- a/conf/config.local.js +++ b/conf/config.local.js @@ -10,21 +10,21 @@ let config = window.mumbleWebConfig // eslint-disable-line no-unused-vars // Which fields to show on the Connect to Server dialog -config.connectDialog.address = 'false' -config.connectDialog.port = 'false' -config.connectDialog.token = 'false' -// config.connectDialog.username = 'true' -// config.connectDialog.password = 'true' -// config.connectDialog.channelName = 'false' +config.connectDialog.address = false +config.connectDialog.port = false +config.connectDialog.token = false +// config.connectDialog.username = true +// config.connectDialog.password = true +// config.connectDialog.channelName = false // Default values for user settings // You can see your current value by typing `localStorage.getItem('mumble.$setting')` in the web console. // config.settings.voiceMode = 'vad' // one of 'cont' (Continuous), 'ptt' (Push-to-Talk), 'vad' (Voice Activity Detection) // config.settings.pttKey = 'ctrl + shift' // config.settings.vadLevel = '0.3' -// config.settings.toolbarVertical = 'false' +// config.settings.toolbarVertical = false // config.settings.showAvatars = 'always' // one of 'always', 'own_channel', 'linked_channel', 'minimal_only', 'never' -// config.settings.userCountInChannelName = 'false' +// config.settings.userCountInChannelName = false // config.settings.audioBitrate = '40000' // bits per second // config.settings.samplesPerPacket = '960' @@ -34,9 +34,9 @@ config.connectDialog.token = 'false' // config.defaults.port = '443' // config.defaults.token = '' // config.defaults.username = '' -// config.defaults.password = '', -// config.defaults.joinDialog = 'false' // replace whole dialog with single "Join Conference" button -// config.defaults.matrix = 'false' // enable Matrix Widget support (mostly auto-detected; implies 'joinDialog') +// config.defaults.password = '' +// config.defaults.joinDialog = false // replace whole dialog with single "Join Conference" button +// config.defaults.matrix = false // enable Matrix Widget support (mostly auto-detected; implies 'joinDialog') // config.defaults.avatarurl = '' // download and set the user's Mumble avatar to the image at this URL // General From 4488bd906c9b24e7294a4593118cf154eb29803a Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 5 Jun 2021 16:11:34 +0200 Subject: [PATCH 10/15] Update install --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 459ebea..5f9087e 100644 --- a/scripts/install +++ b/scripts/install @@ -136,7 +136,7 @@ ynh_add_systemd_config #================================================= ynh_script_progression --message="Integrating service in YunoHost..." --weight=1 -yunohost service add $app --description="Mumble web interface" --log="/var/log/$app/$app.log" +yunohost service add $app --description="Mumble web client" --log="/var/log/$app/$app.log" #================================================= # START SYSTEMD SERVICE From cbfcfe156f4a75082519c4c3f80f556ce7019cd6 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 5 Jun 2021 16:14:51 +0200 Subject: [PATCH 11/15] Fix --- conf/config.local.js | 4 ++-- conf/systemd.service | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conf/config.local.js b/conf/config.local.js index d429a95..391d2a0 100644 --- a/conf/config.local.js +++ b/conf/config.local.js @@ -12,9 +12,9 @@ let config = window.mumbleWebConfig // eslint-disable-line no-unused-vars // Which fields to show on the Connect to Server dialog config.connectDialog.address = false config.connectDialog.port = false -config.connectDialog.token = false +config.connectDialog.token = true // config.connectDialog.username = true -// config.connectDialog.password = true +config.connectDialog.password = false // config.connectDialog.channelName = false // Default values for user settings diff --git a/conf/systemd.service b/conf/systemd.service index 90a2fbb..4146ed5 100644 --- a/conf/systemd.service +++ b/conf/systemd.service @@ -1,8 +1,8 @@ [Unit] Description=Mumble web interface (app: __APP__) Documentation=https://github.com/johni0702/mumble-web -Requires=network.target mumbleserver.service -After=network.target mumbleserver.service +Requires=network.target #mumbleserver.service +After=network.target #mumbleserver.service [Service] Type=simple From 65326a729a5ad4c5474cc0b2654044814d59718f Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 5 Jun 2021 16:15:29 +0200 Subject: [PATCH 12/15] Update manifest.json --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index cf69775..7f6e660 100644 --- a/manifest.json +++ b/manifest.json @@ -11,7 +11,7 @@ "upstream": { "license": "BSD-3-Clause", "website": "https://mumble.info", - "admindoc": "https://github.com/Johni0702/mumble-web/", + "admindoc": "https://docs.framasoft.org/fr/jitsimeet/mumble.html", "code": "https://github.com/Johni0702/mumble-web/" }, "license": "BSD-3-Clause", From 6612874d34d6105c89fd493f77a49b9bc23a1956 Mon Sep 17 00:00:00 2001 From: Yunohost-Bot <> Date: Sat, 5 Jun 2021 14:15:35 +0000 Subject: [PATCH 13/15] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e38c86c..64b0ee7 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Various configuration options are available for Mumble web on this configuration ## Documentation and resources * Official app website: https://mumble.info -* Official admin documentation: https://github.com/Johni0702/mumble-web/ +* Official admin documentation: https://docs.framasoft.org/fr/jitsimeet/mumble.html * Upstream app code repository: https://github.com/Johni0702/mumble-web/ * YunoHost documentation for this app: https://yunohost.org/app_mumble-web * Report a bug: https://github.com/YunoHost-Apps/mumble-web_ynh/issues diff --git a/README_fr.md b/README_fr.md index ce8cbe4..ec929c0 100644 --- a/README_fr.md +++ b/README_fr.md @@ -30,7 +30,7 @@ Diverses options de configuration sont disponibles pour Mumble web sur ce fichie ## Documentations et ressources * Site officiel de l'app : https://mumble.info -* Documentation officielle de l'admin : https://github.com/Johni0702/mumble-web/ +* Documentation officielle de l'admin : https://docs.framasoft.org/fr/jitsimeet/mumble.html * Dépôt de code officiel de l'app : https://github.com/Johni0702/mumble-web/ * Documentation YunoHost pour cette app : https://yunohost.org/app_mumble-web * Signaler un bug : https://github.com/YunoHost-Apps/mumble-web_ynh/issues From ce2d2ad82ef22a71503cb3216d8bff778e525690 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 5 Jun 2021 16:35:50 +0200 Subject: [PATCH 14/15] Fix --- doc/DISCLAIMER.md | 6 +++++- doc/DISCLAIMER_fr.md | 4 ++++ manifest.json | 1 + 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md index 4a86552..04cc4bc 100644 --- a/doc/DISCLAIMER.md +++ b/doc/DISCLAIMER.md @@ -1,3 +1,7 @@ -#### Setup +## Setup Various configuration options are available for Mumble web on this configuration file `/var/www/mumble-web/dist/config.local.js` + +### Documentation + +- Framasoft documentation: https://docs.framasoft.org/fr/jitsimeet/mumble.html diff --git a/doc/DISCLAIMER_fr.md b/doc/DISCLAIMER_fr.md index 5368175..c8188d7 100644 --- a/doc/DISCLAIMER_fr.md +++ b/doc/DISCLAIMER_fr.md @@ -1,3 +1,7 @@ ## Configuration Diverses options de configuration sont disponibles pour Mumble web sur ce fichier de configuration `/var/www/mumble-web/dist/config.local.js` + +## Documentation + +- documentation Framasoft : https://docs.framasoft.org/fr/jitsimeet/mumble.html diff --git a/manifest.json b/manifest.json index 7f6e660..efe8047 100644 --- a/manifest.json +++ b/manifest.json @@ -11,6 +11,7 @@ "upstream": { "license": "BSD-3-Clause", "website": "https://mumble.info", + "demo": "https://web.mumble.framatalk.org/", "admindoc": "https://docs.framasoft.org/fr/jitsimeet/mumble.html", "code": "https://github.com/Johni0702/mumble-web/" }, From cbe9c49e18d1700c8b9269c65f21382d2f6d1bb2 Mon Sep 17 00:00:00 2001 From: Yunohost-Bot <> Date: Sat, 5 Jun 2021 14:36:08 +0000 Subject: [PATCH 15/15] Auto-update README --- README.md | 8 ++++++-- README_fr.md | 6 +++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 64b0ee7..7c5c4a8 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Web interface for voice chat software (VoIP) **Shipped version:** 1.3.0~ynh1 - +**Demo:** https://web.mumble.framatalk.org/ ## Screenshots @@ -27,10 +27,14 @@ Web interface for voice chat software (VoIP) ## Disclaimers / important information -#### Setup +## Setup Various configuration options are available for Mumble web on this configuration file `/var/www/mumble-web/dist/config.local.js` +### Documentation + +- Framasoft documentation: https://docs.framasoft.org/fr/jitsimeet/mumble.html + ## Documentation and resources * Official app website: https://mumble.info diff --git a/README_fr.md b/README_fr.md index ec929c0..b6cb766 100644 --- a/README_fr.md +++ b/README_fr.md @@ -15,7 +15,7 @@ Interface web interface pour voix sur IP (VoIP) **Version incluse :** 1.3.0~ynh1 - +**Démo :** https://web.mumble.framatalk.org/ ## Captures d'écran @@ -27,6 +27,10 @@ Interface web interface pour voix sur IP (VoIP) Diverses options de configuration sont disponibles pour Mumble web sur ce fichier de configuration `/var/www/mumble-web/dist/config.local.js` +## Documentation + +- documentation Framasoft : https://docs.framasoft.org/fr/jitsimeet/mumble.html + ## Documentations et ressources * Site officiel de l'app : https://mumble.info