Released on Feb 15, 2023

<aside> ‼️ Release requires prior migration to 1.26.4

</aside>

List of changes

1. NEW property in FeatureConfiguration

New property isDraftSavedToastEnabled is added to FeatureConfiguration for disabling “Draft saved” toast message that is shown when the user finishes video editing. Default value is true.

var config = VideoEditorConfig()
config.featureConfiguration.isDraftSavedToastEnabled = false

2. NEW feature - audio volume adjustment

New icon is added to “Music” effects section for your convince to easily adjust audio volume in video.

volume_short.gif

Migration guide

<aside> 👉 PR addresses changes required for migrating to this release.

</aside>

1. Upgrade version

SwiftPackageManager(SPM)

<aside> ‼️ Sample integration of SPM and VideoEditor is in SPM branch. Please follow VideoEditor SDK SPM guide.

</aside>

CocoaPods

Below is Podfile for 1.26.5 release with Face AR

source '<https://github.com/Banuba/specs.git>'
source '<https://github.com/CocoaPods/Specs.git>'
platform :ios, '13.0'
use_frameworks!

target 'Example' do
	pod 'BanubaARCloudSDK', '1.26.5' #optional
  pod 'BanubaVideoEditorSDK', '1.26.5'
  pod 'BanubaAudioBrowserSDK', '1.26.5' #optional
  pod 'BanubaMusicEditorSDK', '1.26.5'
  pod 'BanubaOverlayEditorSDK', '1.26.5'
  pod 'BanubaSDKSimple', '1.26.5'
  pod 'BanubaEffectPlayer', '1.26.5'
  pod 'BanubaSDK', '1.26.5'
  pod 'BanubaSDKServicing', '1.26.5'
  pod 'VideoEditor', '1.26.5'
  pod 'BanubaUtilities', '1.26.5'
  pod 'BanubaVideoEditorGallerySDK', '1.26.5' #optional
  pod 'BanubaVideoEditorTrimSDK', '1.26.5'
  pod 'BanubaLicenseServicingSDK', '1.26.5'
  pod 'BNBLicenseUtils', '1.26.5'
  pod 'VEExportSDK', '1.26.5'
  pod 'VEEffectsSDK', '1.26.5'
  pod 'VEPlaybackSDK', '1.26.5'
end

Below is Podfile for 1.26.5 release with NO Face AR

source '<https://github.com/Banuba/specs.git>'
source '<https://github.com/CocoaPods/Specs.git>'
platform :ios, '13.0'
use_frameworks!

target 'Example' do
  pod 'BanubaARCloudSDK', '1.26.5' #optional
  pod 'BanubaVideoEditorSDK', '1.26.5'
  pod 'BanubaAudioBrowserSDK', '1.26.5' #optional
  pod 'BanubaMusicEditorSDK', '1.26.5'
  pod 'BanubaOverlayEditorSDK', '1.26.5'
  pod 'BanubaSDKSimple', '1.26.5'
  pod 'BanubaSDKServicing', '1.26.5'
  pod 'VideoEditor', '1.26.5'
  pod 'BanubaUtilities', '1.26.5'
  pod 'BanubaVideoEditorGallerySDK', '1.26.5' #optional
  pod 'BanubaVideoEditorTrimSDK', '1.26.5'
  pod 'BanubaLicenseServicingSDK', '1.26.5'
  pod 'BNBLicenseUtils', '1.26.5'
  pod 'VEPlaybackSDK', '1.26.5'
  pod 'VEEffectsSDK', '1.26.5'
  pod 'VEEExportSDK', '1.26.5'
end