Skip to content

Commit

Permalink
Bumped version to 4.4.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
longitachi committed Jul 26, 2023
1 parent c07cf2d commit e79eebd
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.MD
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Please fill in the detailed description of the issue (full output of any stack trace, compiler error, ...) and the steps to reproduce the issue.

#### Info
ZLPhotoBrowser version: e.g. 4.4.3.1
ZLPhotoBrowser version: e.g. 4.4.3.2
Device: e.g. iPhone X
Device version: e.g. iOS 14.0
Xcode version: e.g. Xcode 12.0
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

-----

## [4.4.3.2 - 4.4.3 Patch](https://github.com/longitachi/ZLPhotoBrowser/releases/tag/4.4.3.2) (2023-07-26)

### Fix:
* Disable TextView when user ends editing.

---

## [4.4.3.1 - 4.4.3 Patch](https://github.com/longitachi/ZLPhotoBrowser/releases/tag/4.4.3.1) (2023-07-26)

### Fix:
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,10 @@ If you only want to use the image edit feature, please move to [ZLImageEditor](h
### Change Log
> [More logs](https://github.com/longitachi/ZLPhotoBrowser/blob/master/CHANGELOG.md)
```
4.4.3.1 - 4.4.3 Patch
4.4.3.1, 4.4.3.2 - 4.4.3 Patch
Fix:
Delete some time-consuming codes to improve the image loading speed of the thumbnail interface.
Disable TextView when user ends editing.
4.4.3
Add:
Support to limit the data size of the video.
Expand Down
3 changes: 2 additions & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,10 @@ ZLPhotoBrowser是一款微信样式的图片选择器,支持预览/相册内
### 更新日志
> [更多更新日志](https://github.com/longitachi/ZLPhotoBrowser/blob/master/CHANGELOG.md)
```
● 4.4.3.1 - 4.4.3 Patch
● 4.4.3.1, 4.4.3.2 - 4.4.3 Patch
Fix:
删除部分耗时代码,优化小图界面的图片加载速度。
修复文字贴纸输入时的一个bug。
● 4.4.3
Add:
支持限制视频可选尺寸的最大值和最小值。
Expand Down
5 changes: 4 additions & 1 deletion Sources/Edit/ZLInputTextViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,10 @@ class ZLInputTextViewController: UIViewController {
let size = textView.sizeThatFits(subview.frame.size)
UIGraphicsBeginImageContextWithOptions(size, false, UIScreen.main.scale)
if let context = UIGraphicsGetCurrentContext() {
textLayer.render(in: context)
if textStyle == .bg {
textLayer.render(in: context)
}

subview.layer.render(in: context)
image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
Expand Down
2 changes: 1 addition & 1 deletion Sources/General/ZLPhotoBrowser.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import UIKit
import Foundation
import Photos

let version = "4.4.3.1"
let version = "4.4.3.2"

public struct ZLPhotoBrowserWrapper<Base> {
public let base: Base
Expand Down
2 changes: 1 addition & 1 deletion ZLPhotoBrowser.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ZLPhotoBrowser'
s.version = '4.4.3.1'
s.version = '4.4.3.2'
s.summary = 'A lightweight and pure Swift implemented library for select photos from album'

s.description = <<-DESC
Expand Down

0 comments on commit e79eebd

Please sign in to comment.