Commit Graph

9859 Commits

Author SHA1 Message Date
Felipe Cecagno
1d7f1604dd replace BigBlueButton in the localization files by Mconf-Live 2015-03-26 12:12:54 -03:00
Felipe Cecagno
69adf85522 Merge branch 'bbb-check-localization' into mconf-live0.6.2 2015-03-26 12:10:04 -03:00
Felipe Cecagno
c6bed30d9e a little better pt_BR translations 2015-03-26 12:09:44 -03:00
Richard Alam
c63c371e7b - fix issue https://code.google.com/p/bigbluebutton/issues/detail?id=1909 2015-03-25 21:58:09 -03:00
Pedro Beschorner Marin
6431d6f4d1 Basic portuguese localization 2015-03-25 18:58:44 -03:00
Mateus Dalepiane
7a0e75ace3 Merge branch 'mdalepiane/reconnect-webrtc' into mconf-live0.6.2 2015-03-25 12:10:04 -03:00
Calvin Walton
e1e2d78e50 Skip the 'ser' repair if there are no webcam videos
This was causing the sanity check to fail.
2015-03-24 21:15:49 -03:00
Calvin Walton
34b13eb807 Attempt to repair red5 'ser' files in sanity script 2015-03-24 21:15:49 -03:00
Felipe Cecagno
d8174e3d78 Merge branch '090-encrypted-recording' into mconf-live0.6.2 2015-03-24 21:15:44 -03:00
Felipe Cecagno
d4f0c2c229 fixed the start and end time on the encrypted format metadata, which is now based on epoch 2015-03-24 21:15:25 -03:00
Mateus Dalepiane
6b33495158 Auto re-connection for WebRTC calls on client
The client tries to reconnect 3 times before failing and asking if
the user wants to use flash audio or cancel.
2015-03-24 15:37:43 -03:00
Mateus Dalepiane
2d14eaf531 Fix WebRTC user agent callbacks
This applies to connect and disconnect websocket events.
2015-03-24 12:51:31 -03:00
Felipe Cecagno
2df21ae7e2 Merge branch 'webrtc-timeout' into mconf-live0.6.2 2015-03-21 12:38:39 -03:00
Felipe Cecagno
3c307490ef fixed the cancel button visibility when it take a while to enable webrtc but eventually it worked, so the next time the connecting window is presented, the cancel button should be hidden again instead of remain visible
to test it, apply this patch:

