Browse Source

auto acp scripted

dev
jfinn 5 years ago
parent
commit
eedffe16be
1 changed files with 246 additions and 0 deletions
  1. 246
    0
      meet.jit.si_iconf.js

+ 246
- 0
meet.jit.si_iconf.js View File

@@ -0,0 +1,246 @@
1
+var interfaceConfig = {
2
+    // TO FIX: this needs to be handled from SASS variables. There are some
3
+    // methods allowing to use variables both in css and js.
4
+    DEFAULT_BACKGROUND: '#474747',
5
+
6
+    /**
7
+     * Whether or not the blurred video background for large video should be
8
+     * displayed on browsers that can support it.
9
+     */
10
+    DISABLE_VIDEO_BACKGROUND: false,
11
+
12
+    INITIAL_TOOLBAR_TIMEOUT: 20000,
13
+    TOOLBAR_TIMEOUT: 4000,
14
+    TOOLBAR_ALWAYS_VISIBLE: false,
15
+    DEFAULT_REMOTE_DISPLAY_NAME: 'Fellow Jitster',
16
+    DEFAULT_LOCAL_DISPLAY_NAME: 'me',
17
+    SHOW_JITSI_WATERMARK: true,
18
+    JITSI_WATERMARK_LINK: 'https://jitsi.org',
19
+
20
+    // if watermark is disabled by default, it can be shown only for guests
21
+    SHOW_WATERMARK_FOR_GUESTS: true,
22
+    SHOW_BRAND_WATERMARK: false,
23
+    BRAND_WATERMARK_LINK: '',
24
+    SHOW_POWERED_BY: false,
25
+    SHOW_DEEP_LINKING_IMAGE: false,
26
+    GENERATE_ROOMNAMES_ON_WELCOME_PAGE: true,
27
+    DISPLAY_WELCOME_PAGE_CONTENT: true,
28
+    DISPLAY_WELCOME_PAGE_TOOLBAR_ADDITIONAL_CONTENT: false,
29
+    APP_NAME: 'Jitsi Meet',
30
+    NATIVE_APP_NAME: 'Jitsi Meet',
31
+    PROVIDER_NAME: 'Jitsi',
32
+    LANG_DETECTION: false, // Allow i18n to detect the system language
33
+    INVITATION_POWERED_BY: true,
34
+
35
+    /**
36
+     * If we should show authentication block in profile
37
+     */
38
+    AUTHENTICATION_ENABLE: true,
39
+
40
+    /**
41
+     * The name of the toolbar buttons to display in the toolbar. If present,
42
+     * the button will display. Exceptions are "livestreaming" and "recording"
43
+     * which also require being a moderator and some values in config.js to be
44
+     * enabled. Also, the "profile" button will not display for user's with a
45
+     * jwt.
46
+     */
47
+    TOOLBAR_BUTTONS: [
48
+        'microphone', 'camera', 'closedcaptions', 'desktop', 'fullscreen',
49
+        'fodeviceselection', 'hangup', 'profile', 'info', 'chat', 'recording',
50
+        'livestreaming', 'etherpad', 'sharedvideo', 'settings', 'raisehand',
51
+        'videoquality', 'filmstrip', 'invite', 'feedback', 'stats', 'shortcuts',
52
+        'tileview', 'videobackgroundblur', 'download', 'help', 'mute-everyone',
53
+        'e2ee'
54
+    ],
55
+
56
+    SETTINGS_SECTIONS: [ 'devices', 'language', 'moderator', 'profile', 'calendar' ],
57
+
58
+    // Determines how the video would fit the screen. 'both' would fit the whole
59
+    // screen, 'height' would fit the original video height to the height of the
60
+    // screen, 'width' would fit the original video width to the width of the
61
+    // screen respecting ratio.
62
+    VIDEO_LAYOUT_FIT: 'both',
63
+
64
+    /**
65
+     * Whether to only show the filmstrip (and hide the toolbar).
66
+     */
67
+    filmStripOnly: false,
68
+
69
+    /**
70
+     * Whether to show thumbnails in filmstrip as a column instead of as a row.
71
+     */
72
+    VERTICAL_FILMSTRIP: true,
73
+
74
+    // A html text to be shown to guests on the close page, false disables it
75
+    CLOSE_PAGE_GUEST_HINT: '<div class = "hint-msg">For a complete meeting history <a href = "https://app.8x8.vc/?register=true" rel = "noopener" target = "_blank">sign up now</a> <br> for 8x8 Video Meetings.',
76
+    SHOW_PROMOTIONAL_CLOSE_PAGE: true,
77
+
78
+    RANDOM_AVATAR_URL_PREFIX: 'https://abotars.jitsi.net/meeple/',
79
+    RANDOM_AVATAR_URL_SUFFIX: '',
80
+    FILM_STRIP_MAX_HEIGHT: 120,
81
+
82
+    // Enables feedback star animation.
83
+    ENABLE_FEEDBACK_ANIMATION: false,
84
+    DISABLE_FOCUS_INDICATOR: true,
85
+    DISABLE_DOMINANT_SPEAKER_INDICATOR: false,
86
+
87
+    /**
88
+     * Whether the speech to text transcription subtitles panel is disabled.
89
+     * If {@code undefined}, defaults to {@code false}.
90
+     *
91
+     * @type {boolean}
92
+     */
93
+    DISABLE_TRANSCRIPTION_SUBTITLES: false,
94
+
95
+    /**
96
+     * Whether the ringing sound in the call/ring overlay is disabled. If
97
+     * {@code undefined}, defaults to {@code false}.
98
+     *
99
+     * @type {boolean}
100
+     */
101
+    DISABLE_RINGING: false,
102
+    AUDIO_LEVEL_PRIMARY_COLOR: 'rgba(255,255,255,0.4)',
103
+    AUDIO_LEVEL_SECONDARY_COLOR: 'rgba(255,255,255,0.2)',
104
+    POLICY_LOGO: null,
105
+    LOCAL_THUMBNAIL_RATIO: 16 / 9, // 16:9
106
+    REMOTE_THUMBNAIL_RATIO: 1, // 1:1
107
+    // Documentation reference for the live streaming feature.
108
+    LIVE_STREAMING_HELP_LINK: 'https://jitsi.org/live',
109
+
110
+    /**
111
+     * Whether the mobile app Jitsi Meet is to be promoted to participants
112
+     * attempting to join a conference in a mobile Web browser. If
113
+     * {@code undefined}, defaults to {@code true}.
114
+     *
115
+     * @type {boolean}
116
+     */
117
+    MOBILE_APP_PROMO: true,
118
+
119
+    /**
120
+     * Maximum coeficient of the ratio of the large video to the visible area
121
+     * after the large video is scaled to fit the window.
122
+     *
123
+     * @type {number}
124
+     */
125
+    MAXIMUM_ZOOMING_COEFFICIENT: 1.3,
126
+
127
+    /*
128
+     * If indicated some of the error dialogs may point to the support URL for
129
+     * help.
130
+     */
131
+    SUPPORT_URL: 'https://community.jitsi.org/',
132
+
133
+    /**
134
+     * Whether the connection indicator icon should hide itself based on
135
+     * connection strength. If true, the connection indicator will remain
136
+     * displayed while the participant has a weak connection and will hide
137
+     * itself after the CONNECTION_INDICATOR_HIDE_TIMEOUT when the connection is
138
+     * strong.
139
+     *
140
+     * @type {boolean}
141
+     */
142
+    CONNECTION_INDICATOR_AUTO_HIDE_ENABLED: true,
143
+
144
+    /**
145
+     * How long the connection indicator should remain displayed before hiding.
146
+     * Used in conjunction with CONNECTION_INDICATOR_AUTOHIDE_ENABLED.
147
+     *
148
+     * @type {number}
149
+     */
150
+    CONNECTION_INDICATOR_AUTO_HIDE_TIMEOUT: 5000,
151
+
152
+    /**
153
+     * If true, hides the connection indicators completely.
154
+     *
155
+     * @type {boolean}
156
+     */
157
+    CONNECTION_INDICATOR_DISABLED: false,
158
+
159
+    /**
160
+     * If true, hides the video quality label indicating the resolution status
161
+     * of the current large video.
162
+     *
163
+     * @type {boolean}
164
+     */
165
+    VIDEO_QUALITY_LABEL_DISABLED: false,
166
+
167
+    /**
168
+     * If true, will display recent list
169
+     *
170
+     * @type {boolean}
171
+     */
172
+    RECENT_LIST_ENABLED: true,
173
+
174
+    // Names of browsers which should show a warning stating the current browser
175
+    // has a suboptimal experience. Browsers which are not listed as optimal or
176
+    // unsupported are considered suboptimal. Valid values are:
177
+    // chrome, chromium, edge, electron, firefox, nwjs, opera, safari
178
+    OPTIMAL_BROWSERS: [ 'chrome', 'chromium', 'nwjs', 'electron', 'firefox', 'safari' ],
179
+
180
+    // Browsers, in addition to those which do not fully support WebRTC, that
181
+    // are not supported and should show the unsupported browser page.
182
+    UNSUPPORTED_BROWSERS: [],
183
+
184
+    /**
185
+     * A UX mode where the last screen share participant is automatically
186
+     * pinned. Valid values are the string "remote-only" so remote participants
187
+     * get pinned but not local, otherwise any truthy value for all participants,
188
+     * and any falsy value to disable the feature.
189
+     *
190
+     * Note: this mode is experimental and subject to breakage.
191
+     */
192
+    AUTO_PIN_LATEST_SCREEN_SHARE: 'remote-only',
193
+
194
+    /**
195
+     * Decides whether the chrome extension banner should be rendered on the landing page and during the meeting.
196
+     * If this is set to false, the banner will not be rendered at all. If set to true, the check for extension(s)
197
+     * being already installed is done before rendering.
198
+     */
199
+    SHOW_CHROME_EXTENSION_BANNER: true,
200
+
201
+    // If true, presence status: busy, calling, connected etc. is not displayed
202
+    DISABLE_PRESENCE_STATUS: true,
203
+
204
+    // If true, notifications regarding joining/leaving are no longer displayed
205
+    DISABLE_JOIN_LEAVE_NOTIFICATIONS: true
206
+
207
+    /**
208
+     * How many columns the tile view can expand to. The respected range is
209
+     * between 1 and 5.
210
+     */
211
+    // TILE_VIEW_MAX_COLUMNS: 5,
212
+
213
+    /**
214
+     * Specify custom URL for downloading android mobile app.
215
+     */
216
+    // MOBILE_DOWNLOAD_LINK_ANDROID: 'https://play.google.com/store/apps/details?id=org.jitsi.meet',
217
+
218
+    /**
219
+     * Specify URL for downloading ios mobile app.
220
+     */
221
+    // MOBILE_DOWNLOAD_LINK_IOS: 'https://itunes.apple.com/us/app/jitsi-meet/id1165103905',
222
+
223
+    /**
224
+     * Specify mobile app scheme for opening the app from the mobile browser.
225
+     */
226
+    // APP_SCHEME: 'org.jitsi.meet',
227
+
228
+    /**
229
+     * Specify the Android app package name.
230
+     */
231
+    // ANDROID_APP_PACKAGE: 'org.jitsi.meet',
232
+
233
+    /**
234
+     * Override the behavior of some notifications to remain displayed until
235
+     * explicitly dismissed through a user action. The value is how long, in
236
+     * milliseconds, those notifications should remain displayed.
237
+     */
238
+    // ENFORCE_NOTIFICATION_AUTO_DISMISS_TIMEOUT: 15000,
239
+
240
+    // List of undocumented settings
241
+    /**
242
+     INDICATOR_FONT_SIZES
243
+     MOBILE_DYNAMIC_LINK
244
+     PHONE_NUMBER_REGEX
245
+    */
246
+};

Loading…
Cancel
Save