capacitor-jitsi-meet 7.0.0-beta.0 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
 
2
2
  Pod::Spec.new do |s|
3
3
  s.name = 'CapacitorJitsiMeet'
4
- s.version = '6.3.0'
4
+ s.version = '7.0.0'
5
5
  s.summary = 'This plugin is used to make video calls using Jitsi video platform (https://meet.jit.si) on iOS and Android using Capacitor. Since the current implementation of Ionic/PWA apps on iOS run on top of WKWebView, and as of today (24/01/2019), Apple does not support WebRTC on WKWebView, the only way to work with Jitsi Video on this platform is to build it natively.'
6
6
  s.license = 'MIT'
7
7
  s.homepage = 'https://github.com/calvinckho/capacitor-jitsi-meet'
@@ -13,7 +13,7 @@
13
13
  'ios/Plugin/Plugin/*.storyboard'
14
14
  ]
15
15
  }
16
- s.ios.deployment_target = '14.0'
16
+ s.ios.deployment_target = '15.1'
17
17
  s.dependency 'Capacitor'
18
18
  s.dependency 'JitsiMeetSDK', '10.3.0'
19
19
  end
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Jitsi Meet Capacitor Plugin for Ionic Apps
2
2
  <img src="https://img.shields.io/npm/v/capacitor-jitsi-meet?style=flat-square" />
3
3
 
4
- This Ionic Capacitor plugin is created to make video calls through the free, open-sourced Jitsi video platform (https://meet.jit.si) on iOS and Android.
4
+ This Capacitor plugin is created to make video calls through the free, open-sourced Jitsi video platform (https://meet.jit.si) on iOS and Android.
5
5
 
6
6
  ## Compatibility to Capacitor Versions
7
7
 
@@ -94,7 +94,7 @@ This Ionic Capacitor plugin is created to make video calls through the free, ope
94
94
  </tbody>
95
95
  </table>
96
96
 
97
- Follow the [Capacitor doc to upgrade to the latest Capacitor version](https://capacitorjs.com/docs).
97
+ Follow the [Capacitor doc to upgrade to the latest Capacitor version](https://capacitorjs.com/docs). Read the [Jitsi Meet developer doc](https://jitsi.github.io/handbook/docs/category/developer-guide) for additional information on self-hosting your own videobridge and other SDK features.
98
98
 
99
99
  ## iOS Compatible Versions
100
100
 
@@ -212,7 +212,7 @@ implementation ('org.jitsi.react:jitsi-meet-sdk:[version number]') { transitive
212
212
  ```
213
213
 
214
214
  ## Production Jitsi Server Configuration
215
- https://meet.jitsi.si is designed for testing purposes when used with the Jitsi API. According to Jitsi, it is not intended for production use. Meetings created with this server will be limited to 5 minutes. In addition, also note that fully anonymous meetings are no longer possible under the Jitsi Meet API when using this server (see authentication post below).
215
+ https://meet.jitsi.si is designed for testing purposes when used with the Jitsi API. According to Jitsi, it is not intended for production use. Meetings created with this server will be limited to 5 minutes. In addition, also note that [fully anonymous meetings are no longer possible](https://jitsi.org/blog/authentication-on-meet-jit-si/) under the Jitsi Meet API when using this server.
216
216
 
217
217
  The examples here use `url: 'https://meet.jit.si'` for the Jitsi server, but this server is only intended for test usage.
218
218
 
package/ios/README.md CHANGED
@@ -4,7 +4,7 @@ This plugin uses the Jitsi SDK.
4
4
 
5
5
  ## Xcode and iOS SDK Compatibility
6
6
 
7
- Each version of the jitsi capacitor plugin uses the latest Jitsi SDK version published by Jitsi. In iOS deployment, the SDK version is important because later SDKs compiled using the latest Xcode would not work if you local Xcode is older. So for iOS deployment, make sure you check your Xcode version and install the plugin version that uses the compatible SDK version.
7
+ Each version of the plugin uses the latest Jitsi SDK version published by Jitsi. In iOS deployment, the SDK version is important because new SDKs compiled using the latest Xcode would not work if you local Xcode is older. So for iOS deployment, make sure you check your Xcode version and install the appropriate plugin version or upgrade your XCode.
8
8
 
9
9
  See the plugin [changelog](https://github.com/calvinckho/capacitor-jitsi-meet/blob/master/CHANGELOG.md) for plugin versions that are compatible to your local Xcode
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capacitor-jitsi-meet",
3
- "version": "7.0.0-beta.0",
3
+ "version": "7.0.0",
4
4
  "description": "This Ionic Capacitor plugin is created to make video calls through the free, open-sourced Jitsi video platform (https://meet.jit.si) on iOS and Android.",
5
5
  "main": "dist/esm/index.js",
6
6
  "module": "dist/esm/index.js",