Skip to content

Latest commit

 

History

History
331 lines (213 loc) · 9.48 KB

CHANGELOG.md

File metadata and controls

331 lines (213 loc) · 9.48 KB

Capacitor Plugin Changelog

Each version of the capacitor plugin uses a specific Jitsi SDK version. In iOS deployment, the SDK version is important because later SDKs compiled using the latest Xcode would not work if your local Xcode is older. So for iOS deployment, make sure you check your Xcode version and install the corresponding plugin version.

See Jitsi-meet SDK changelog

6.0.0 (2024-05-01)

  • uses Jitsi SDK 9.2.2

Breaking Changes

  • adapted plugin for Capacitor 6. Follow upgrade guide to upgrade project.
  • the plugin now uses the same major version numbers as the Capacitor releases

5.0.0 (2024-04-23)

  • uses Jitsi SDK 9.2.0

Android

  • set target SDK to 34

iOS

  • set min deployment target to 13.4
  • built with XCode 15.3

4.1.1 (2024-02-25)

  • uses Jitsi SDK 8.6.1

4.1.0 (2024-01-15)

  • uses Jitsi SDK 8.6.0

4.0.0 (2023-11-10)

Breaking Changes

  • adapted plugin for Capacitor 5. Follow Updating from Capacitor 4 to Capacitor 5 to upgrade your project.
  • Capacitor 5 requires Xcode 14.1+
  • Capacitor 5 requires Android Studio Flamingo | 2022.2.1 or newer because of the usage of Gradle 8, that requires Java JDK 17
  • uses Jitsi SDK 8.1.2

3.1.0 (2023-01-03)

  • uses Jitsi SDK 7.0.1
  • BREAKING: legacy signalling support has been removed in SDK 7, thus this plugin version will stop working with very old Jitsi Meet instances

iOS

  • built with XCode 14

3.0.0 (2022-09-20)

Breaking Changes

  • adapted plugin for Capacitor 4. Follow Ionic's upgrade guide to upgrade project to Capacitor 4
  • a pre-join page is defaulted to be shown when the user starts a call. To prevent this behavior, set:
featureFlags: {
  ...
  'prejoinpage.enabled': false, // disable the pre-join page
},
  • uses Jitsi SDK 6.1.0

Android

  • Create notification icons in the Android App project

    • In Android Studio, right click on the res folder in the android project -> New -> Image Asset
    • create icon in the main res directory, with following config
      • Icon Type: Notification Icons
      • Name: ic_notification
  • ProGuard rules is now necessary for a successful Android Play Store deployment. While the debug APK runs fine, the proguard rules will avoid necessary code being stripped from the release build APK. Add the following to your project's rules file: https://github.com/jitsi/jitsi-meet/blob/master/android/app/proguard-rules.pro

2.3.0 (2022-09-15)

Breaking Changes

  • these params are now deprecated. Use featureFlags instead.
    • callIntegrationEnabled (plugin default true -> SDK default true)
    • liveStreamingEnabled (plugin default false -> 4.1.0 SDK default auto-detected)
    • recordingEnabled (plugin default false -> 4.1.0 Android SDK true, 4.1.0 iOS SDK false)
    • screenSharingEnabled (plugin default false -> 4.1.0 Android SDK true, 4.1.0 iOS SDK false)

iOS

  • uses Jitsi SDK 5.1.0

Android

  • update Android's main app's AndroidManifest.xml:
allprojects {
    repositories {
        maven {
            url "https://github.com/jitsi/jitsi-maven-repository/raw/master/releases"
        }
        google()
-       jcenter()
+       mavenCentral()
+       maven { url 'https://www.jitpack.io' }
    }
}
  • Java 11 is used in the SDK 5+. Update android/variables.gradle file with these version numbers
ext {
  minSdkVersion = 23
  compileSdkVersion = 31
  targetSdkVersion = 31
  ...
  cordovaAndroidVersion =  '10.1.1'
}
  • uses Jitsi SDK 5.1.0

2.2.1 (2022-03-11)

  • bug fix: onConferenceJoined and onConferenceLeft not firing
  • bug fix: iOS leaveConference() not working

