Saúl Ibarra Corretgé
2d45709a6a
android: add the ability to make a "libre" build
...
A libre build will exclude the following:
- Analytics modules
- Google Play services GMS
- Crashlytics
- Firebase
2019-05-02 09:26:20 +02:00
Saúl Ibarra Corretgé
6bbc2927ab
analytics: don't initialize handlers if they are not properly configured
2019-05-02 09:26:20 +02:00
Saúl Ibarra Corretgé
08891b17b6
android: expose JitsiMeetActivity.leave()
2019-05-02 09:26:20 +02:00
Saúl Ibarra Corretgé
aab3428347
android: make JitsiMeetActivity.join public
2019-05-02 09:26:20 +02:00
Saúl Ibarra Corretgé
bf7b1c5cfc
rn: add support for alpha.jitsi.net
2019-05-01 23:23:24 +02:00
Saúl Ibarra Corretgé
7b347baab6
deps: react-native@0.59.5
2019-05-01 19:16:08 +02:00
Saúl Ibarra Corretgé
f9b3d470e9
cc: fix showing CC button if config option is undefined
2019-04-30 14:50:56 +02:00
Saúl Ibarra Corretgé
7b78fa45f4
invite: don't consider "add people" enabled if there is no search URL
...
This avoids showing the + button when there is no service configured, ie with
the default Jitsi Meet install.
2019-04-30 14:50:56 +02:00
Saúl Ibarra Corretgé
34dcbd991e
rn: wait for animation before hiding SlidingView
2019-04-30 12:45:53 +02:00
Saúl Ibarra Corretgé
70dc22c107
rn: refactor BottomSheet
...
Avoid using a Modal since those create trouble with the view hierarchy.
2019-04-30 12:45:53 +02:00
damencho
89719520e2
Disposes the tracks in component was unmounted while creating those.
...
The issue is if you quickly click Devices and then another tab, we may leave open tracks (video light stays on even when you are video muted).
2019-04-29 14:38:17 +00:00
Дамян Минков
ce7bdb35ac
Merge pull request #4152 from jitsi/prosody-0.10-update
...
Updates config if prosody 0.10 is used.
2019-04-29 14:36:55 +00:00
Дамян Минков
bf8c716477
Merge pull request #4150 from jitsi/invitation-update
...
Update copy invite text.
2019-04-29 14:36:46 +00:00
Дамян Минков
93e8d755d3
Merge pull request #4148 from zbettenbuk/recording-web-css-fix
...
Safeguard Container style when used cross-platform
2019-04-29 14:36:35 +00:00
damencho
c09eee0985
Disables chat when we are in recorder mode.
2019-04-29 14:36:22 +00:00
damencho
4f6a0d7d3a
Updates config if prosody 0.10 is used.
2019-04-29 15:24:55 +01:00
damencho
dd5233d31b
Update copy invite text.
2019-04-29 15:06:36 +01:00
Bettenbuk Zoltan
31638133b7
Safeguard Container style when used cross-platform
2019-04-29 13:37:30 +02:00
Bettenbuk Zoltan
b886f8d72d
rn: specify chat text field font color
2019-04-26 21:33:11 +02:00
Дамян Минков
a6555c5d24
Singleton follow me ( #4144 )
...
* Prints errors in case of wrong initialization.
Not printing can masks some errors in the code.
* Allow only one Follow Me moderator in a meeting.
* Sends Follow Me state with all presences of the moderator.
This fixes an issue where the moderator sends the Follow Me state and then for example mute or unmute video (this will produce a presence without Follow Me state) and the new comers will not reflect current Follow Me state till a change of it comes.
* Changes fixing comments.
* Changes fixing comments.
2019-04-26 18:11:53 +00:00
Hristo Terezov
98c8fb09c4
feat(package.json): Update lib-jitsi-meet.
2019-04-26 07:54:38 -07:00
Leonard Kim
b76b261cab
fix(invite): show telephone icon
2019-04-26 07:46:41 -07:00
Bettenbuk Zoltan
0b6c51f666
rn: replace 3rd party chat library with custom implementation
2019-04-26 15:17:36 +02:00
Sylvia van Os
1cb9bbc7a4
Fix wrong filename change
2019-04-26 09:06:43 +00:00
Sylvia van Os
fee9bdb98c
Fix NAT documentation
2019-04-26 09:06:43 +00:00
virtuacoplenny
fb82cf4517
fix(modal): bump dep to 8.0.1 to remove scrollbars ( #4139 )
2019-04-25 11:58:11 -07:00
Saúl Ibarra Corretgé
85388b8d23
ios: handle some corner cases with Firebase Dynamic Links
...
- handle some weird bug
(https://github.com/firebase/firebase-ios-sdk/issues/233 )
- use a common function to extract the URL off a dynamic link
2019-04-25 18:18:09 +02:00
Saúl Ibarra Corretgé
33f133ac25
ios: simplify code for handling CallKit listeners
...
Replace the Swift array with an Objective-C one, since it's going to store
Objective-C objects and not Swift objects (or Swift objects which inherit from
NSObject, which is equivalent).
This avoids the need for JMCallKitEventListenerWrapper entirely, since an
NSArray can store NSObjectProtocol objects, unlike a Swift array, which prompted
the creation of the wrapper in the first place.
2019-04-25 18:17:55 +02:00
Saúl Ibarra Corretgé
774c5ecd18
rn: ensure the conference terminated event is always sent
...
Dear reader, I'm not proud at all of what you are about to read, but sometimes
life just gives you lemons, so enjoy some lemonade!
Joining a conference implies first creating the XMPP connection and then joining
the MUC. It's very possible the XMPP connection was made but there was no chance
for the conference to be created.
This patch fixes this case by artificially genrating a conference terminated
event in such case. In order to have all the necessary knowledge for this event
to be sent the connection now keeps track of the conference that runs it.
In addition, there is an even more obscure corner case: it's not impossible to
try to disconnect when there is not even a connection. This was fixed by
creating a fake disconnect event. Alas the location URL is lost at this point,
but it's better than nothing I guess.
2019-04-25 14:04:26 +02:00
Saúl Ibarra Corretgé
ccc5e19e3c
rn: fix filling LoadConfigOverlay's background
2019-04-24 17:41:28 +02:00
Saúl Ibarra Corretgé
32a81b0be5
rn: add our benevolent employer to the list of known domains
2019-04-24 17:36:41 +02:00
Saúl Ibarra Corretgé
59db39d4d9
rn: cleanup old code
...
This legacy code was added about a year ago to ease the migration between
releases:
631f51d627
I consider this not to be needed anymore.
2019-04-24 17:36:41 +02:00
damencho
2219298501
Updates web styling for file recording service sharing option.
2019-04-24 14:54:33 +00:00
Bettenbuk Zoltan
f92d530b0a
Fix double file recording sharing switch
2019-04-24 10:35:43 +00:00
Bettenbuk Zoltan
e98c169c2f
[RN] Fix iOS keyboard bug on invite search dialog
2019-04-24 11:48:09 +02:00
Saúl Ibarra Corretgé
6bf962817b
ios: add a CallKit icon
...
The SDK will now search for an asset called "CallKitIcon" on the main bundle,
and fallback to a built-in asset it it's not there, allowing SDK users to
customize it by just adding asset with that name.
2019-04-24 10:03:46 +02:00
virtuacoplenny
4c286b8580
chore(deps): bump lib to get fixed rtc.destroy call ( #4122 )
2019-04-23 15:38:32 -07:00
Дамян Минков
37639a5614
Merge pull request #4121 from jitsi/remove-edge-support
...
Removes Edge support.
2019-04-23 20:32:17 +00:00
Bettenbuk Zoltan
b7198ba4b3
Add recording file sharing switch
2019-04-23 20:32:10 +00:00
damencho
2180d33e3d
Adds alias for external_api.js in all default web config.
2019-04-23 20:31:53 +00:00
damencho
43a0ae578e
Removes Edge support.
2019-04-23 17:55:07 +01:00
Bettenbuk Zoltan
154200460d
Add some other paths to proxy bypass
2019-04-23 18:00:27 +02:00
Saúl Ibarra Corretgé
9a92dc578c
ios: fix resetting CallKit's CXProvider
...
When CallKit is enabled / disabled, a new CXProvider must be created in order to
not confuse CallKit (it misbehaves otherwise).
2019-04-23 09:55:01 +02:00
paweldomas
eb38300c0d
chore: update LJM to 1bfc96a2876d6527bfa27cf46d4f1e9f6e65edbc
...
Updates LJM in order to stop printing few obsolete error messages.
2019-04-18 12:24:23 -05:00
paweldomas
37b1ccbe61
ios: update react-native-werbtc in order to fix leaking streams
2019-04-18 12:24:23 -05:00
Bettenbuk Zoltan
725f9b1961
[RN] Rename lock room button
2019-04-18 14:18:08 +01:00
Leonard Kim
b172639237
fix(follow-me): remove duplicate default state
2019-04-17 15:58:55 -05:00
virtuacoplenny
c7013f5c4b
ref(follow-me): hook into redux ( #3991 )
...
Use subscribers to detect state change and emit those
out to other participants. Use middleware to register
the command listener.
2019-04-17 08:05:32 -07:00
Saúl Ibarra Corretgé
aefa836406
Revert "misc: don't show a warning on Safari with VP8"
...
This reverts commit 9625be1db3
.
2019-04-17 15:15:48 +02:00
virtuacoplenny
f6c410610a
fix(toolbar): let click through gradient ( #4107 )
...
Otherwise it can eat clicks on elements it is above,
like YouTube and Etherpad controls.
2019-04-17 06:15:08 -07:00