Skip to content

Commit

Permalink
Bumped version to 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
longitachi committed Sep 28, 2022
1 parent c783837 commit 8a9a149
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

## [1.1.4](https://github.com/longitachi/ZLImageEditor/releases/tag/1.1.4) (2022-09-28)
### Add:
* Can change tool icon's highlited color by `toolIconHighlightedColor`.[#28](https://github.com/longitachi/ZLImageEditor/pull/28)
* Support Arabic language.[#27](https://github.com/longitachi/ZLImageEditor/pull/27)
* Can change tool icon's highlited color by `toolIconHighlightedColor`.[#28](https://github.com/longitachi/ZLImageEditor/pull/28) @darquro
* Support Arabic language.[#27](https://github.com/longitachi/ZLImageEditor/pull/27) @LastSoul

-----

Expand Down
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,6 @@ ZLEditImageViewController.showEditImageVC(parentVC: self, image: image, editMode
Support for custom text.
Support redo in graffiti and mosaic tools.
Add wrapper for ZLImageEditor compatible types.
● 1.1.1
Add:
Can select custom font before adding text sticker.
Change the authority of ZLEditImageViewController to open.
Add ZLImageEditorUIConfiguration.
...
```

Expand Down
2 changes: 1 addition & 1 deletion Sources/Extensions/UIImage+ZLImageEditor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ extension ZLImageEditorWrapper where Base: UIImage {

func fillColor(_ color: UIColor) -> UIImage? {
UIGraphicsBeginImageContextWithOptions(base.size, false, base.scale)
let drawRect = CGRect(x: 0, y: 0, width: base.size.width, height: base.size.height)
let drawRect = CGRect(x: 0, y: 0, width: base.zl.width, height: base.zl.height)
color.setFill()
UIRectFill(drawRect)
base.draw(in: drawRect, blendMode: .destinationIn, alpha: 1)
Expand Down

0 comments on commit 8a9a149

Please sign in to comment.