|
@@ -29,6 +29,7 @@ var interfaceConfig = {
|
|
|
DISPLAY_WELCOME_PAGE_CONTENT: true,
|
|
|
APP_NAME: 'Jitsi Meet',
|
|
|
NATIVE_APP_NAME: 'Jitsi Meet',
|
|
|
+ PROVIDER_NAME: 'Jitsi',
|
|
|
LANG_DETECTION: false, // Allow i18n to detect the system language
|
|
|
INVITATION_POWERED_BY: true,
|
|
|
|
|
@@ -49,7 +50,7 @@ var interfaceConfig = {
|
|
|
'fodeviceselection', 'hangup', 'profile', 'info', 'chat', 'recording',
|
|
|
'livestreaming', 'etherpad', 'sharedvideo', 'settings', 'raisehand',
|
|
|
'videoquality', 'filmstrip', 'invite', 'feedback', 'stats', 'shortcuts',
|
|
|
- 'tileview'
|
|
|
+ 'tileview', 'videobackgroundblur'
|
|
|
],
|
|
|
|
|
|
SETTINGS_SECTIONS: [ 'devices', 'language', 'moderator', 'profile', 'calendar' ],
|
|
@@ -153,11 +154,6 @@ var interfaceConfig = {
|
|
|
*/
|
|
|
CONNECTION_INDICATOR_DISABLED: false,
|
|
|
|
|
|
- /**
|
|
|
- * The name of the application connected to the "Add people" search service.
|
|
|
- */
|
|
|
- // ADD_PEOPLE_APP_NAME: "",
|
|
|
-
|
|
|
/**
|
|
|
* If true, hides the video quality label indicating the resolution status
|
|
|
* of the current large video.
|
|
@@ -171,7 +167,27 @@ var interfaceConfig = {
|
|
|
*
|
|
|
* @type {boolean}
|
|
|
*/
|
|
|
- RECENT_LIST_ENABLED: true
|
|
|
+ RECENT_LIST_ENABLED: true,
|
|
|
+
|
|
|
+ // Names of browsers which should show a warning stating the current browser
|
|
|
+ // has a suboptimal experience. Browsers which are not listed as optimal or
|
|
|
+ // unsupported are considered suboptimal. Valid values are:
|
|
|
+ // chrome, chromium, edge, electron, firefox, nwjs, opera, safari
|
|
|
+ OPTIMAL_BROWSERS: [ 'chrome', 'chromium', 'firefox', 'nwjs', 'electron' ],
|
|
|
+
|
|
|
+ // Browsers, in addition to those which do not fully support WebRTC, that
|
|
|
+ // are not supported and should show the unsupported browser page.
|
|
|
+ UNSUPPORTED_BROWSERS: [],
|
|
|
+
|
|
|
+ /**
|
|
|
+ * A UX mode where the last screen share participant is automatically
|
|
|
+ * pinned. Valid values are the string "remote-only" so remote participants
|
|
|
+ * get pinned but not local, otherwise any truthy value for all participants,
|
|
|
+ * and any falsy value to disable the feature.
|
|
|
+ *
|
|
|
+ * Note: this mode is experimental and subject to breakage.
|
|
|
+ */
|
|
|
+ AUTO_PIN_LATEST_SCREEN_SHARE: 'remote-only'
|
|
|
|
|
|
/**
|
|
|
* How many columns the tile view can expand to. The respected range is
|
|
@@ -197,7 +213,14 @@ var interfaceConfig = {
|
|
|
/**
|
|
|
* Specify the Android app package name.
|
|
|
*/
|
|
|
- // ANDROID_APP_PACKAGE: 'org.jitsi.meet'
|
|
|
+ // ANDROID_APP_PACKAGE: 'org.jitsi.meet',
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Override the behavior of some notifications to remain displayed until
|
|
|
+ * explicitly dismissed through a user action. The value is how long, in
|
|
|
+ * milliseconds, those notifications should remain displayed.
|
|
|
+ */
|
|
|
+ // ENFORCE_NOTIFICATION_AUTO_DISMISS_TIMEOUT: 15000,
|
|
|
};
|
|
|
|
|
|
/* eslint-enable no-unused-vars, no-var, max-len */
|