Skip to content
This repository has been archived by the owner on Jan 16, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release/0.6.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
nabilsafatli committed Aug 30, 2017
2 parents 288b19f + 344ede7 commit 2cc4324
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Clappr.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Clappr"
s.version = "0.6.6"
s.version = "0.6.7"
s.summary = "An extensible media player for iOS"
s.homepage = "http://clappr.io"
s.license = 'MIT'
Expand Down
10 changes: 5 additions & 5 deletions Clappr/Classes/Base/FullscreenController.swift
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import UIKit

class FullscreenController: UIViewController {

override var shouldAutorotate: Bool {
return true
}

override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
return UIInterfaceOrientationMask.landscape
}

override var preferredInterfaceOrientationForPresentation: UIInterfaceOrientation { // swiftlint:disable:this variable_name
return UIInterfaceOrientation.landscapeRight
override var preferredInterfaceOrientationForPresentation: UIInterfaceOrientation {
return UIDevice.current.orientation == UIDeviceOrientation.landscapeLeft ? UIInterfaceOrientation.landscapeLeft : UIInterfaceOrientation.landscapeRight
}
}
2 changes: 1 addition & 1 deletion Clappr/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>0.6.6</string>
<string>0.6.7</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 2cc4324

Please sign in to comment.