2.2.0 (2022-03-04)

Breaking Changes

The newly introduced featureFlags param provides a lot of flexibility to the developers, as the developers can now directly control ALL featureFlags settings supported by the SDKs, and no longer need to map the plugin params to the SDK featureFlags params, as we have done before.

  • with this increased flexibility, the following plugin params will be deprecated in our 3.0 version. Their default values will be reset to following the SDK default values in this current plugin release.
    • callIntegrationEnabled (plugin default true -> SDK default true)
    • liveStreamingEnabled (plugin default false -> 4.1.0 SDK default auto-detected)
    • recordingEnabled (plugin default false -> 4.1.0 Android SDK true, 4.1.0 iOS SDK false)
    • screenSharingEnabled (plugin default false -> 4.1.0 Android SDK true, 4.1.0 iOS SDK false)

Going forward, for a stable production build, my recommendation is to add the following featureFlags params in your syntax:

featureFlags: {
'recording.enabled': false, // disable as it requires Dropbox integration
'live-streaming.enabled': false, // 'Sign in with Google' button not yet functional
'android.screensharing.enabled': false // experimental feature, not fully production ready
},
  • adds the subject, featureFlags, and configOverrides params

2.1.3 (2022-02-09)

Breaking Changes

  • adds the following optional parameters with their default values. Those defaulted to false must be manually set to true in order to enable them.

    • recordEnabled (default: false)
    • liveStreamingEnabled (default: auto-detected)
    • screenSharingEnabled (android only, default: false)
  • fixes liveStreamingEnabled bug in 2.1.2

iOS

  • uses Jitsi SDK 4.1.0.
  • iOS

Android

2.1.1 (2021-12-15)

Android

  • Capacitor 3 requires each Capacitor plugin to load settings from its own AndroidManifest.xml. This version provides correct settings in the manifest file which allows the Jitsi call to run in the background even if the user minimizes the app.

2.1.0 (2021-12-10)

Breaking Changes

  • the 4.0.0 mobile sdk introduces breakout rooms.
  • Support for iOS 11 has been dropped.

iOS

  • uses Jitsi SDK 4.0.0.
  • iOS

Android

2.0.0 (2021-10-14)

Breaking Changes

  • upgrades plugin for Capacitor 3. If you are currently using Capacitor 2, you need to upgrade your project to Capacitor 3 first before you can use this plugin.

iOS

  • uses Jitsi SDK 3.10.4
  • built with Xcode 13.0
  • iOS

Android

1.5.15 (2021-09-13)

iOS

  • uses Jitsi SDK 3.8.1.
  • built with Xcode 12.5
  • iOS

Android

1.5.14 (2021-07-06)

iOS

  • built with Xcode 12.5

1.5.13 (2021-05-12)

iOS

  • built with Xcode 12.5

1.5.12 (2021-04-20)

Android

iOS

  • uses Jitsi SDK 3.4.1.
  • iOS
  • built with Xcode 12.4

1.5.10 (2021-04-14)

iOS

  • built with Xcode 12.4

1.5.9 (2021-03-16)

Android

  • adds leaveConference() method
  • supports callIntegrationEnabled property in JoinConference()
  • uses the new Listening for broadcasted events mechanism

iOS

  • adds leaveConference() method
  • supports callIntegrationEnabled property in JoinConference()
  • built with Xcode 12.4

1.5.8 (2021-02-08)

iOS

  • built with Xcode 12.2

1.5.7 (2021-01-17)

  • add userInfo (displayName, email, avatarURL) parameters in iOS

1.5.6 (2021-01-08)

  • add userInfo (displayName, email, avatarURL) parameters in Android

1.5.5 (2020-11-19)

iOS

  • built with Xcode 12.2

1.5.4 (2020-09-18)

  • uses Jitsi SDK 2.10.2

iOS

  • built with Xcode 12.0

1.4.3 (2020-09-15)

  • uses Jitsi SDK 2.10.0

iOS

  • built with Xcode 11.4.1

1.3.13 (2020-03-25)

  • uses Jitsi SDK 2.7.0

iOS

  • built with Xcode 11.3.1