Skip to content

Commit

Permalink
release 3.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
longitachi committed Apr 8, 2020
1 parent 9917c34 commit 76759f6
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
### 更新日志
> [更多更新日志](https://github.com/longitachi/ZLPhotoBrowser/blob/master/UPDATELOG.md)
```
● 3.1.4: 添加自定义相机分辨率(320*240, 960*540); 修正拍照后图片方向; 编辑视频最小允许编辑5s; 添加相机是否可用检测; 修正部分多语言错误的问题;
● 3.1.3: 修改曝光模式; 拍照界面显示 "轻触拍照,按住摄像" 提示; 增加直接调用编辑图片api; 已知bug fixed;
● 3.1.2: SDWebImage 不在指定依赖版本号;
● 3.1.1: 优化进入相册速度及从相册列表进入选择界面流程; 选择相片时候添加progress; 解决原图大小显示错误的bug; 已知bug fixed;
Expand All @@ -66,7 +67,6 @@
● 2.7.6: 预览大图界面支持precent情况下的下拉返回;
● 2.7.5: 编辑图片支持自定义工具类型; bug fixed;
● 2.7.4: 横滑大图界面添加下拉返回; 不允许录制视频时候不请求麦克风权限;
● 2.7.1: 支持自定义导航返回按钮图片;
```

### 框架支持
Expand Down
14 changes: 14 additions & 0 deletions UPDATELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

-----

## [3.1.4](https://github.com/longitachi/ZLPhotoBrowser/releases/tag/3.1.4) (2020-04-08)

#### Add
* 添加自定义相机分辨率(320*240, 960*540);
* 编辑视频最小允许编辑5s;
* 添加相机是否可用检测;


#### Fix
* 修正拍照后图片方向. [#472](https://github.com/longitachi/ZLPhotoBrowser/issues/472);
* 修正部分多语言错误的问题. [#469](https://github.com/longitachi/ZLPhotoBrowser/issues/469);

---

## [3.1.3](https://github.com/longitachi/ZLPhotoBrowser/releases/tag/3.1.3) (2020-01-13)

#### Add
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 = '3.1.3'
s.version = '3.1.4'
s.summary = 'A simple way to multiselect photos from ablum, force touch to preview photo, support portrait and landscape, edit photo, multiple languages(Chinese,English,Japanese)'
s.homepage = 'https://github.com/longitachi/ZLPhotoBrowser'
s.license = 'MIT'
Expand Down
2 changes: 1 addition & 1 deletion ZLPhotoBrowser/PhotoBrowser/ZLPhotoBrowser.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by long on 2019/3/4.
// Copyright © 2019年 long. All rights reserved.
//
// version: 3.1.3 2020-01-13
// version: 3.1.4 2020-04-08

#import <UIKit/UIKit.h>
//
Expand Down
2 changes: 1 addition & 1 deletion ZLPhotoBrowser/PhotoBrowser/ZLPhotoConfiguration.m
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ - (BOOL)showSelectBtn

- (void)setAllowSelectLivePhoto:(BOOL)allowSelectLivePhoto
{
if (@available(iOS 9.0, *)) {
if (@available(iOS 9.1, *)) {
_allowSelectLivePhoto = allowSelectLivePhoto;
} else {
_allowSelectLivePhoto = NO;
Expand Down

0 comments on commit 76759f6

Please sign in to comment.