diff --git a/bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js b/bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js
index b9b35bb..f497afa 100755
--- a/bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js
+++ b/bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js
@@ -33,7 +33,7 @@ function joinWebRTCVoiceConference() {
                                BBB.webRTCConferenceCallEnded();
                                break;
                        case 'started':
-                               BBB.webRTCConferenceCallStarted();
+                               setTimeout(function() { BBB.webRTCConferenceCallStarted(); }, 15000);
                                break;
                        case 'connecting':
                                BBB.webRTCConferenceCallConnecting();
@@ -79,7 +79,7 @@ function startWebRTCAudioTest(){
                                BBB.webRTCEchoTestEnded();
                                break;
                        case 'started':
-                               BBB.webRTCEchoTestStarted();
+                               setTimeout(function() { BBB.webRTCEchoTestStarted(); }, 15000);
                                break;
                        case 'connecting':
                                BBB.webRTCEchoTestConnecting();
2015-03-21 12:38:08 -03:00
Calvin Walton
5a2c7bae69 Fix beta recording update script
It had some leftover debug code that caused it to only convert the
first 10 recordings instead of all of them.

The name of the '.done' file is changed so the update will be re-run
automatically.
2015-03-20 17:48:05 -03:00
Felipe Cecagno
bba8dfd553 Merge branch 'webrtc-timeout' into mconf-live0.6.2 2015-03-20 17:18:46 -03:00
Felipe Cecagno
2de9adafb8 change webrtc timeout to 60 seconds, and show the cancel button after 5 seconds trying to connect 2015-03-20 17:18:29 -03:00
Mateus Dalepiane
dcb7e19651 Set pdf2swf target Flash version to 7 to support Adobe AIR
When generating swf files for later versions of Flash pdf2swf will insert an
unsupported command "allowDomain" into the generated swf files.
2015-03-20 13:06:16 -03:00
Felipe Cecagno
6bab3adf61 Merge branch 'meeting-created-params' into mconf-live0.6.2
Conflicts:
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/service/messaging/Constants.java
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/CollectorActor.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/Constants.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/InMessages.scala
	bigbluebutton-apps/src/main/scala/org/bigbluebutton/core/api/OutMessages.scala
	bigbluebutton-web/src/java/org/bigbluebutton/api/messaging/Constants.java
2015-03-20 12:37:58 -03:00
Mateus Dalepiane
85497ea6c3 Adding information to the event "meeting_created_message"
The following information was added:
+ moderator_pass (Moderator password)
+ viewer_pass (Viewer password)
+ create_time (Create time)
+ create_date (Create date)
2015-03-20 12:32:43 -03:00
Mateus Dalepiane
514f2b928d Adding information to create_meeting_request event [Bug #1429]
This information is necessary so bbb-apps can send with the
meeting_created_message event
2015-03-20 12:32:43 -03:00
Mateus Dalepiane
85d5cb786b Merge pull request #9 from mdalepiane/ios-video-support
iOS video support
2015-03-18 19:10:46 -03:00
Mateus Dalepiane
d65b92fad2 Fix log level of FFmpeg and location of some logs 2015-03-18 19:07:00 -03:00
Mateus Dalepiane
122f065c05 Clean up after merge 2015-03-18 19:01:42 -03:00
Mateus Dalepiane
dabd9b2ae8 Merge branch 'ios-video-support' into mconf-live0.6.2
Conflicts:
	bbb-video/src/main/java/org/bigbluebutton/app/video/VideoApplication.java
2015-03-18 18:52:01 -03:00
Mateus Dalepiane
8ae1ab7698 Improving H263 logs 2015-03-18 17:40:12 -03:00
Mateus Dalepiane
f282180683 Launch FFmpeg when convertion is necessary
Launch FFmpeg when a client plays a stream with stream name beginning
with "h263/". Also keep track of how many clients are listening to a
converted stream, and closes it when no longer used.
2015-03-18 17:29:07 -03:00
Pedro Beschorner Marin
7372d12e51 Added a timeout cancel button in WebRTC audio connection 2015-03-18 16:59:26 -03:00
Mateus Dalepiane
cd2f91d8e9 Check if video convertion is necessary
Check whether client is trying to play a stream starting with "h263/",
this indicates that the video must be converted.
2015-03-18 14:37:30 -03:00
Mateus Dalepiane
64cf2abdc5 Check bbb video connection parameters
This is necessary because ffmpeg do not pass these paraemters, but
should connect anyway.
2015-03-18 11:53:59 -03:00
Felipe Cecagno
9780df5b13 Merge branch '090-deskshare-window' into mconf-live0.6.2 2015-03-04 12:34:48 -03:00
Felipe Cecagno
8bac97b10c adding the missing pt_BR strings 2015-03-04 12:34:34 -03:00
Felipe Cecagno
43d78b656b Merge branch '090-new-videodock' into mconf-live0.6.2 2015-03-04 11:57:52 -03:00
Felipe Cecagno
2d00bda3ea removed an ObjectUtil.toString that was causing the entire UI to freeze when there was an async error on UserVideo 2015-03-04 11:57:34 -03:00
Felipe Cecagno
bb330cf0a2 Merge branch '090-deskshare-window' into mconf-live0.6.2
Conflicts:
	bigbluebutton-client/resources/prod/layout.xml
	bigbluebutton-client/resources/prod/lib/deployJava.js
	bigbluebutton-client/src/org/bigbluebutton/main/views/MainApplicationShell.mxml
2015-03-02 00:25:02 -03:00
Felipe Cecagno
7fee4ac0d0 improved the desktop sharing publish window preview 2015-03-02 00:23:18 -03:00
Chad Pilkey
815be28d0b Revert "Revert "Added Java check to the configuration notifications""
This reverts commit 82545a03f3.
2015-03-02 00:53:10 +00:00
Felipe Cecagno
87151b5513 cleanup; deskshare view window toolbar appears on top of the deskshare video, no matter the way the window is scrolled 2015-03-01 20:27:17 -03:00
Felipe Cecagno
b88f652bf6 cleanup 2015-03-01 12:34:13 -03:00
Mateus Dalepiane
dfceb138b0 Implemented an auto hiding toolbar to toggle deskshare options 2015-03-01 12:27:20 -03:00
Mateus Dalepiane
9e9bbfc72e All resize operations work as expected
The toggle button is still missplaced.
2015-03-01 12:27:20 -03:00
Mateus Dalepiane
114fad22e6 Deskshare fit window/actual size button partially working 2015-03-01 12:27:20 -03:00
Mateus Dalepiane
f3ba92c087 Partially working 2015-03-01 12:27:20 -03:00
Felipe Cecagno
d6f587db7b Merge branch '090-force-listen-only' into mconf-live0.6.2 2015-02-17 21:08:01 -02:00
Felipe Cecagno
6cb8ca807e fixed some edge cases when using forceListenOnly and other problems due to the ability to use webrtc after using flash audio 2015-02-17 21:06:03 -02:00
Felipe Cecagno
538961c2f6 Merge branch '090-listen-only-by-default' into HEAD 2015-02-13 18:26:09 -02:00
Felipe Cecagno
fe69560cb1 Merge branch '090-java-detection' into mconf-live0.6.2 2015-02-12 15:51:54 -02:00
Felipe Cecagno
614dcdf31b purging completely the java detection branch 2015-02-12 15:51:43 -02:00
Felipe Cecagno
80e5c00510 Merge pull request #7 from mdalepiane/090-java-detection
Reverting our Java detection changes
2015-02-12 15:48:29 -02:00
Felipe Cecagno
6d52b3eeea Merge branch '090-guest-role' into mconf-live0.6.2 2015-02-12 15:47:40 -02:00