From ba2e7ad1993a25a1c2df762b7e16f2426127f41b Mon Sep 17 00:00:00 2001 From: longitachi Date: Fri, 22 Mar 2024 15:02:25 +0800 Subject: [PATCH] Bumped version to 2.0.2 --- CHANGELOG.md | 11 ++++++++++- README.md | 14 ++++++-------- Sources/General/ZLImageEditor.swift | 2 +- ZLImageEditor.podspec | 2 +- 4 files changed, 18 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a05e41d..16dabb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,18 @@ ----- +## [2.0.2](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.1) (2024-03-22) +### Add: +* Adapt the text sticker input interface for iPad landscape mode. + +### Fix: +* Fix the bug where cropping square images to circular shape fails. + +----- + ## [2.0.1](https://github.com/longitachi/ZLImageEditor/releases/tag/2.0.1) (2023-11-27) ### Add: -* Adapt to iOS 17, replace UIGraphicsBeginImageContextWithOptions with UIGraphicsImageRenderer. +* Adapt to iOS 17, replace UIGraphicsBeginImageContextWithOptions with UIGraphicsImageRenderer. ----- diff --git a/README.md b/README.md index f184599..6398e9b 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,11 @@ ZLEditImageViewController.showEditImageVC(parentVC: self, image: image, editMode ### Change Log > [More logs](https://github.com/longitachi/ZLImageEditor/blob/master/CHANGELOG.md) ``` +● 2.0.2 + Add: + Adapt the text sticker input interface for iPad landscape mode. + Fix: + Fix the bug where cropping square images to circular shape fails. ● 2.0.1 Add: Adapt to iOS 17, replace UIGraphicsBeginImageContextWithOptions with UIGraphicsImageRenderer. @@ -60,13 +65,6 @@ ZLEditImageViewController.showEditImageVC(parentVC: self, image: image, editMode Add: Enhancing the drawing tool with an eraser function. The minimum supported system has been upgraded from iOS 9 to iOS 10. -● 1.2.1 - Add: - Optimize the undo and redo function in the image editor. All operations support undo and redo. - Dutch support added. - Supports setting the default font for text stickers. - Fix: - Fix the bug that text stickers are not displayed when typing in Arabic. ... ``` @@ -119,7 +117,7 @@ $ carthage update ZLImageEditor #### Swift Package Manager 1. Select File > Swift Packages > Add Package Dependency. Enter https://github.com/longitachi/ZLImageEditor.git in the "Choose Package Repository" dialog. -2. In the next page, specify the version resolving rule as "Up to Next Major" with "2.0.1" as its earliest version. +2. In the next page, specify the version resolving rule as "Up to Next Major" with "2.0.2" as its earliest version. 3. After Xcode checking out the source and resolving the version, you can choose the "ZLImageEditor" library and add it to your app target. ### Support diff --git a/Sources/General/ZLImageEditor.swift b/Sources/General/ZLImageEditor.swift index a20c0a5..0ea5d40 100644 --- a/Sources/General/ZLImageEditor.swift +++ b/Sources/General/ZLImageEditor.swift @@ -27,7 +27,7 @@ import Foundation import UIKit -let version = "2.0.1" +let version = "2.0.2" public struct ZLImageEditorWrapper { public let base: Base diff --git a/ZLImageEditor.podspec b/ZLImageEditor.podspec index 009fff3..ec45a70 100644 --- a/ZLImageEditor.podspec +++ b/ZLImageEditor.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'ZLImageEditor' - s.version = '2.0.1' + s.version = '2.0.2' s.summary = 'A powerful image editor framework. Supports graffiti, cropping, mosaic, text stickers, picture stickers, filters, adjust.' s.homepage = 'https://github.com/longitachi/ZLImageEditor'