Skip to content

Commit

Permalink
Add version 11.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wajsic committed Jul 20, 2023
1 parent a905149 commit aa0681e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
## [11.6.0]

### Added

* [ImglyKit] Added `StickerCollectionDelegate.stickerCollection(_ stickerCollection:, didSelect:, metadata:)`, so `StickerCollectionDelegate` now supports passing metadata to sticker placed by from a custom `StickerCollection`. (#1708)
* [ImglyKit] Added `AdjustToolControllerOptions.limitConfigurationClosure` that allows configuration of adjustment tool slider minimum and maximum values. (#1739)
* [ImglyKit] Added `PhotoEditViewControllerOptions.outputScaling` and `VideoEditViewControllerOptions.outputScaling` options, that ensure that output dimensions exactly match the selected aspect ratio. (#1359)
* [VideoEditorSDK] Added `VideoEditViewControllerOptions.showTimelineOnMainScreen` flag, that enables video timeline view on the main screen of the editor. (#1719)
* [VideoEditorSDK] Added `VideoClipToolControllerOptions.videoClipAddButtonSelectedClosure` that is invoked when new video is added to the composition. (#1720)
* [VideoEditorSDK] Added duration option for text designs. (#1695)
* [VideoEditorSDK] Added `.composition` and `.audio` screens to analytics. (#1781)

### Changed

* [ImglyKit] Changed behavior of the text design tool to have a dedicated color and layout option. The old behavior can be restored by using the `ToolMenuItem.createLegacyTextDesignToolItem()` item. (#1695)

### Fixed

* [ImglyKit] Fixed access level of `OverlayEditController.init(sliderEditController:)` to `public` so that `OverlayEditController` can be subclassed. (#1757)
* [ImglyKit] Fixed showing filters when using `CameraViewControllerOptions.showFilters`. (#1781)
* [VideoEditorSDK] Fixed `VideoEditorResult.hasChanges` would be `false` for muted videos. (#1735)

## [11.5.1]

### Added

* [ImglyKit] Added `Theme.uppercasedToolbarTitles` that controls capitalization of titles in the editor's toolbar.
* [ImglyKit] Added support to exchange the `UIFont` used in the SDK via the `Theme`. To use this feature, assign custom fonts to `Theme.primaryFont`, `Theme.mediumFont`, `Theme.boldFont`, `Theme.monospacedFont` and `Theme.searchBarFont`.

### Fixed

* [ImglyKit] Fixed serialization created from videos, sometimes not working on photos. (#1658)
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let package = Package(
.library(name: "PhotoEditorSDK", targets: ["PhotoEditorSDK"]),
],
dependencies: [
.package(url: "https://github.com/imgly/imglykit-sp.git", exact: "11.5.1")
.package(url: "https://github.com/imgly/imglykit-sp.git", exact: "11.6.0")
],
targets: [
.target(
Expand Down

0 comments on commit aa0681e

Please sign in to comment.