diff --git a/CTAssetsPickerController.podspec b/CTAssetsPickerController.podspec index ab891b32..3ab4cb51 100644 --- a/CTAssetsPickerController.podspec +++ b/CTAssetsPickerController.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'CTAssetsPickerController' - spec.version = '3.2.0' + spec.version = '3.2.1' spec.summary = 'iOS control that allows picking multiple photos and videos from user\'s photo library.' spec.description = <<-DESC @@ -15,9 +15,9 @@ Pod::Spec.new do |spec| spec.license = { :type => 'MIT', :file => 'LICENSE' } spec.author = { 'Clement T' => 'chiunam@gmail.com' } spec.social_media_url = 'https://twitter.com/chiunam' - spec.platform = :ios, '8.3' - spec.ios.deployment_target = '8.3' - spec.source = { :git => 'https://github.com/chiunam/CTAssetsPickerController.git', :tag => 'v3.2.0' } + spec.platform = :ios, '8.0' + spec.ios.deployment_target = '8.0' + spec.source = { :git => 'https://github.com/chiunam/CTAssetsPickerController.git', :tag => 'v3.2.1' } spec.public_header_files = 'CTAssetsPickerController/*.h' spec.source_files = 'CTAssetsPickerController/**/*.{h,m}' spec.resource_bundles = { 'CTAssetsPickerController' => ['CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/*/*.png', 'CTAssetsPickerController/Resources/*.lproj'] } diff --git a/Podfile b/Podfile index 45036e02..7711e179 100644 --- a/Podfile +++ b/Podfile @@ -1,4 +1,4 @@ -platform :ios, '8.3' +platform :ios, '8.0' source 'https://github.com/CocoaPods/Specs.git' diff --git a/README.md b/README.md index fd87974e..bad97ffe 100644 --- a/README.md +++ b/README.md @@ -13,25 +13,26 @@ CTAssetsPickerController is a highly customisable iOS controller that allows pic 3. Filters assets for picking only photos or videos. 4. Filters assets or albums by their properties. 5. Supports assets stored in iCloud. -6. Optionally shows selection order. -7. Achieves average 5x fps. -8. Conforms UIAppearance Protocol. -9. Conforms UIAccessibility Protocol. -10. Highly customisable. -11. Pure Auto Layout. (Thanks for the great work of [PureLayout](https://github.com/smileyborg/PureLayout)) +6. Supports many [languages](https://github.com/chiunam/CTAssetsPickerController/wiki/Localisation). +7. Optionally shows selection order. +8. Achieves average 5x fps. +9. Conforms UIAppearance protocol. +10. Conforms UIAccessibility protocol. +11. Highly customisable. +12. Pure Auto Layout. (Thanks for the great work of [PureLayout](https://github.com/smileyborg/PureLayout)) ## Release Notes * [Release Notes](https://github.com/chiunam/CTAssetsPickerController/releases) ## Minimum Requirement -iOS 9 SDK, Minimum Deployment Target iOS 8.3 +iOS 9 SDK, Minimum Deployment Target iOS 8.0 ## Adding to your project 1. [CocoaPods](http://cocoapods.org) Podfile ```` - platform :ios, '8.3' + platform :ios, '8.0' pod 'CTAssetsPickerController', '~> 3.2.0' ````