diff --git a/Example/Podfile.lock b/Example/Podfile.lock index c8c9e08..7191079 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - UIDevice-Utils (1.0.6) + - UIDevice-Utils (1.0.7) DEPENDENCIES: - UIDevice-Utils (from `../`) @@ -9,7 +9,7 @@ EXTERNAL SOURCES: :path: ../ SPEC CHECKSUMS: - UIDevice-Utils: 8ea7c7082f182e36bde4431dee6681bab5cefb53 + UIDevice-Utils: 3abac0b73a453f13e658bd8054d44f8b7a9a821d PODFILE CHECKSUM: 29850ff9a3324af2d39c0303e01cd7bcbab47fb5 diff --git a/Example/Pods/Local Podspecs/UIDevice-Utils.podspec.json b/Example/Pods/Local Podspecs/UIDevice-Utils.podspec.json index b3f2af6..06381ab 100644 --- a/Example/Pods/Local Podspecs/UIDevice-Utils.podspec.json +++ b/Example/Pods/Local Podspecs/UIDevice-Utils.podspec.json @@ -1,6 +1,6 @@ { "name": "UIDevice-Utils", - "version": "1.0.6", + "version": "1.0.7", "summary": "Category on UIDevice to distinguish between platforms.", "description": "Category to easy distinguish devices, family platform device, or device inches. Provide human-readable device names e.g. 'iPhone 6S Plus' or enums e.g. 'UIDeviceGenerationModeliPhone6SPlus'", "homepage": "https://github.com/giuseppenucifora/UIDevice-Utils", @@ -10,7 +10,7 @@ }, "source": { "git": "https://github.com/giuseppenucifora/UIDevice-Utils.git", - "tag": "1.0.6" + "tag": "1.0.7" }, "platforms": { "ios": "8.0" diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index c8c9e08..7191079 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -1,5 +1,5 @@ PODS: - - UIDevice-Utils (1.0.6) + - UIDevice-Utils (1.0.7) DEPENDENCIES: - UIDevice-Utils (from `../`) @@ -9,7 +9,7 @@ EXTERNAL SOURCES: :path: ../ SPEC CHECKSUMS: - UIDevice-Utils: 8ea7c7082f182e36bde4431dee6681bab5cefb53 + UIDevice-Utils: 3abac0b73a453f13e658bd8054d44f8b7a9a821d PODFILE CHECKSUM: 29850ff9a3324af2d39c0303e01cd7bcbab47fb5 diff --git a/Example/Pods/Target Support Files/UIDevice-Utils/Info.plist b/Example/Pods/Target Support Files/UIDevice-Utils/Info.plist index 995c8fe..1bd6a77 100644 --- a/Example/Pods/Target Support Files/UIDevice-Utils/Info.plist +++ b/Example/Pods/Target Support Files/UIDevice-Utils/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0.6 + 1.0.7 CFBundleSignature ???? CFBundleVersion diff --git a/Pod/Classes/UIDevice-Hardware.m b/Pod/Classes/UIDevice-Hardware.m index 89fb037..277353c 100755 --- a/Pod/Classes/UIDevice-Hardware.m +++ b/Pod/Classes/UIDevice-Hardware.m @@ -338,6 +338,11 @@ return UIDeviceSimulatorModelInches55; break; } + case 812:{ + return UIDeviceSimulatorModelInches58; + break; + } + break; case 1024:{ return UIDeviceModelInches97; break; diff --git a/UIDevice-Utils.podspec b/UIDevice-Utils.podspec index baa3a58..0f4b7ad 100644 --- a/UIDevice-Utils.podspec +++ b/UIDevice-Utils.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = "UIDevice-Utils" -s.version = "1.0.6" +s.version = "1.0.7" s.summary = "Category on UIDevice to distinguish between platforms." s.description = "Category to easy distinguish devices, family platform device, or device inches. Provide human-readable device names e.g. 'iPhone 6S Plus' or enums e.g. 'UIDeviceGenerationModeliPhone6SPlus'" s.homepage = "https://github.com/giuseppenucifora/UIDevice-Utils"