Skip to content

Commit

Permalink
Add support for iOS 13, tvOS 13, watchOS 6 to iOS target configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
fr0l committed Jul 16, 2019
1 parent 4fdc14f commit 638cd09
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions FBControlCore/Configuration/FBiOSTargetConfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ extern FBOSVersionName const FBOSVersionNameiOS_11_2;
extern FBOSVersionName const FBOSVersionNameiOS_11_3;
extern FBOSVersionName const FBOSVersionNameiOS_11_4;
extern FBOSVersionName const FBOSVersionNameiOS_12_0;
extern FBOSVersionName const FBOSVersionNameiOS_12_1;
extern FBOSVersionName const FBOSVersionNameiOS_13_0;
extern FBOSVersionName const FBOSVersionNametvOS_9_0;
extern FBOSVersionName const FBOSVersionNametvOS_9_1;
extern FBOSVersionName const FBOSVersionNametvOS_9_2;
Expand All @@ -103,6 +105,8 @@ extern FBOSVersionName const FBOSVersionNametvOS_11_2;
extern FBOSVersionName const FBOSVersionNametvOS_11_3;
extern FBOSVersionName const FBOSVersionNametvOS_11_4;
extern FBOSVersionName const FBOSVersionNametvOS_12_0;
extern FBOSVersionName const FBOSVersionNametvOS_12_1;
extern FBOSVersionName const FBOSVersionNametvOS_13_0;
extern FBOSVersionName const FBOSVersionNamewatchOS_2_0;
extern FBOSVersionName const FBOSVersionNamewatchOS_2_1;
extern FBOSVersionName const FBOSVersionNamewatchOS_2_2;
Expand All @@ -113,6 +117,7 @@ extern FBOSVersionName const FBOSVersionNamewatchOS_4_0;
extern FBOSVersionName const FBOSVersionNamewatchOS_4_1;
extern FBOSVersionName const FBOSVersionNamewatchOS_4_2;
extern FBOSVersionName const FBOSVersionNamewatchOS_5_0;
extern FBOSVersionName const FBOSVersionNamewatchOS_6_0;

#pragma mark Screen

Expand Down
6 changes: 6 additions & 0 deletions FBControlCore/Configuration/FBiOSTargetConfiguration.m
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
FBOSVersionName const FBOSVersionNameiOS_11_4 = @"iOS 11.4";
FBOSVersionName const FBOSVersionNameiOS_12_0 = @"iOS 12.0";
FBOSVersionName const FBOSVersionNameiOS_12_1 = @"iOS 12.1";
FBOSVersionName const FBOSVersionNameiOS_13_0 = @"iOS 13.0";
FBOSVersionName const FBOSVersionNametvOS_9_0 = @"tvOS 9.0";
FBOSVersionName const FBOSVersionNametvOS_9_1 = @"tvOS 9.1";
FBOSVersionName const FBOSVersionNametvOS_9_2 = @"tvOS 9.2";
Expand All @@ -92,6 +93,7 @@
FBOSVersionName const FBOSVersionNametvOS_11_4 = @"tvOS 11.4";
FBOSVersionName const FBOSVersionNametvOS_12_0 = @"tvOS 12.0";
FBOSVersionName const FBOSVersionNametvOS_12_1 = @"tvOS 12.1";
FBOSVersionName const FBOSVersionNametvOS_13_0 = @"tvOS 13.0";
FBOSVersionName const FBOSVersionNamewatchOS_2_0 = @"watchOS 2.0";
FBOSVersionName const FBOSVersionNamewatchOS_2_1 = @"watchOS 2.1";
FBOSVersionName const FBOSVersionNamewatchOS_2_2 = @"watchOS 2.2";
Expand All @@ -103,6 +105,7 @@
FBOSVersionName const FBOSVersionNamewatchOS_4_2 = @"watchOS 4.2";
FBOSVersionName const FBOSVersionNamewatchOS_5_0 = @"watchOS 5.0";
FBOSVersionName const FBOSVersionNamewatchOS_5_1 = @"watchOS 5.1";
FBOSVersionName const FBOSVersionNamewatchOS_6_0 = @"watchOS 6.0";

@implementation FBiOSTargetScreenInfo

Expand Down Expand Up @@ -401,6 +404,7 @@ @implementation FBiOSTargetConfiguration
[FBOSVersion iOSWithName:FBOSVersionNameiOS_11_4],
[FBOSVersion iOSWithName:FBOSVersionNameiOS_12_0],
[FBOSVersion iOSWithName:FBOSVersionNameiOS_12_1],
[FBOSVersion iOSWithName:FBOSVersionNameiOS_13_0],
[FBOSVersion tvOSWithName:FBOSVersionNametvOS_9_0],
[FBOSVersion tvOSWithName:FBOSVersionNametvOS_9_1],
[FBOSVersion tvOSWithName:FBOSVersionNametvOS_9_2],
Expand All @@ -414,6 +418,7 @@ @implementation FBiOSTargetConfiguration
[FBOSVersion tvOSWithName:FBOSVersionNametvOS_11_4],
[FBOSVersion tvOSWithName:FBOSVersionNametvOS_12_0],
[FBOSVersion tvOSWithName:FBOSVersionNametvOS_12_1],
[FBOSVersion tvOSWithName:FBOSVersionNametvOS_13_0],
[FBOSVersion tvOSWithName:FBOSVersionNamewatchOS_2_0],
[FBOSVersion tvOSWithName:FBOSVersionNamewatchOS_2_1],
[FBOSVersion tvOSWithName:FBOSVersionNamewatchOS_2_2],
Expand All @@ -425,6 +430,7 @@ @implementation FBiOSTargetConfiguration
[FBOSVersion tvOSWithName:FBOSVersionNamewatchOS_4_2],
[FBOSVersion tvOSWithName:FBOSVersionNamewatchOS_5_0],
[FBOSVersion tvOSWithName:FBOSVersionNamewatchOS_5_1],
[FBOSVersion tvOSWithName:FBOSVersionNamewatchOS_6_0],
];
});
return OSConfigurations;
Expand Down

0 comments on commit 638cd09

Please sign in to comment.