[__jitsi*] Update to 2.0.6826

Sponsored by: plataformess.org, reaseuskadi.eus
This commit is contained in:
pedro 2022-01-27 00:47:51 +01:00
parent c32a1836aa
commit d18c47f056
5 changed files with 176 additions and 78 deletions

View File

@ -7,7 +7,7 @@
# We could automate this, but are using it as an indicator for the # We could automate this, but are using it as an indicator for the
# latest branch with which we conciliated changes. # latest branch with which we conciliated changes.
BRANCH="jitsi-meet_6726" BRANCH="jitsi-meet_6826"
REPO="https://github.com/jitsi/jitsi-meet" REPO="https://github.com/jitsi/jitsi-meet"
get_url() { get_url() {

View File

@ -86,18 +86,30 @@ fi
// callStatsThreshold: 5 // enable callstats for 5% of the users. // callStatsThreshold: 5 // enable callstats for 5% of the users.
}, },
// Feature Flags.
flags: {
// Enables source names in the signaling.
// sourceNameSignaling: false,
},
// Disables moderator indicators. // Disables moderator indicators.
// disableModeratorIndicator: false, // disableModeratorIndicator: false,
// Disables the reactions feature. // Disables the reactions feature.
// disableReactions: true, // disableReactions: true,
// Disables the reactions moderation feature.
// disableReactionsModeration: false,
// Disables polls feature. // Disables polls feature.
// disablePolls: false, // disablePolls: false,
// Disables self-view tile. (hides it from tile view and from filmstrip) // Disables self-view tile. (hides it from tile view and from filmstrip)
// disableSelfView: false, // disableSelfView: false,
// Disables self-view settings in UI
// disableSelfViewSettings: false,
// Disables ICE/UDP by filtering out local and remote UDP candidates in // Disables ICE/UDP by filtering out local and remote UDP candidates in
// signalling. // signalling.
// webrtcIceUdpDisable: false, // webrtcIceUdpDisable: false,
@ -491,12 +503,18 @@ $(if [ -n "${VIDEO_CONSTRAINTS}" ]; then echo "${VIDEO_CONSTRAINTS},"; fi)
// Default remote name to be displayed // Default remote name to be displayed
// defaultRemoteDisplayName: 'Fellow Jitster', // defaultRemoteDisplayName: 'Fellow Jitster',
// Hides the display name from the participant thumbnail
// hideDisplayName: false
// Default language for the user interface. // Default language for the user interface.
defaultLanguage: '${DEFAULT_LANGUAGE}', defaultLanguage: '${DEFAULT_LANGUAGE}',
// Disables profile and the edit of all fields from the profile settings (display name and email) // Disables profile and the edit of all fields from the profile settings (display name and email)
// disableProfile: false, // disableProfile: false,
// Hides the email section under profile settings.
// hideEmailInSettings: false,
// Whether or not some features are checked based on token. // Whether or not some features are checked based on token.
// enableFeaturesBasedOnToken: false, // enableFeaturesBasedOnToken: false,
@ -541,6 +559,9 @@ $(if [ -n "${VIDEO_CONSTRAINTS}" ]; then echo "${VIDEO_CONSTRAINTS},"; fi)
// Document should be focused for this option to work // Document should be focused for this option to work
// enableAutomaticUrlCopy: false, // enableAutomaticUrlCopy: false,
// Array with avatar URL prefixes that need to use CORS.
// corsAvatarURLs: [ 'https://www.gravatar.com/avatar/' ],
// Base URL for a Gravatar-compatible service. Defaults to libravatar. // Base URL for a Gravatar-compatible service. Defaults to libravatar.
// gravatarBaseURL: 'https://seccdn.libravatar.org/avatar/', // gravatarBaseURL: 'https://seccdn.libravatar.org/avatar/',
@ -607,41 +628,61 @@ $(if [ -n "${VIDEO_CONSTRAINTS}" ]; then echo "${VIDEO_CONSTRAINTS},"; fi)
// alwaysVisible: false // alwaysVisible: false
// }, // },
// Toolbar buttons which have their click event exposed through the API on // Toolbar buttons which have their click/tap event exposed through the API on
// \`toolbarButtonClicked\` event instead of executing the normal click routine. // \`toolbarButtonClicked\` event instead of executing the normal click routine.
// prevent execution of the click/tap routine; passing an object with `key` and
// `preventExecution` flag on false will not prevent execution of the click/tap
// routine. Below array with mixed mode for passing the buttons.
// buttonsWithNotifyClick: [ // buttonsWithNotifyClick: [
// 'camera', // 'camera',
// 'chat', // {
// 'closedcaptions', // key: 'chat',
// 'desktop', // preventExecution: false
// 'download', // },
// 'embedmeeting', // {
// 'etherpad', // key: 'closedcaptions',
// 'feedback', // preventExecution: true
// 'filmstrip', // },
// 'fullscreen', // 'desktop',
// 'hangup', // 'download',
// 'help', // 'embedmeeting',
// 'invite', // 'etherpad',
// 'livestreaming', // 'feedback',
// 'microphone', // 'filmstrip',
// 'mute-everyone', // 'fullscreen',
// 'mute-video-everyone', // 'hangup',
// 'participants-pane', // 'help',
// 'profile', // {
// 'raisehand', // key: 'invite',
// 'recording', // preventExecution: false
// 'security', // },
// 'select-background', // 'livestreaming',
// 'settings', // 'microphone',
// 'shareaudio', // 'mute-everyone',
// 'sharedvideo', // 'mute-video-everyone',
// 'shortcuts', // 'participants-pane',
// 'stats', // 'profile',
// 'tileview', // {
// 'toggle-camera', // key: 'raisehand',
// 'videoquality', // preventExecution: true
// '__end' // },
// 'recording',
// 'security',
// 'select-background',
// 'settings',
// 'shareaudio',
// 'sharedvideo',
// 'shortcuts',
// 'stats',
// 'tileview',
// 'toggle-camera',
// 'videoquality',
// // The add passcode button from the security dialog.
// {
// key: 'add-passcode',
// preventExecution: false
// }
// '__end'
// ], // ],
// List of pre meeting screens buttons to hide. The values must be one or more of the 5 allowed buttons: // List of pre meeting screens buttons to hide. The values must be one or more of the 5 allowed buttons:
@ -1017,14 +1058,15 @@ $(if [ -n "${VIDEO_CONSTRAINTS}" ]; then echo "${VIDEO_CONSTRAINTS},"; fi)
// If true, tile view will not be enabled automatically when the participants count threshold is reached. // If true, tile view will not be enabled automatically when the participants count threshold is reached.
// disableTileView: true, // disableTileView: true,
// If true, the tiles will be displayed contained within the available space rather than enlarged to cover it. // If true, the tiles will be displayed contained within the available space rather than enlarged to cover it,
// with a 16:9 aspect ratio (old behaviour).
// disableTileEnlargement: true, // disableTileEnlargement: true,
// Controls the visibility and behavior of the top header conference info labels. // Controls the visibility and behavior of the top header conference info labels.
// If a label's id is not in any of the 2 arrays, it will not be visible at all on the header. // If a label's id is not in any of the 2 arrays, it will not be visible at all on the header.
// conferenceInfo: { // conferenceInfo: {
// // those labels will not be hidden in tandem with the toolbox. // // those labels will not be hidden in tandem with the toolbox.
// alwaysVisible: ['recording', 'local-recording'], // alwaysVisible: ['recording', 'local-recording', 'raised-hands-count'],
// // those labels will be auto-hidden in tandem with the toolbox buttons. // // those labels will be auto-hidden in tandem with the toolbox buttons.
// autoHide: [ // autoHide: [
// 'subject', // 'subject',
@ -1038,10 +1080,10 @@ $(if [ -n "${VIDEO_CONSTRAINTS}" ]; then echo "${VIDEO_CONSTRAINTS},"; fi)
// }, // },
// Hides the conference subject // Hides the conference subject
// hideConferenceSubject: true, // hideConferenceSubject: false,
// Hides the conference timer. // Hides the conference timer.
// hideConferenceTimer: true, // hideConferenceTimer: false,
// Hides the recording label // Hides the recording label
// hideRecordingLabel: false, // hideRecordingLabel: false,
@ -1052,6 +1094,9 @@ $(if [ -n "${VIDEO_CONSTRAINTS}" ]; then echo "${VIDEO_CONSTRAINTS},"; fi)
// Sets the conference subject // Sets the conference subject
// subject: 'Conference Subject', // subject: 'Conference Subject',
// Sets the conference local subject
// localSubject: 'Conference Local Subject',
// This property is related to the use case when jitsi-meet is used via the IFrame API. When the property is true // This property is related to the use case when jitsi-meet is used via the IFrame API. When the property is true
// jitsi-meet will use the local storage of the host page instead of its own. This option is useful if the browser // jitsi-meet will use the local storage of the host page instead of its own. This option is useful if the browser
// is not persisting the local storage inside the iframe. // is not persisting the local storage inside the iframe.
@ -1156,10 +1201,14 @@ $(if [ -n "${VIDEO_CONSTRAINTS}" ]; then echo "${VIDEO_CONSTRAINTS},"; fi)
// 'lobby.joinRejectedMessage', // shown when while in a lobby, user's request to join is rejected // 'lobby.joinRejectedMessage', // shown when while in a lobby, user's request to join is rejected
// 'lobby.notificationTitle', // shown when lobby is toggled and when join requests are allowed / denied // 'lobby.notificationTitle', // shown when lobby is toggled and when join requests are allowed / denied
// 'localRecording.localRecording', // shown when a local recording is started // 'localRecording.localRecording', // shown when a local recording is started
// 'notify.chatMessages', // shown when receiving chat messages while the chat window is closed
// 'notify.disconnected', // shown when a participant has left // 'notify.disconnected', // shown when a participant has left
// 'notify.connectedOneMember', // show when a participant joined // 'notify.connectedOneMember', // show when a participant joined
// 'notify.connectedTwoMembers', // show when two participants joined simultaneously // 'notify.connectedTwoMembers', // show when two participants joined simultaneously
// 'notify.connectedThreePlusMembers', // show when more than 2 participants joined simultaneously // 'notify.connectedThreePlusMembers', // show when more than 2 participants joined simultaneously
// 'notify.leftOneMember', // show when a participant left
// 'notify.leftTwoMembers', // show when two participants left simultaneously
// 'notify.leftThreePlusMembers', // show when more than 2 participants left simultaneously
// 'notify.grantedTo', // shown when moderator rights were granted to a participant // 'notify.grantedTo', // shown when moderator rights were granted to a participant
// 'notify.invitedOneMember', // shown when 1 participant has been invited // 'notify.invitedOneMember', // shown when 1 participant has been invited
// 'notify.invitedThreePlusMembers', // shown when 3+ participants have been invited // 'notify.invitedThreePlusMembers', // shown when 3+ participants have been invited

