Skip to content

Commit

Permalink
Bump to v1.1.3 and build 18.
Browse files Browse the repository at this point in the history
Fix crash in GridViewController.assetsAtIndexPaths
  • Loading branch information
mluisbrown committed May 23, 2016
1 parent 53cabf1 commit d584424
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Memories/Grid View/GridViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -525,9 +525,9 @@ class GridViewController: UICollectionViewController, UICollectionViewDelegateFl
}

func assetsAtIndexPaths(indexPaths : [NSIndexPath]) -> [PHAsset] {
return indexPaths.map() {
self.model.assetAtIndexPath($0)!
}
return indexPaths.flatMap() {
self.model.assetAtIndexPath($0)
}
}

// MARK: - Helpers
Expand Down
4 changes: 2 additions & 2 deletions Memories/Supporting Files/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.2</string>
<string>1.1.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -32,7 +32,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>17</string>
<string>18</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>itms-apps</string>
Expand Down
2 changes: 1 addition & 1 deletion PHAssetHelper/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions Photo Widget/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>1.1.2</string>
<string>1.1.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>17</string>
<string>18</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionMainStoryboard</key>
Expand Down

0 comments on commit d584424

Please sign in to comment.