mirror of
https://github.com/YunoHost-Apps/mumble-web_ynh.git
synced 2024-09-03 19:46:16 +02:00
Update config.local.js
This commit is contained in:
parent
f596dca52d
commit
2c33524db9
1 changed files with 23 additions and 23 deletions
|
@ -10,34 +10,34 @@ let config = window.mumbleWebConfig // eslint-disable-line no-unused-vars
|
||||||
|
|
||||||
|
|
||||||
// Which fields to show on the Connect to Server dialog
|
// Which fields to show on the Connect to Server dialog
|
||||||
config.connectDialog.address : 'false'
|
config.connectDialog.address = 'false'
|
||||||
config.connectDialog.port : 'false'
|
config.connectDialog.port = 'false'
|
||||||
config.connectDialog.token : 'false'
|
config.connectDialog.token = 'false'
|
||||||
// config.connectDialog.username : 'true'
|
// config.connectDialog.username = 'true'
|
||||||
// config.connectDialog.password : 'true'
|
// config.connectDialog.password = 'true'
|
||||||
// config.connectDialog.channelName : 'false'
|
// config.connectDialog.channelName = 'false'
|
||||||
|
|
||||||
// Default values for user settings
|
// Default values for user settings
|
||||||
// You can see your current value by typing `localStorage.getItem('mumble.$setting')` in the web console.
|
// 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.voiceMode = 'vad' // one of 'cont' (Continuous), 'ptt' (Push-to-Talk), 'vad' (Voice Activity Detection)
|
||||||
// config.settings.pttKey : 'ctrl + shift'
|
// config.settings.pttKey = 'ctrl + shift'
|
||||||
// config.settings.vadLevel : '0.3'
|
// 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.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.audioBitrate = '40000' // bits per second
|
||||||
// config.settings.samplesPerPacket : '960'
|
// config.settings.samplesPerPacket = '960'
|
||||||
|
|
||||||
// Default values (can be changed by passing a query parameter of the same name)
|
// Default values (can be changed by passing a query parameter of the same name)
|
||||||
// Connect Dialog
|
// Connect Dialog
|
||||||
// config.defaults.address': window.location.hostname,
|
// config.defaults.address = 'window.location.hostname'
|
||||||
// config.defaults.port : '443'
|
// config.defaults.port = '443'
|
||||||
// config.defaults.token : ''
|
// config.defaults.token = ''
|
||||||
// config.defaults.username': ''
|
// config.defaults.username = ''
|
||||||
// config.defaults.password': '',
|
// config.defaults.password = '',
|
||||||
// config.defaults.joinDialog : 'false' // replace whole dialog with single "Join Conference" button
|
// 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.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.avatarurl = '' // download and set the user's Mumble avatar to the image at this URL
|
||||||
|
|
||||||
// General
|
// General
|
||||||
config.defaults.theme : 'MetroMumbleDark'
|
config.defaults.theme = 'MetroMumbleDark'
|
||||||
|
|
Loading…
Reference in a new issue