-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* new-ui: finished new ui Update common submodule Cherry Pick "Update to the new common library" Cherry Pick "Fix iOS build with new common" added settings menu and persistent storage for settings new ui is almost fully functional - add hosts - pair to host - get app list - launch app - resume app new ui un-stashed
- Loading branch information
Showing
54 changed files
with
3,743 additions
and
494 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
**/xcuserdata/ | ||
Build |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// App.h | ||
// Limelight | ||
// | ||
// Created by Diego Waxemberg on 10/22/14. | ||
// Copyright (c) 2014 Limelight Stream. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@interface App : NSObject | ||
|
||
@property NSString* appId; | ||
@property NSString* appName; | ||
@property UIImage* appImage; | ||
|
||
@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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// App.m | ||
// Limelight | ||
// | ||
// Created by Diego Waxemberg on 10/22/14. | ||
// Copyright (c) 2014 Limelight Stream. All rights reserved. | ||
// | ||
|
||
#import "App.h" | ||
#import "HttpManager.h" | ||
|
||
@implementation App | ||
@synthesize appId, appName, appImage; | ||
|
||
@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 |
---|---|---|
|
@@ -18,5 +18,6 @@ | |
|
||
- (void)saveContext; | ||
- (NSURL *)applicationDocumentsDirectory; | ||
- (NSURL*) getStoreURL; | ||
|
||
@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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// DataManager.h | ||
// Limelight | ||
// | ||
// Created by Diego Waxemberg on 10/28/14. | ||
// Copyright (c) 2014 Limelight Stream. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "Settings.h" | ||
#import "AppDelegate.h" | ||
#import "Host.h" | ||
|
||
@interface DataManager : NSObject | ||
|
||
@property (strong, nonatomic) AppDelegate* appDelegate; | ||
|
||
- (void) saveSettingsWithBitrate:(NSInteger)bitrate framerate:(NSInteger)framerate height:(NSInteger)height width:(NSInteger)width; | ||
- (Settings*) retrieveSettings; | ||
- (NSArray*) retrieveHosts; | ||
- (void) saveHosts; | ||
- (Host*) createHost:(NSString*)name hostname:(NSString*)address; | ||
|
||
@end |
Oops, something went wrong.