Skip to content

Commit

Permalink
added back some Enums that were deleted, bumped version to 1.9.20
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Hopkins committed Jan 6, 2023
1 parent c5cee9a commit 9a9c1e4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DeviceUtil_Brainium.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# read for development information https://guides.cocoapods.org/making/making-a-cocoapod.html
Pod::Spec.new do |s|
s.name = "DeviceUtil_Brainium"
s.version = "1.9.19"
s.version = "1.9.20"
s.summary = "DeviceUtil helps identifying the exact harware type of the device. e.g. iPhone 6 or iPhone 6s."
s.homepage = "https://github.com/BrainiumLLC/DeviceUtil.git"
s.license = "MIT (example)"
Expand Down
11 changes: 9 additions & 2 deletions Source/DeviceUtil+Constant.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

typedef NS_ENUM(NSUInteger, Hardware) {


NOT_AVAILABLE,
IPHONE_2G,
IPHONE_3G,
IPHONE_3GS,
Expand Down Expand Up @@ -144,7 +144,14 @@ typedef NS_ENUM(NSUInteger, Hardware) {
APPLE_TV_4K,

SIMULATOR,
UNKNOWN
UNKNOWN,

HARDWARE_MAX,

// Brainium backwards compatibility
IPAD_1 = IPAD,


};

extern NSString* const AppleTV1_1;
Expand Down

0 comments on commit 9a9c1e4

Please sign in to comment.