mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-08-17 08:01:09 +02:00
updates for v2.3.4
This commit is contained in:
@ -14,7 +14,7 @@ USER meteor
|
||||
ENV METEOR_VERSION 1.10.2
|
||||
RUN curl -sL https://install.meteor.com?release=$METEOR_VERSION | sed s/--progress-bar/-sL/g | /bin/sh
|
||||
|
||||
ENV TAG v2.3.0
|
||||
ENV TAG v2.3.4
|
||||
RUN cd ~ \
|
||||
&& svn checkout https://github.com/bigbluebutton/bigbluebutton/tags/$TAG/bigbluebutton-html5 \
|
||||
&& mv ~/bigbluebutton-html5 ~/source \
|
||||
@ -41,4 +41,4 @@ COPY settings.yml /app/programs/server/assets/app/config/settings.yml.tmpl
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
|
||||
# lets set the tag again, so that it is include in the image for later version retrieval
|
||||
ENV TAG v2.3.0
|
||||
ENV TAG v2.3.4
|
||||
|
@ -3,10 +3,20 @@ public:
|
||||
mobileFontSize: 16px
|
||||
desktopFontSize: 14px
|
||||
audioChatNotification: false
|
||||
# Shows the audio modal when user joins the room. The audio modal prompts
|
||||
# user to select an option ("Microphone" and/or "Listen only") for joining
|
||||
# audio
|
||||
autoJoin: true
|
||||
# Disables the listen only option in audio modal.
|
||||
listenOnlyMode: {{ .Env.LISTEN_ONLY_MODE }}
|
||||
forceListenOnly: false
|
||||
# Skips the echo test when connecting with microphone.
|
||||
skipCheck: {{ .Env.DISABLE_ECHO_TEST }}
|
||||
# Skips the echo test when connecting with microphone right after user
|
||||
# joins the room the first time. Subsequents joins to microphone won't
|
||||
# have echo test skipped, for example if user leave and join mic again
|
||||
# or reloading page and joining mic again.
|
||||
# This setting won't have effect if skipCheck = true
|
||||
skipCheckOnJoin: false
|
||||
#
|
||||
# Allow users to change microphone/speaker dinamically
|
||||
@ -20,7 +30,7 @@ public:
|
||||
appName: BigBlueButton HTML5 Client
|
||||
bbbServerVersion: 2.3-dev-docker
|
||||
copyright: '©2021 BigBlueButton Inc.'
|
||||
html5ClientBuild: "1669-docker"
|
||||
html5ClientBuild: "1783-docker"
|
||||
helpLink: https://bigbluebutton.org/html5/
|
||||
lockOnJoin: true
|
||||
cdn: ''
|
||||
@ -30,6 +40,7 @@ public:
|
||||
# in some cases we want only custom logoutUrl to be used when provided on meeting create. Default value: true
|
||||
allowDefaultLogoutUrl: true
|
||||
allowUserLookup: false
|
||||
dynamicGuestPolicy: true
|
||||
enableGuestLobbyMessage: true
|
||||
enableNetworkInformation: false
|
||||
enableLimitOfViewersInWebcam: false
|
||||
@ -41,6 +52,7 @@ public:
|
||||
allowLogout: true
|
||||
allowFullscreen: true
|
||||
preloadNextSlides: 2
|
||||
warnAboutUnsavedContentOnMeetingEnd: false
|
||||
mutedAlert:
|
||||
enabled: true
|
||||
interval: 200
|
||||
@ -58,6 +70,15 @@ public:
|
||||
# https://github.com/bigbluebutton/bigbluebutton/pull/10826
|
||||
customHeartbeat: false
|
||||
showAllAvailableLocales: true
|
||||
# Show "Audio Filters for Microphone" option in settings menu.
|
||||
# When set to true, users are able to enable/disable microphone constraints,
|
||||
# otherwise default values for 'microphoneConstraints' option
|
||||
# are used.
|
||||
# For more info, see 'microphoneConstraints' option in this config.
|
||||
# If not set, default value is true.
|
||||
showAudioFilters: true
|
||||
raiseHandActionButton:
|
||||
enabled: true
|
||||
defaultSettings:
|
||||
application:
|
||||
animations: true
|
||||
@ -375,6 +396,7 @@ public:
|
||||
enabled: {{ .Env.CHAT_ENABLED }}
|
||||
itemsPerPage: 100
|
||||
timeBetweenFetchs: 1000
|
||||
enableSaveAndCopyPublicChat: true
|
||||
bufferChatInsertsMs: 0
|
||||
startClosed: {{ .Env.CHAT_START_CLOSED }}
|
||||
min_message_length: 1
|
||||
|
Reference in New Issue
Block a user