Skip to content
This repository was archived by the owner on Dec 14, 2021. It is now read-only.

Commit e4176ee

Browse files
committed
apply v2.2.24 changes
1 parent a4e93ea commit e4176ee

File tree

7 files changed

+30
-13
lines changed

7 files changed

+30
-13
lines changed

mod/core/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RUN equivs-control redis-server.control \
3838

3939
# this variable is not used, but it triggers
4040
# rebuilding from here on if changed
41-
ENV VERSION v2.2.22
41+
ENV VERSION v2.2.24
4242

4343
RUN apt-get update && apt-get install -y bbb-web \
4444
bbb-fsesl-akka bbb-apps-akka bbb-transcode-akka bbb-apps \

mod/core/web/bigbluebutton.properties

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,3 +355,8 @@ lockSettingsLockOnJoinConfigurable=false
355355
allowDuplicateExtUserid=true
356356

357357
defaultTextTrackUrl=${bigbluebutton.web.serverURL}/bigbluebutton
358+
359+
# Param to end the meeting when there are no moderators after a certain period of time.
360+
# Needed for classes where teacher gets disconnected and can't get back in. Prevents
361+
# students from running amok.
362+
endWhenNoModerator=false

mod/html5/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ USER meteor
1414
ENV METEOR_VERSION 1.8.1
1515
RUN curl -sL https://install.meteor.com?release=$METEOR_VERSION | sed s/--progress-bar/-sL/g | /bin/sh
1616

17-
ENV TAG v2.2.23
17+
ENV TAG v2.2.24
1818
RUN cd ~ \
1919
&& svn checkout https://github.com/bigbluebutton/bigbluebutton/tags/$TAG/bigbluebutton-html5 \
2020
&& mv ~/bigbluebutton-html5 ~/source \
@@ -51,4 +51,4 @@ USER meteor
5151
ENTRYPOINT ["/entrypoint.sh"]
5252

5353
# lets set the tag again, so that it is include in the image for later version retrieval
54-
ENV TAG v2.2.23
54+
ENV TAG v2.2.24

mod/html5/settings.yml

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public:
1111
appName: BigBlueButton HTML5 Client
1212
bbbServerVersion: 2.2
1313
copyright: "©2020 BigBlueButton Inc."
14-
html5ClientBuild: 1006
14+
html5ClientBuild: 1024
1515
helpLink: https://bigbluebutton.org/html5/
1616
lockOnJoin: true
1717
cdn: ""
@@ -29,6 +29,10 @@ public:
2929
allowFullscreen: true
3030
remainingTimeThreshold: 30
3131
remainingTimeAlertThreshold: 1
32+
# Warning: increasing the limit of breakout rooms per meeting
33+
# can generate excessive overhead to the server. We recommend
34+
# this value to be kept under 12.
35+
breakoutRoomLimit: 8
3236
defaultSettings:
3337
application:
3438
animations: true
@@ -451,22 +455,24 @@ private:
451455
enabled: false
452456
minBrowserVersions:
453457
- browser: chrome
454-
version: 59
458+
version: 72
455459
- browser: chromeMobileIOS
456460
version: Infinity
457461
- browser: firefox
458-
version: 52
462+
version: 63
459463
- browser: firefoxMobile
460-
version: 52
464+
version: 68
461465
- browser: edge
462-
version: 17
466+
version: 79
463467
- browser: ie
464468
version: Infinity
465469
- browser: safari
466-
version: [11, 1]
470+
version: [12, 1]
467471
- browser: mobileSafari
468-
version: [11, 1]
472+
version: [12, 1]
469473
- browser: opera
470-
version: 46
474+
version: 50
471475
- browser: electron
472476
version: [0, 36]
477+
- browser: YandexBrowser
478+
version: 19

mod/recordings/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ RUN mkdir -p \
4040
/var/log/bigbluebutton \
4141
/var/log/bigbluebutton/presentation
4242

43-
ENV TAG v2.2.23
43+
ENV TAG v2.2.24
4444

4545
# add bbb-record-core (lib, scripts and Gemfile)
4646
RUN cd /usr/local/bigbluebutton/core \

scripts/fs_cli

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
set -e
3+
4+
cd $(dirname $0)/..
5+
6+
./scripts/compose exec freeswitch fs_cli -H 10.7.7.1

0 commit comments

Comments
 (0)