Skip to content

Commit

Permalink
Bumped version to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanglong15 committed Aug 11, 2021
1 parent f594cee commit cefc8a0
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 4 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Change Log

-----
## [1.0.3](https://github.com/longitachi/ZLImageEditor/releases/tag/1.0.3) (2021-08-11)
### Add:
* Fix image orientation before image.
* Optimize image compression method.

-----
## [1.0.2](https://github.com/longitachi/ZLImageEditor/releases/tag/1.0.2) (2021-06-07)
### Add:
* Compress the image after edit.
* Not generate a new image if there is no operation.

-----
## [1.0.1](https://github.com/longitachi/ZLImageEditor/releases/tag/1.0.1) (2020-12-14)
### Fix:
* UI frame was wrong if enter clip interface from landscape.

-----
## [1.0.0](https://github.com/longitachi/ZLImageEditor/releases/tag/1.0.0) (2020-11-23)
### Add:
* First release.
30 changes: 27 additions & 3 deletions Sources/General/ZLImageEditor.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
struct ZLImageEditor {
var text = "Hello, World!"
}
//
// ZLImageEditor.swift
// ZLImageEditor
//
// Created by long on 2020/9/8.
//
// Copyright (c) 2020 Long Zhang <495181165@qq.com>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

let version = "1.0.3"
2 changes: 1 addition & 1 deletion ZLImageEditor.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ZLImageEditor'
s.version = '1.0.2'
s.version = '1.0.3'
s.summary = 'A powerful image editor framework. Supports graffiti, cropping, mosaic, text stickers, picture stickers, filters.'

s.homepage = 'https://github.com/longitachi/ZLImageEditor'
Expand Down
4 changes: 4 additions & 0 deletions ZLImageEditor.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
E402090E256BA1F40077F5DC /* ZLImageEditorLanguageDefine.swift in Sources */ = {isa = PBXBuildFile; fileRef = E402090D256BA1F40077F5DC /* ZLImageEditorLanguageDefine.swift */; };
E4020912256BA27D0077F5DC /* ZLImageEditorConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4020911256BA27D0077F5DC /* ZLImageEditorConfiguration.swift */; };
E4020918256BA6840077F5DC /* UIControl+ZLImageEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4020917256BA6840077F5DC /* UIControl+ZLImageEditor.swift */; };
FDD5289226C3FFCA00338B06 /* ZLImageEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDD5289126C3FFCA00338B06 /* ZLImageEditor.swift */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand All @@ -48,6 +49,7 @@
E402090D256BA1F40077F5DC /* ZLImageEditorLanguageDefine.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ZLImageEditorLanguageDefine.swift; sourceTree = "<group>"; };
E4020911256BA27D0077F5DC /* ZLImageEditorConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ZLImageEditorConfiguration.swift; sourceTree = "<group>"; };
E4020917256BA6840077F5DC /* UIControl+ZLImageEditor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIControl+ZLImageEditor.swift"; sourceTree = "<group>"; };
FDD5289126C3FFCA00338B06 /* ZLImageEditor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ZLImageEditor.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -102,6 +104,7 @@
E40208E6256B9F9C0077F5DC /* ZLTextStickerView.swift */,
E40208EA256B9F9C0077F5DC /* ZLFilter.swift */,
E40208F3256B9FA70077F5DC /* ZLClipImageDismissAnimatedTransition.swift */,
FDD5289126C3FFCA00338B06 /* ZLImageEditor.swift */,
);
path = General;
sourceTree = "<group>";
Expand Down Expand Up @@ -205,6 +208,7 @@
E40208FD256BA0080077F5DC /* UIImage+ZLImageEditor.swift in Sources */,
E40208FF256BA0080077F5DC /* Bundle+ZLImageEditor.swift in Sources */,
E40208F0256B9F9C0077F5DC /* ZLClipImageViewController.swift in Sources */,
FDD5289226C3FFCA00338B06 /* ZLImageEditor.swift in Sources */,
E4020900256BA0080077F5DC /* Cell+ZLImageEditor.swift in Sources */,
E4020918256BA6840077F5DC /* UIControl+ZLImageEditor.swift in Sources */,
E40208EC256B9F9C0077F5DC /* ZLImageStickerView.swift in Sources */,
Expand Down

0 comments on commit cefc8a0

Please sign in to comment.