-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add option to force Medusa for landscape-only
games; Fix truncated app name in app switcher; Revert home button iPhone workaround"
- Loading branch information
1 parent
cb43a44
commit 3628470
Showing
5 changed files
with
48 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#import <UIKit/UIKit.h> | ||
|
||
@interface SBApplicationInfo : NSObject | ||
@property(assign, nonatomic) UIInterfaceOrientationMask supportedInterfaceOrientations; | ||
@end | ||
|
||
@interface SBApplication : NSObject | ||
@property(nonatomic, readonly) SBApplicationInfo *info; | ||
@end | ||
|
||
@interface SBAppSwitcherSettings : NSObject | ||
@property(assign) CGFloat spacingBetweenLeadingEdgeAndIcon, spacingBetweenTrailingEdgeAndLabels; | ||
@end | ||
|
||
@interface SBExternalDisplayRuntimeAvailabilitySettings : NSObject | ||
@property(nonatomic, assign) BOOL requirePointer, requireHardwareKeyboard; | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#import <Foundation/Foundation.h> | ||
|
||
@interface TPPrefsObserver : NSObject | ||
@property(nonatomic, assign) BOOL allowLandscapeHomeScreen, useiPadAppSwitchingAnimation; | ||
@property(nonatomic, assign) BOOL allowLandscapeHomeScreen, forceEnableMedusaForLandscapeOnlyApps, useiPadAppSwitchingAnimation; | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters