Skip to content

Commit

Permalink
更新内容:配置1.2.0版本等
Browse files Browse the repository at this point in the history
  • Loading branch information
XL committed Jun 14, 2017
1 parent e29498e commit e94938e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## 1.XLPhotoBrowser描述
一个简单实用的图片浏览器,效果类似微信图片浏览器,支持弹出动画和回缩动画,支持多图浏览,支持本地和网络图片浏览,支持多种属性自定义(暂不支持横竖屏适配)
一个简单实用的图片浏览器,效果类似微信图片浏览器,支持弹出动画和回缩动画,支持多图浏览,支持本地和网络图片浏览,支持多种属性自定义(支持横竖屏浏览)

### 支持多种图片浏览样式
* 类似微信图片浏览样式XLPhotoBrowserStylePageControl , 底部有个pagecontrol显示图片索引
Expand Down Expand Up @@ -32,7 +32,7 @@ pod 'XLPhotoBrowser+CoderXL'


#### 注意:
* XLPhotoBrowser依赖于SDWebImage框架[3.8.0,3.9.0),`由于SDWebImage4.0版本对API进行了修改,所以不兼容4.0版本`
* XLPhotoBrowser依赖于SDWebImage框架4.0.0版本,`由于SDWebImage4.0版本对API进行了修改,所以不兼容SDWebImage4.0以下版本`


## 3. 使用说明
Expand Down Expand Up @@ -237,6 +237,10 @@ pod 'XLPhotoBrowser+CoderXL'
* 还可以在这里修改很多样式属性,如:修改浏览器的背景色/图片间隔等 ,使用方式很简单,具体的使用就不在这里赘述

## 4. 更新日志
* 1.2.0
* 1. 支持横竖屏适配(设备没有锁定方向,且项目配置支持横屏才可以触发横屏浏览模式)
* 2. 更新SDWebImage到4.0.0 , 由于SDWebImage4.0版本对API进行了修改,所以不兼容SDWebImage4.0以下版本
* 3. 修复图片下载进度条等已知bug
* 1.1.0
* 1. 优化框架结构,XLPhotoBrowser内部维护一个优先级为maxfloat的UIWindow,避免不同的项目会因为窗口问题造成XLPhotoBrowser显示不正确等问题
* 2. 修改FSActionSheet源码,修复长按弹出ActionSheet显示在图片后面等问题
Expand Down
6 changes: 3 additions & 3 deletions XLPhotoBrowser+CoderXL.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Pod::Spec.new do |s|
s.name = 'XLPhotoBrowser+CoderXL'
s.version = '1.1.0'
s.summary = 'An easy way to borwser photoes'
s.version = '1.2.0'
s.summary = 'An easy way to borwser photoes like WeChat Or SinaWeibo Style!'
s.homepage = 'https://github.com/CoderXLLau/XLPhotoBrowser'
s.license = 'MIT'
s.authors = {'CoderXLLau' => '[email protected]'}
s.platform = :ios, '7.0'
s.source = {:git => 'https://github.com/CoderXLLau/XLPhotoBrowser.git', :tag => s.version}
s.source_files = 'XLPhotoBrowser+CoderXL/**/*.{h,m}'
s.framework = 'UIKit'
s.dependency 'SDWebImage', '~> 3.8.0'
s.dependency 'SDWebImage', '~> 4.0.0'
s.requires_arc = true
end

1 change: 1 addition & 0 deletions XLPhotoBrowser+CoderXL/XLPhotoBrowserConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#define XLPhotoBrowserDebug 1
//是否开启断言调试模式
#define IsOpenAssertDebug 1
#define XLPhotoBrowserVersion @"1.2.0"

/**
* 进度视图类型类型
Expand Down
6 changes: 3 additions & 3 deletions XLPhotoBrowserDemo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@
TargetAttributes = {
538DBCAB1D3A1D7E00117463 = {
CreatedOnToolsVersion = 7.3.1;
DevelopmentTeam = FT3R23CEY6;
DevelopmentTeam = QC83AGNAJ7;
};
};
};
Expand Down Expand Up @@ -538,7 +538,7 @@
baseConfigurationReference = F7A599F3A5609494D4D0D012 /* Pods-XLPhotoBrowserDemo.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = FT3R23CEY6;
DEVELOPMENT_TEAM = QC83AGNAJ7;
INFOPLIST_FILE = XLPhotoBrowserDemo/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
Expand All @@ -552,7 +552,7 @@
baseConfigurationReference = 84BBA3CE16CB284BED37DEEA /* Pods-XLPhotoBrowserDemo.release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = FT3R23CEY6;
DEVELOPMENT_TEAM = QC83AGNAJ7;
INFOPLIST_FILE = XLPhotoBrowserDemo/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
Expand Down
2 changes: 1 addition & 1 deletion XLPhotoBrowserDemo/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>1.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit e94938e

Please sign in to comment.