Skip to content

Commit 6f6de1b

Browse files
committed
Bumped version to 4.5.8
1 parent 8c92c31 commit 6f6de1b

File tree

6 files changed

+35
-16
lines changed

6 files changed

+35
-16
lines changed

.github/ISSUE_TEMPLATE.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Please fill in the detailed description of the issue (full output of any stack trace, compiler error, ...) and the steps to reproduce the issue.
66

77
#### Info
8-
ZLPhotoBrowser version: e.g. 4.5.7
8+
ZLPhotoBrowser version: e.g. 4.5.8
99
Device: e.g. iPhone 14 Pro
1010
Device version: e.g. iOS 16.0
1111
Xcode version: e.g. Xcode 14.0

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
-----
44

5+
## [4.5.8](https://github.com/longitachi/ZLPhotoBrowser/releases/tag/4.5.8) (2025-02-18)
6+
### Add:
7+
* Add video stabilization mode to camera configuration. [#959](https://github.com/longitachi/ZLPhotoBrowser/pull/959) @tsinis
8+
9+
### Fix:
10+
* Fix video recording with both torch-on and wide cameras. [#960](https://github.com/longitachi/ZLPhotoBrowser/pull/960) @tsinis
11+
* Fixed the problem of freezing caused by calculating the frame when previewing network videos. [#967](https://github.com/longitachi/ZLPhotoBrowser/issues/967)
12+
* Fix the memory leak issue in the ZLEditImageViewController interface. [#968](https://github.com/longitachi/ZLPhotoBrowser/issues/968)
13+
* When there is no album permission, clicking on the album no longer displays the permission alert. [#969](https://github.com/longitachi/ZLPhotoBrowser/issues/969)
14+
* Correct eraser misalignment after image cropping. [#971](https://github.com/longitachi/ZLPhotoBrowser/pull/971) @vcicis
15+
16+
---
17+
518
## [4.5.7](https://github.com/longitachi/ZLPhotoBrowser/releases/tag/4.5.7) (2024-12-02)
619
### Add:
720
* Custom camera supports tap-to-record mode. [#944](https://github.com/longitachi/ZLPhotoBrowser/pull/944) @tsinis

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,15 @@ If you only want to use the image edit feature, please move to [ZLImageEditor](h
9191
### Change Log
9292
> [More logs](https://github.com/longitachi/ZLPhotoBrowser/blob/master/CHANGELOG.md)
9393
```
94+
● 4.5.8
95+
Add:
96+
Add video stabilization mode to camera configuration.
97+
Fix:
98+
Fix video recording with both torch-on and wide cameras.
99+
Fixed the problem of freezing caused by calculating the frame when previewing network videos.
100+
Fix the memory leak issue in the ZLEditImageViewController interface.
101+
When there is no album permission, clicking on the album no longer displays the permission alert.
102+
Correct eraser misalignment after image cropping.
94103
● 4.5.7
95104
Add:
96105
Custom camera supports tap-to-record mode.
@@ -102,12 +111,6 @@ If you only want to use the image edit feature, please move to [ZLImageEditor](h
102111
Add:
103112
Support iOS18.
104113
When saving pictures and videos, add error parameters in the callback.
105-
● 4.5.5
106-
Add:
107-
The ZLImagePreviewController interface supports gesture-driven pull-down return animations.
108-
Update the API for obtaining album permissions.
109-
Fix:
110-
Fixed the bug that mosaics were not displayed during painting.
111114
...
112115
```
113116

@@ -163,7 +166,7 @@ Rebuild with --use-xcframeworks to create an xcframework bundle instead.` [Click
163166

164167
#### Swift Package Manager
165168
1. Select File > Add Packages. Enter https://github.com/longitachi/ZLPhotoBrowser.git in the "Choose Package Repository" dialog.
166-
2. In the next page, specify the version resolving rule as "Up to Next Major" with "4.5.7" as its earliest version.
169+
2. In the next page, specify the version resolving rule as "Up to Next Major" with "4.5.8" as its earliest version.
167170
3. After Xcode checking out the source and resolving the version, you can choose the "ZLPhotoBrowser" library and add it to your app target.
168171

169172
### Support

README_CN.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,15 @@ ZLPhotoBrowser是一款微信样式的图片选择器,支持预览/相册内
102102
### 更新日志
103103
> [更多更新日志](https://github.com/longitachi/ZLPhotoBrowser/blob/master/CHANGELOG.md)
104104
```
105+
● 4.5.8
106+
Add:
107+
自定义相机支持开启防抖模式。
108+
Fix:
109+
修复自定义相机广角模式闪光灯无法开启的bug。
110+
修复预览网络视频时卡顿的问题。
111+
修复图片编辑器界面内存泄漏的问题。
112+
无相册权限时,再次点击相册不再显示引导开启权限弹窗(苹果审核政策要求)。
113+
修复图片裁剪后,涂鸦橡皮擦工具在涂抹时,UI显示错位的bug。
105114
● 4.5.7
106115
Add:
107116
自定义相机支持点击后保持录像模式。
@@ -113,12 +122,6 @@ ZLPhotoBrowser是一款微信样式的图片选择器,支持预览/相册内
113122
Add:
114123
支持iOS18。
115124
保存图片和视频的回调里添加error参数。
116-
● 4.5.5
117-
Add:
118-
ZLImagePreviewController界面支持下拉返回手势。
119-
更新获取相册权限的API。
120-
Fix:
121-
修复马赛克在涂抹过程中不显示的bug。
122125
...
123126
```
124127

Sources/General/ZLPhotoBrowser.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import UIKit
2828
import Foundation
2929
import Photos
3030

31-
let version = "4.5.7"
31+
let version = "4.5.8"
3232

3333
public struct ZLPhotoBrowserWrapper<Base> {
3434
public let base: Base

ZLPhotoBrowser.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 = 'ZLPhotoBrowser'
3-
s.version = '4.5.7'
3+
s.version = '4.5.8'
44
s.summary = 'A lightweight and pure Swift implemented library for select photos from album'
55

66
s.description = <<-DESC

0 commit comments

Comments
 (0)