forked from VoluntaryLabs/Bitpost
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
76e9da1
commit fc9d4b1
Showing
6 changed files
with
164 additions
and
95 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
Binary file modified
BIN
+7.85 KB
(100%)
...xcodeproj/project.xcworkspace/xcuserdata/steve.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
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,13 @@ | ||
// | ||
// BMAboutNode.h | ||
// Bitmessage | ||
// | ||
// Created by Steve Dekorte on 7/29/14. | ||
// Copyright (c) 2014 voluntary.net. All rights reserved. | ||
// | ||
|
||
#import <NavNodeKit/NavNodeKit.h> | ||
|
||
@interface BMAboutNode : NavInfoNode | ||
|
||
@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,124 @@ | ||
// | ||
// BMAboutNode.m | ||
// Bitmessage | ||
// | ||
// Created by Steve Dekorte on 7/29/14. | ||
// Copyright (c) 2014 voluntary.net. All rights reserved. | ||
// | ||
|
||
#import "BMAboutNode.h" | ||
|
||
@implementation BMAboutNode | ||
|
||
- (id)init | ||
{ | ||
self = [super init]; | ||
|
||
if (self) | ||
{ | ||
[self setup]; | ||
} | ||
|
||
return self; | ||
} | ||
|
||
- (void)setup | ||
{ | ||
NavInfoNode *about = self; | ||
about.shouldSortChildren = NO; | ||
about.nodeTitle = @"About"; | ||
about.nodeSuggestedWidth = 150; | ||
|
||
|
||
NavInfoNode *version = [[NavInfoNode alloc] init]; | ||
[about addChild:version]; | ||
version.nodeTitle = @"Version"; | ||
version.nodeSubtitle = @"0.8.1 beta"; | ||
version.nodeSuggestedWidth = 200; | ||
|
||
NavInfoNode *contributors = [[NavInfoNode alloc] init]; | ||
[about addChild:contributors]; | ||
contributors.nodeTitle = @"Credits"; | ||
contributors.nodeSuggestedWidth = 200; | ||
|
||
|
||
{ | ||
NavInfoNode *contributor = [[NavInfoNode alloc] init]; | ||
contributor.nodeTitle = @"Chris Robinson"; | ||
contributor.nodeSubtitle = @"Designer"; | ||
[contributors addChild:contributor]; | ||
} | ||
|
||
{ | ||
NavInfoNode *contributor = [[NavInfoNode alloc] init]; | ||
contributor.nodeTitle = @"Steve Dekorte"; | ||
contributor.nodeSubtitle = @"Lead / UI Dev"; | ||
[contributors addChild:contributor]; | ||
} | ||
|
||
{ | ||
NavInfoNode *contributor = [[NavInfoNode alloc] init]; | ||
contributor.nodeTitle = @"Adam Thorsen"; | ||
contributor.nodeSubtitle = @"Generalist"; | ||
[contributors addChild:contributor]; | ||
} | ||
|
||
{ | ||
NavInfoNode *contributor = [[NavInfoNode alloc] init]; | ||
contributor.nodeTitle = @"Dru Nelson"; | ||
contributor.nodeSubtitle = @"Unix Guru"; | ||
[contributors addChild:contributor]; | ||
} | ||
|
||
|
||
NavInfoNode *others = [[NavInfoNode alloc] init]; | ||
[contributors addChild:others]; | ||
others.nodeTitle = @"3rd Party"; | ||
others.nodeSuggestedWidth = 200; | ||
others.shouldSortChildren = NO; | ||
|
||
|
||
{ | ||
NavInfoNode *package = [[NavInfoNode alloc] init]; | ||
package.nodeTitle = @"Bitmessage"; | ||
package.nodeSubtitle = @"bitmessage.org"; | ||
[others addChild:package]; | ||
} | ||
|
||
{ | ||
NavInfoNode *package = [[NavInfoNode alloc] init]; | ||
package.nodeTitle = @"Open Sans"; | ||
package.nodeSubtitle = @"Steve Matteson, Google fonts"; | ||
[others addChild:package]; | ||
} | ||
|
||
{ | ||
NavInfoNode *package = [[NavInfoNode alloc] init]; | ||
package.nodeTitle = @"Python"; | ||
package.nodeSubtitle = @"python.org"; | ||
[others addChild:package]; | ||
} | ||
|
||
{ | ||
NavInfoNode *package = [[NavInfoNode alloc] init]; | ||
package.nodeTitle = @"Tor"; | ||
package.nodeSubtitle = @"torproject.org"; | ||
[others addChild:package]; | ||
} | ||
|
||
{ | ||
NavInfoNode *package = [[NavInfoNode alloc] init]; | ||
package.nodeTitle = @"XmlPRC"; | ||
package.nodeSubtitle = @"Eric Czarny"; | ||
[others addChild:package]; | ||
} | ||
|
||
{ | ||
NavInfoNode *package = [[NavInfoNode alloc] init]; | ||
package.nodeTitle = @"ZipKit"; | ||
package.nodeSubtitle = @"Karl Moskowski"; | ||
[others addChild:package]; | ||
} | ||
} | ||
|
||
@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