Commit Graph

33850 Commits

Author SHA1 Message Date
Anton Georgiev
4d10ca90b8
Merge pull request #15187 from bigbluebutton/antobinary-patch-1
docs: set 2.5 as the recommended version, discontinue 2.3
2022-06-15 11:16:31 -04:00
Anton Georgiev
e1c0a10486
chore: set 2.5 as the recommended version, discontinue 2.3 2022-06-15 10:10:27 -04:00
Ramón Souza
86a05cd431
Merge pull request #15156 from gabriellpr/etherpad-cutting-text
fix: Etherpad cutting off text
2022-06-15 13:15:59 +01:00
Anton Georgiev
ccc8d70594
chore: Bump version to 2.5.2 2022-06-14 17:00:14 -04:00
Gustavo Trott
565b36c263
Merge pull request #15176 from mariogasparoni/fix-15169 2022-06-14 16:47:24 -03:00
Ramón Souza
e56b821f40
Merge pull request #15143 from ramonlsouza/current-poll-presenter
fix: re-subscribe to current poll when presenter changes
2022-06-14 20:17:37 +01:00
Ramón Souza
c474a5a353
Merge pull request #15125 from JoVictorNunes/issue-15122
fix(Dashboard): make username look more clickable
2022-06-14 17:18:51 +01:00
Ramón Souza
06446a161c
Merge pull request #15145 from JoVictorNunes/dashboard-chore-Jun.08
chore: fix/update Learning A. Dashboard npm dependencies
2022-06-14 17:17:55 +01:00
Ramon Souza
2dc00ddf35 handle user leave for viewers 2022-06-14 11:29:59 -03:00
Ramón Souza
fd76d35b0b
Merge pull request #15102 from JoVictorNunes/v2.5.x-release
fix(chat notification): duplication of first message notification
2022-06-14 15:25:17 +01:00
Ramón Souza
1446bfb163
Merge pull request #15139 from JoVictorNunes/issue-15060
fix(tooltip): wait 150ms to hide the tooltip
2022-06-14 15:24:06 +01:00
Ramón Souza
a4337f620e
Merge pull request #15173 from JoVictorNunes/issue-15168
fix: presenter indicator in RTL layout
2022-06-14 15:23:18 +01:00
Ramón Souza
7b1af1891b
Merge pull request #15153 from JoVictorNunes/issue-15133
fix(connection status modal): network status icon
2022-06-14 15:22:42 +01:00
Ramón Souza
933d9b438b
Merge pull request #15148 from ramonlsouza/rename-snapshot-feature
Rename snapshot button label
2022-06-14 15:21:15 +01:00
Ramón Souza
549f9499ba
Merge pull request #15123 from ramonlsouza/issue-15112
fix: Wrong aggregation of broadcast messages to breakout room
2022-06-14 15:20:13 +01:00
Ramón Souza
b0f6df6de5
Merge pull request #15124 from JoVictorNunes/issue-15113
fix(chat): show new message indicators for poll mesages
2022-06-14 15:19:23 +01:00
Ramón Souza
aa044105a9
Merge pull request #15130 from gabriellpr/replace-dependency
chore: Swap version of bbb-diff npm dependency
2022-06-14 15:18:34 +01:00
Ramón Souza
441e275f4f
Merge pull request #15117 from gabriellpr/export-chat-bug
fix: missing "chat has been cleared" message at chat export
2022-06-14 15:17:38 +01:00
gabriellpr
7adbce8e32 WIP:adding bbbmenu component to presentation menu 2022-06-14 10:18:40 -03:00
Joao Victor
ddb63f8e71 fix: restore virtual background after leaving breakout room #15111 2022-06-14 09:40:13 -03:00
Mario Jr
e3ad7aea0c fix(audio): moderator not able to transfer audio to breakout room
Closes #15169
2022-06-14 09:00:42 -03:00
Ramon Souza
69eba762d3 fix grouping of poll results in chat 2022-06-13 13:08:44 -03:00
Joao Victor
8cbf23ad7b fix: presenter indicator in RTL layout #15168 2022-06-13 11:52:26 -03:00
Anton Georgiev
696960f7b5
Merge pull request #15146 from antonbsa/2.5-tests-fix-and-ci-improvements
test: v2.5 tests fixes and CI improvements
2022-06-10 16:47:23 -04:00
gabriellpr
ec34e7e105 etherpad cutting text
fixing etherpad alignment for lock viewers

