diff --git a/Exemple/OpenSourceControllerDemo.xcodeproj/project.pbxproj b/Exemple/OpenSourceControllerDemo.xcodeproj/project.pbxproj index 9747ab9..d354f7d 100644 --- a/Exemple/OpenSourceControllerDemo.xcodeproj/project.pbxproj +++ b/Exemple/OpenSourceControllerDemo.xcodeproj/project.pbxproj @@ -72,8 +72,8 @@ 76EAA8661E93F2CC009A41DA /* ViewController.swift */, 76EAA8891E93F66A009A41DA /* Sources */, 76EAA8681E93F2CC009A41DA /* Main.storyboard */, - 76EAA86B1E93F2CC009A41DA /* Assets.xcassets */, 76EAA86D1E93F2CC009A41DA /* LaunchScreen.storyboard */, + 76EAA86B1E93F2CC009A41DA /* Assets.xcassets */, 76EAA8701E93F2CC009A41DA /* Info.plist */, ); path = OpenSourceControllerDemo; diff --git a/Exemple/OpenSourceControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/floriangabach.xcuserdatad/UserInterfaceState.xcuserstate b/Exemple/OpenSourceControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/floriangabach.xcuserdatad/UserInterfaceState.xcuserstate index 7df1f78..9534087 100644 Binary files a/Exemple/OpenSourceControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/floriangabach.xcuserdatad/UserInterfaceState.xcuserstate and b/Exemple/OpenSourceControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/floriangabach.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/Exemple/OpenSourceControllerDemo/Info.plist b/Exemple/OpenSourceControllerDemo/Info.plist new file mode 100644 index 0000000..d052473 --- /dev/null +++ b/Exemple/OpenSourceControllerDemo/Info.plist @@ -0,0 +1,45 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/Exemple/OpenSourceControllerDemo/ViewController.swift b/Exemple/OpenSourceControllerDemo/ViewController.swift index 103111f..769ebee 100644 --- a/Exemple/OpenSourceControllerDemo/ViewController.swift +++ b/Exemple/OpenSourceControllerDemo/ViewController.swift @@ -29,7 +29,7 @@ class ViewController: UIViewController { // Create controller let openSourceVC = OpenSourceController() - // Apply somre customisation if you want ! + // Apply some customisation if you want //self.controllerCustomUI(openSourceVC: openSourceVC) // Init with LicenceFile object diff --git a/OpenSourceController.xcodeproj/project.xcworkspace/xcuserdata/floriangabach.xcuserdatad/UserInterfaceState.xcuserstate b/OpenSourceController.xcodeproj/project.xcworkspace/xcuserdata/floriangabach.xcuserdatad/UserInterfaceState.xcuserstate index a45134f..d92abda 100644 Binary files a/OpenSourceController.xcodeproj/project.xcworkspace/xcuserdata/floriangabach.xcuserdatad/UserInterfaceState.xcuserstate and b/OpenSourceController.xcodeproj/project.xcworkspace/xcuserdata/floriangabach.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/Sources/Model/LicenceFile.swift b/Sources/Model/LicenceFile.swift index 7640282..57f2fc2 100644 --- a/Sources/Model/LicenceFile.swift +++ b/Sources/Model/LicenceFile.swift @@ -29,7 +29,7 @@ public class LicenceFile: NSObject { public init(title: String, url: String) { self.title = title self.url = url - self.detail = NSLocalizedString("Unable to load this licence.", + self.detail = NSLocalizedString("Unable to load this licence file.", comment: "") }