View File

@ -74,18 +74,30 @@ var config = {
// callStatsThreshold: 5 // enable callstats for 5% of the users. // callStatsThreshold: 5 // enable callstats for 5% of the users.
}, },
// Feature Flags.
flags: {
// Enables source names in the signaling.
// sourceNameSignaling: false,
},
// Disables moderator indicators. // Disables moderator indicators.
// disableModeratorIndicator: false, // disableModeratorIndicator: false,
// Disables the reactions feature. // Disables the reactions feature.
// disableReactions: true, // disableReactions: true,
// Disables the reactions moderation feature.
// disableReactionsModeration: false,
// Disables polls feature. // Disables polls feature.
// disablePolls: false, // disablePolls: false,
// Disables self-view tile. (hides it from tile view and from filmstrip) // Disables self-view tile. (hides it from tile view and from filmstrip)
// disableSelfView: false, // disableSelfView: false,
// Disables self-view settings in UI
// disableSelfViewSettings: false,
// Disables ICE/UDP by filtering out local and remote UDP candidates in // Disables ICE/UDP by filtering out local and remote UDP candidates in
// signalling. // signalling.
// webrtcIceUdpDisable: false, // webrtcIceUdpDisable: false,
@ -478,12 +490,18 @@ var config = {
// Default remote name to be displayed // Default remote name to be displayed
// defaultRemoteDisplayName: 'Fellow Jitster', // defaultRemoteDisplayName: 'Fellow Jitster',
// Hides the display name from the participant thumbnail
// hideDisplayName: false
// Default language for the user interface. // Default language for the user interface.
// defaultLanguage: 'en', // defaultLanguage: 'en',
// Disables profile and the edit of all fields from the profile settings (display name and email) // Disables profile and the edit of all fields from the profile settings (display name and email)
// disableProfile: false, // disableProfile: false,
// Hides the email section under profile settings.
// hideEmailInSettings: false,
// Whether or not some features are checked based on token. // Whether or not some features are checked based on token.
// enableFeaturesBasedOnToken: false, // enableFeaturesBasedOnToken: false,
@ -528,6 +546,9 @@ var config = {
// Document should be focused for this option to work // Document should be focused for this option to work
// enableAutomaticUrlCopy: false, // enableAutomaticUrlCopy: false,
// Array with avatar URL prefixes that need to use CORS.
// corsAvatarURLs: [ 'https://www.gravatar.com/avatar/' ],
// Base URL for a Gravatar-compatible service. Defaults to libravatar. // Base URL for a Gravatar-compatible service. Defaults to libravatar.
// gravatarBaseURL: 'https://seccdn.libravatar.org/avatar/', // gravatarBaseURL: 'https://seccdn.libravatar.org/avatar/',
@ -594,41 +615,61 @@ var config = {
// alwaysVisible: false // alwaysVisible: false
// }, // },
// Toolbar buttons which have their click event exposed through the API on // Toolbar buttons which have their click/tap event exposed through the API on
// `toolbarButtonClicked` event instead of executing the normal click routine. // `toolbarButtonClicked`. Passing a string for the button key will
// prevent execution of the click/tap routine; passing an object with `key` and
// `preventExecution` flag on false will not prevent execution of the click/tap
// routine. Below array with mixed mode for passing the buttons.
// buttonsWithNotifyClick: [ // buttonsWithNotifyClick: [
// 'camera', // 'camera',
// 'chat', // {
// 'closedcaptions', // key: 'chat',
// 'desktop', // preventExecution: false
// 'download', // },
// 'embedmeeting', // {
// 'etherpad', // key: 'closedcaptions',
// 'feedback', // preventExecution: true
// 'filmstrip', // },
// 'fullscreen', // 'desktop',
// 'hangup', // 'download',
// 'help', // 'embedmeeting',
// 'invite', // 'etherpad',
// 'livestreaming', // 'feedback',
// 'microphone', // 'filmstrip',
// 'mute-everyone', // 'fullscreen',
// 'mute-video-everyone', // 'hangup',
// 'participants-pane', // 'help',
// 'profile', // {
// 'raisehand', // key: 'invite',
// 'recording', // preventExecution: false
// 'security', // },
// 'select-background', // 'livestreaming',
// 'settings', // 'microphone',
// 'shareaudio', // 'mute-everyone',
// 'sharedvideo', // 'mute-video-everyone',
// 'shortcuts', // 'participants-pane',
// 'stats', // 'profile',
// 'tileview', // {
// 'toggle-camera', // key: 'raisehand',
// 'videoquality', // preventExecution: true
// '__end' // },
// 'recording',
// 'security',
// 'select-background',
// 'settings',
// 'shareaudio',
// 'sharedvideo',
// 'shortcuts',
// 'stats',
// 'tileview',
// 'toggle-camera',
// 'videoquality',
// // The add passcode button from the security dialog.
// {
// key: 'add-passcode',
// preventExecution: false
// }
// '__end'
// ], // ],
// List of pre meeting screens buttons to hide. The values must be one or more of the 5 allowed buttons: // List of pre meeting screens buttons to hide. The values must be one or more of the 5 allowed buttons:
@ -1004,14 +1045,15 @@ var config = {
// If true, tile view will not be enabled automatically when the participants count threshold is reached. // If true, tile view will not be enabled automatically when the participants count threshold is reached.
// disableTileView: true, // disableTileView: true,
// If true, the tiles will be displayed contained within the available space rather than enlarged to cover it. // If true, the tiles will be displayed contained within the available space rather than enlarged to cover it,
// with a 16:9 aspect ratio (old behaviour).
// disableTileEnlargement: true, // disableTileEnlargement: true,
// Controls the visibility and behavior of the top header conference info labels. // Controls the visibility and behavior of the top header conference info labels.
// If a label's id is not in any of the 2 arrays, it will not be visible at all on the header. // If a label's id is not in any of the 2 arrays, it will not be visible at all on the header.
// conferenceInfo: { // conferenceInfo: {
// // those labels will not be hidden in tandem with the toolbox. // // those labels will not be hidden in tandem with the toolbox.
// alwaysVisible: ['recording', 'local-recording'], // alwaysVisible: ['recording', 'local-recording', 'raised-hands-count'],
// // those labels will be auto-hidden in tandem with the toolbox buttons. // // those labels will be auto-hidden in tandem with the toolbox buttons.
// autoHide: [ // autoHide: [
// 'subject', // 'subject',
@ -1025,10 +1067,10 @@ var config = {
// }, // },
// Hides the conference subject // Hides the conference subject
// hideConferenceSubject: true, // hideConferenceSubject: false,
// Hides the conference timer. // Hides the conference timer.
// hideConferenceTimer: true, // hideConferenceTimer: false,
// Hides the recording label // Hides the recording label
// hideRecordingLabel: false, // hideRecordingLabel: false,
@ -1039,6 +1081,9 @@ var config = {
// Sets the conference subject // Sets the conference subject
// subject: 'Conference Subject', // subject: 'Conference Subject',
// Sets the conference local subject
// localSubject: 'Conference Local Subject',
// This property is related to the use case when jitsi-meet is used via the IFrame API. When the property is true // This property is related to the use case when jitsi-meet is used via the IFrame API. When the property is true
// jitsi-meet will use the local storage of the host page instead of its own. This option is useful if the browser // jitsi-meet will use the local storage of the host page instead of its own. This option is useful if the browser
// is not persisting the local storage inside the iframe. // is not persisting the local storage inside the iframe.
@ -1143,10 +1188,14 @@ var config = {
// 'lobby.joinRejectedMessage', // shown when while in a lobby, user's request to join is rejected // 'lobby.joinRejectedMessage', // shown when while in a lobby, user's request to join is rejected
// 'lobby.notificationTitle', // shown when lobby is toggled and when join requests are allowed / denied // 'lobby.notificationTitle', // shown when lobby is toggled and when join requests are allowed / denied
// 'localRecording.localRecording', // shown when a local recording is started // 'localRecording.localRecording', // shown when a local recording is started
// 'notify.chatMessages', // shown when receiving chat messages while the chat window is closed
// 'notify.disconnected', // shown when a participant has left // 'notify.disconnected', // shown when a participant has left
// 'notify.connectedOneMember', // show when a participant joined // 'notify.connectedOneMember', // show when a participant joined
// 'notify.connectedTwoMembers', // show when two participants joined simultaneously // 'notify.connectedTwoMembers', // show when two participants joined simultaneously
// 'notify.connectedThreePlusMembers', // show when more than 2 participants joined simultaneously // 'notify.connectedThreePlusMembers', // show when more than 2 participants joined simultaneously
// 'notify.leftOneMember', // show when a participant left
// 'notify.leftTwoMembers', // show when two participants left simultaneously
// 'notify.leftThreePlusMembers', // show when more than 2 participants left simultaneously
// 'notify.grantedTo', // shown when moderator rights were granted to a participant // 'notify.grantedTo', // shown when moderator rights were granted to a participant
// 'notify.invitedOneMember', // shown when 1 participant has been invited // 'notify.invitedOneMember', // shown when 1 participant has been invited
// 'notify.invitedThreePlusMembers', // shown when 3+ participants have been invited // 'notify.invitedThreePlusMembers', // shown when 3+ participants have been invited

View File

@ -37,7 +37,7 @@ var interfaceConfig = {
CLOSE_PAGE_GUEST_HINT: false, // A html text to be shown to guests on the close page, false disables it CLOSE_PAGE_GUEST_HINT: false, // A html text to be shown to guests on the close page, false disables it
DEFAULT_BACKGROUND: '#474747', DEFAULT_BACKGROUND: '#040404',
DEFAULT_LOGO_URL: '${BRANDING_WATERMARK_PATH}', DEFAULT_LOGO_URL: '${BRANDING_WATERMARK_PATH}',
DEFAULT_WELCOME_PAGE_LOGO_URL: '${BRANDING_WATERMARK_PATH}', DEFAULT_WELCOME_PAGE_LOGO_URL: '${BRANDING_WATERMARK_PATH}',

View File

@ -26,7 +26,7 @@ var interfaceConfig = {
CLOSE_PAGE_GUEST_HINT: false, // A html text to be shown to guests on the close page, false disables it CLOSE_PAGE_GUEST_HINT: false, // A html text to be shown to guests on the close page, false disables it
DEFAULT_BACKGROUND: '#474747', DEFAULT_BACKGROUND: '#040404',
DEFAULT_LOGO_URL: 'images/watermark.svg', DEFAULT_LOGO_URL: 'images/watermark.svg',
DEFAULT_WELCOME_PAGE_LOGO_URL: 'images/watermark.svg', DEFAULT_WELCOME_PAGE_LOGO_URL: 'images/watermark.svg',