Skip to content

Commit cefc8a0

Browse files
author
zhanglong15
committed
Bumped version to 1.0.3
1 parent f594cee commit cefc8a0

File tree

4 files changed

+55
-4
lines changed

4 files changed

+55
-4
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Change Log
2+
3+
-----
4+
## [1.0.3](https://github.com/longitachi/ZLImageEditor/releases/tag/1.0.3) (2021-08-11)
5+
### Add:
6+
* Fix image orientation before image.
7+
* Optimize image compression method.
8+
9+
-----
10+
## [1.0.2](https://github.com/longitachi/ZLImageEditor/releases/tag/1.0.2) (2021-06-07)
11+
### Add:
12+
* Compress the image after edit.
13+
* Not generate a new image if there is no operation.
14+
15+
-----
16+
## [1.0.1](https://github.com/longitachi/ZLImageEditor/releases/tag/1.0.1) (2020-12-14)
17+
### Fix:
18+
* UI frame was wrong if enter clip interface from landscape.
19+
20+
-----
21+
## [1.0.0](https://github.com/longitachi/ZLImageEditor/releases/tag/1.0.0) (2020-11-23)
22+
### Add:
23+
* First release.

Sources/General/ZLImageEditor.swift

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1-
struct ZLImageEditor {
2-
var text = "Hello, World!"
3-
}
1+
//
2+
// ZLImageEditor.swift
3+
// ZLImageEditor
4+
//
5+
// Created by long on 2020/9/8.
6+
//
7+
// Copyright (c) 2020 Long Zhang <495181165@qq.com>
8+
//
9+
// Permission is hereby granted, free of charge, to any person obtaining a copy
10+
// of this software and associated documentation files (the "Software"), to deal
11+
// in the Software without restriction, including without limitation the rights
12+
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13+
// copies of the Software, and to permit persons to whom the Software is
14+
// furnished to do so, subject to the following conditions:
15+
//
16+
// The above copyright notice and this permission notice shall be included in
17+
// all copies or substantial portions of the Software.
18+
//
19+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25+
// THE SOFTWARE.
26+
27+
let version = "1.0.3"

ZLImageEditor.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ZLImageEditor'
3-
s.version = '1.0.2'
3+
s.version = '1.0.3'
44
s.summary = 'A powerful image editor framework. Supports graffiti, cropping, mosaic, text stickers, picture stickers, filters.'
55

66
s.homepage = 'https://github.com/longitachi/ZLImageEditor'

ZLImageEditor.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
E402090E256BA1F40077F5DC /* ZLImageEditorLanguageDefine.swift in Sources */ = {isa = PBXBuildFile; fileRef = E402090D256BA1F40077F5DC /* ZLImageEditorLanguageDefine.swift */; };
2626
E4020912256BA27D0077F5DC /* ZLImageEditorConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4020911256BA27D0077F5DC /* ZLImageEditorConfiguration.swift */; };
2727
E4020918256BA6840077F5DC /* UIControl+ZLImageEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4020917256BA6840077F5DC /* UIControl+ZLImageEditor.swift */; };
28+
FDD5289226C3FFCA00338B06 /* ZLImageEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDD5289126C3FFCA00338B06 /* ZLImageEditor.swift */; };
2829
/* End PBXBuildFile section */
2930

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

5355
/* Begin PBXFrameworksBuildPhase section */
@@ -102,6 +104,7 @@
102104
E40208E6256B9F9C0077F5DC /* ZLTextStickerView.swift */,
103105
E40208EA256B9F9C0077F5DC /* ZLFilter.swift */,
104106
E40208F3256B9FA70077F5DC /* ZLClipImageDismissAnimatedTransition.swift */,
107+
FDD5289126C3FFCA00338B06 /* ZLImageEditor.swift */,
105108
);
106109
path = General;
107110
sourceTree = "<group>";
@@ -205,6 +208,7 @@
205208
E40208FD256BA0080077F5DC /* UIImage+ZLImageEditor.swift in Sources */,
206209
E40208FF256BA0080077F5DC /* Bundle+ZLImageEditor.swift in Sources */,
207210
E40208F0256B9F9C0077F5DC /* ZLClipImageViewController.swift in Sources */,
211+
FDD5289226C3FFCA00338B06 /* ZLImageEditor.swift in Sources */,
208212
E4020900256BA0080077F5DC /* Cell+ZLImageEditor.swift in Sources */,
209213
E4020918256BA6840077F5DC /* UIControl+ZLImageEditor.swift in Sources */,
210214
E40208EC256B9F9C0077F5DC /* ZLImageStickerView.swift in Sources */,

0 commit comments

Comments
 (0)