removing break words

fix: break-word

adding white-space
2022-06-10 16:00:54 -03:00
Anton Georgiev
933c8380a4
chore: Bump version to 2.5.1 2022-06-10 09:56:38 -04:00
Ramón Souza
73668bf345
Merge pull request #15164 from bigbluebutton/revert-15155-issue-15069
Revert "fix: user not removed from users context on leave"
2022-06-10 14:45:53 +01:00
Ramón Souza
4609f9f246
Revert "fix: user not removed from users context on leave" 2022-06-10 09:52:00 -03:00
Ramón Souza
bd8f36162e
Merge pull request #15155 from ramonlsouza/issue-15069
fix: user not removed from users context on leave
2022-06-09 18:41:20 +01:00
Ramon Souza
11b85783d6 fix user not removed from users context on leave 2022-06-09 13:47:43 -03:00
Joao Victor
4c238392b2 fix(connection status modal): data saving settings button 2022-06-09 12:01:05 -03:00
Joao Victor
b191a8d63b fix(connection status modal): network status icon color #15133 2022-06-09 11:58:57 -03:00
Calvin Walton
067b4e0c6b Support deskshare videos that resize
Based on work done by Tiago Jacobs and Guilherme Pereira Leme to
investigate the behaviour of ffmpeg on videos with changing input size.

Rather than having the EDL code set fixed sizes for the scale and pad
filters, instead use ffmpeg's built in features to calculate the scale
and pad automatically, dynamically updating if the input video size
changes.

In the version of ffmpeg in Ubuntu 20.04, the 'movie' input filter is
buggy and doesn't correctly handle the video size changing. Instead of
using the movie filter, use separate inputs to the ffmpeg command (the
design used here is based on the code in audio.rb). The filter chain is
now stored into a file (using -filter_complex_script) to reduce problems
with the command line getting too long.

We are using a version of ffmpeg that's new enough to have the tpad
filter now too, so use it to extend the video if needed instead of an
extra concat.
2022-06-08 15:37:47 -04:00
Gustavo Trott
e05ee52313
Merge pull request #15147 from GuiLeme/fix-user-removal-breakout
fix user removal in breakout
2022-06-08 15:27:28 -03:00
Ramon Souza
4f3600e683 rename snapshot button label 2022-06-08 15:24:46 -03:00
GuiLeme
4e2f013fa0 fix user removal in breakout 2022-06-08 15:00:40 -03:00
Joao Victor
aa929b66a1 chore: fix Learning A. Dashboard npm dependencies 2022-06-08 11:49:43 -03:00
Anton B
17a1b7ae78 ci: improve automated tests workflow 2022-06-08 11:25:41 -03:00
Ramon Souza
507a594cae remove unused code 2022-06-08 09:40:24 -03:00
Anton B
de1c7043a9 test: fix/update tests on v2.5 2022-06-08 09:29:21 -03:00
Ramón Souza
44c24cf249
Merge pull request #15131 from ramonlsouza/audio-modal-polishing
Audio modal polishing
2022-06-08 13:25:43 +01:00
Anton Georgiev
3b4a24edf3
chore: Bump version to 2.5.0 2022-06-07 17:06:36 -04:00
Ramon Souza
375635c797 re-sub to current poll when presenter changes 2022-06-07 16:54:09 -03:00
Anton B
ed757cee34 test: update playwright to v1.19.2 2022-06-07 14:52:54 -03:00
Joao Victor
887b1a588a fix(tooltip): wait 150ms to hide the tooltip 2022-06-07 10:59:18 -03:00
Ramon Souza
242f5d3e29 audio modal spacing polishing 2022-06-03 16:10:09 -03:00
Joao Victor
72d2374b03 fix: focus handling when modal is open 2022-06-03 15:46:29 -03:00
Joao Victor
59c9d1da2e fix: close button focus on open 2022-06-03 15:42:46 -03:00
gabriellpr
79ed1d289b Swap version of bbb-diff npm dependency 2022-06-03 14:00:44 -03:00
Ramón Souza
c489303672
Merge pull request #15128 from gabriellpr/line-space-pads
fix: pad line space not showing for viewers
2022-06-03 17:13:00 +01:00