Skip to content

Commit 1d4e9cd

Browse files
authored
Merge branch 'master' into master
2 parents d15f0f2 + 5ad2565 commit 1d4e9cd

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
language: objective-c
2-
osx_image: xcode9.2
2+
osx_image: xcode9.4
33

44
before_install:
55
- gem install xcpretty-travis-formatter;
66
- gem install cocoapods --no-document --quiet;
77
- pod install --repo-update;
88

99
script:
10-
- set -o pipefail && xcodebuild -workspace LayoutFrameworkBenchmark.xcworkspace -scheme LayoutFrameworkBenchmark -sdk iphonesimulator11.2 -destination 'platform=iOS Simulator,name=iPhone 6' build | xcpretty -f `xcpretty-travis-formatter`
10+
- set -o pipefail && xcodebuild -workspace LayoutFrameworkBenchmark.xcworkspace -scheme LayoutFrameworkBenchmark -sdk iphonesimulator11.4 -destination 'platform=iOS Simulator,name=iPhone 8' build | xcpretty -f `xcpretty-travis-formatter`

LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Contents.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,9 @@
9191
"scale" : "2x"
9292
},
9393
{
94-
"idiom" : "ios-marketing",
9594
"size" : "1024x1024",
95+
"idiom" : "ios-marketing",
96+
"filename" : "Icon-1024.png",
9697
"scale" : "1x"
9798
}
9899
],
133 KB
Loading

LayoutFrameworkBenchmark/Benchmarks/CollectionViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class CollectionViewController<ContentViewType: UIView>: UICollectionViewControl
6363
}
6464

6565
override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
66-
let cell: CellType = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath) as! CellType
66+
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath) as! CellType
6767
cell.setData(data[indexPath.row])
6868
return cell
6969
}

LayoutFrameworkBenchmark/Benchmarks/PinLayout/FeedItemPinLayoutView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class FeedItemPinLayoutView: UIView, DataBinder {
158158

159159
posterCommentLabel.pin.below(of: posterTimeLabel).left(hMargin).right(hMargin).marginTop(vMargin).sizeToFit(.width)
160160

161-
contentImageView.pin.below(of: posterCommentLabel, aligned: .left).right().marginRight(hMargin)
161+
contentImageView.pin.below(of: posterCommentLabel, aligned: .left).right().marginTop(vMargin).marginRight(hMargin)
162162
contentTitleLabel.pin.below(of: contentImageView).left().right().marginHorizontal(hMargin).sizeToFit(.width)
163163
contentDomainLabel.pin.below(of: contentTitleLabel, aligned: .left).right().marginRight(hMargin).sizeToFit(.width)
164164

Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ PODS:
33
- LayoutKit (8.0.1)
44
- NKFrameLayoutKit (2.1)
55
- NotAutoLayout (3.1.1)
6-
- PinLayout (1.7.8)
7-
- Reveal-SDK (16)
6+
- PinLayout (1.7.9)
7+
- Reveal-SDK (14)
88

99
DEPENDENCIES:
1010
- FlexLayout
@@ -28,8 +28,8 @@ SPEC CHECKSUMS:
2828
LayoutKit: dab1c2eea7a0bf9d8d755a8a793f87a929768455
2929
NKFrameLayoutKit: 6a2f6ac34f85d495e683ea0f7f1605903a4d3e00
3030
NotAutoLayout: 2e6e82146dcb556cb61fcfd638b202639c167e84
31-
PinLayout: 2baeb56058fcbc600e4a39146868d78f998b0e1f
32-
Reveal-SDK: ed36bdbb3cbf90b94ae5da0dbcb3c7ae6738c51f
31+
PinLayout: 21ce87a865407a7a3c8a38a326611c476095fedf
32+
Reveal-SDK: 55b5c5545233b680c2f8da734f202acc15d422b7
3333

3434
PODFILE CHECKSUM: 9565083f4813952a5a640666616b259832defa8b
3535

0 commit comments

Comments
 (0)