Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ctdewaters committed May 30, 2018
1 parent 97e47cd commit 442e6ff
Show file tree
Hide file tree
Showing 11 changed files with 77 additions and 77 deletions.
Expand Up @@ -12,12 +12,12 @@
<key>MemoriesKit.xcscheme</key>
<dict>
<key>orderHint</key>
<integer>11</integer>
<integer>12</integer>
</dict>
<key>MemoriesKit_watchOS.xcscheme</key>
<dict>
<key>orderHint</key>
<integer>12</integer>
<integer>13</integer>
</dict>
<key>Music Memories (watchOS).xcscheme</key>
<dict>
Expand All @@ -32,7 +32,7 @@
<key>Music Memories-watchOS.xcscheme</key>
<dict>
<key>orderHint</key>
<integer>13</integer>
<integer>1</integer>
</dict>
<key>Music Memories.xcscheme</key>
<dict>
Expand Down
4 changes: 2 additions & 2 deletions Podfile.lock
Expand Up @@ -19,7 +19,7 @@ DEPENDENCIES:
- "UITextView+Placeholder (~> 1.2)"

SPEC REPOS:
https://github.com/CocoaPods/Specs.git:
https://github.com/cocoapods/specs.git:
- BSGridCollectionViewLayout
- BSImagePicker
- DeviceKit
Expand All @@ -41,4 +41,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: e59b8871a4bd02b795dda668837937d9d177f06b

COCOAPODS: 1.5.0
COCOAPODS: 1.5.3
4 changes: 2 additions & 2 deletions Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

108 changes: 54 additions & 54 deletions Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion iOS/Home/HomeViewController.swift
Expand Up @@ -284,7 +284,7 @@ extension HomeViewController: UIViewControllerPreviewingDelegate {
//Peek
func previewingContext(_ previewingContext: UIViewControllerPreviewing, viewControllerForLocation location: CGPoint) -> UIViewController? {
//Get the index path for the cell at the passed point.
guard let indexPath = collectionView?.indexPathForItem(at: location) else {
guard let indexPath = collectionView?.indexPathForItem(at: location), indexPath.item > 0 else {
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion iOS/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1</string>
<string>1.1.1</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
Expand Down
Expand Up @@ -192,7 +192,7 @@ class MemoryItemCollectionViewCell: UICollectionViewCell {

//Set up the now playing indicator.
self.nowPlayingIndicator = ESTMusicIndicatorView(frame: .zero)
self.nowPlayingIndicator?.tintColor = Settings.shared.textColor
self.nowPlayingIndicator?.tintColor = .themeColor
self.nowPlayingIndicator?.sizeToFit()
self.nowPlayingIndicator?.alpha = 0
self.nowPlayingIndicator?.center = CGPoint(x: self.nowPlayingBlur!.frame.width / 2, y: self.nowPlayingBlur!.frame.height / 2)
Expand Down
2 changes: 1 addition & 1 deletion iOS/watchOS/Music Memories-watchOS Extension/Info.plist
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>1.1</string>
<string>1.1.1</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>CLKComplicationSupportedFamilies</key>
Expand Down
2 changes: 1 addition & 1 deletion iOS/watchOS/Music Memories-watchOS/Info.plist
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1</string>
<string>1.1.1</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>UISupportedInterfaceOrientations</key>
Expand Down

0 comments on commit 442e6ff

Please sign in to comment.