<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>Assets/ChatIcon.png</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -13,11 +13,9 @@
 @implementation ChattyViewController
 
 
--(id) initWithChattyId:(int)chatIdNum
-{
-	chatId = chatIdNum;
+- (id)initWithChattyId:(int)aChatId {
+	chatId = aChatId;
 	self = [self initWithNibName:@&quot;ChattyViewController&quot; bundle:[NSBundle mainBundle]];
-	//[super init];
 	return self;
 }
 </diff>
      <filename>Classes/ChattyViewController.m</filename>
    </modified>
    <modified>
      <diff>@@ -30,16 +30,15 @@
  }
  */
 
-- (id)initWithNewsPost:(NewsPost*)post
-{
-	self = [self initWithRequest: [NSURLRequest requestWithURL:[NSURL URLWithString:post.link]]];
+- (id)initWithNewsPost:(NewsPost*)post {
+	self = [self initWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:post.link]]];
 	self.title = post.title;
 	thePost = post;
 	return self;
 }
 
 - (void)viewDidLoad {
-	if( thePost ){ 
+	if (thePost) {
 		//remove dragondrop and add chat
 		[dragonDropButton setEnabled:NO];
 		self.navigationItem.rightBarButtonItem = chatButton;
@@ -66,13 +65,12 @@
 	[super dealloc];
 }
 
-- (IBAction)chat:(id)sender
-{
+- (IBAction)chat:(id)sender {
 	//need thePost - link
-	NSString* link = [thePost link];
-	NSArray* comps = [link componentsSeparatedByString:@&quot;/&quot;];
+	NSString *link = [thePost link];
+	NSArray *comps = [link componentsSeparatedByString:@&quot;/&quot;];
 	int story = [[comps objectAtIndex:([comps count]-1)] intValue];
-	if( chattyView ) [chattyView release];
+	if (chattyView) [chattyView release];
 	chattyView = [[ChattyViewController alloc] initWithChattyId:story];
 	//else [chattyView updateWithStoryId:story];
 	[[self navigationController] pushViewController:chattyView animated:YES];</diff>
      <filename>Classes/ExternalWebViewController.m</filename>
    </modified>
    <modified>
      <diff>@@ -10,67 +10,52 @@
 
 
 @implementation JFNewsPostCell
--(id) initWithFrame:(CGRect)rect reuseIdentifier:(NSString*)string
-{
-	title = [[UILabel alloc] init];
+
+- (id)initWithFrame:(CGRect)rect reuseIdentifier:(NSString*)string {
+	title       = [[UILabel alloc] init];
 	description = [[UILabel alloc] init];
-	date = [[UILabel alloc] init];
+	date        = [[UILabel alloc] init];
 	
 	[super initWithFrame:rect reuseIdentifier:string];
 	return self;
 }
--(void)setColor:(int)col
-{
-	color = col;
+
+- (void)setColor:(int)aColor {
+	color = aColor;
 }
--(void)buildCellForPost:(NewsPost*)post
-{
-	UIView* cv = self.contentView;
-	//cv.frame = CGRectMake( 0,0,320, 100);
-	if( color ) cv.backgroundColor = [UIColor colorWithWhite:1.0 alpha:0.05];
-	else cv.backgroundColor = [UIColor clearColor];
-	
-	
-	CGRect frame = CGRectMake(5, 5, 310, 12);
-	
-	//date
-	//title = [[UILabel alloc] initWithFrame:frame];
-	[date setFrame:frame];
-	[date setTextColor:[UIColor colorWithRed:.94 green:.18 blue:.04 alpha:1]];
-	[date setBackgroundColor:[UIColor clearColor]];
-	[date setFont:[UIFont systemFontOfSize:10]];
-	[date setNumberOfLines:1];
-	[date setText: [post date]];
-	[cv addSubview:date];
-	
-	frame = CGRectMake(10, 18, 295, 40);
-	//title = [[UILabel alloc] initWithFrame:frame];
-	[title setFrame:frame];
-	[title setTextColor:[UIColor whiteColor]];
-	[title setBackgroundColor:[UIColor clearColor]];
-	[title setFont:[UIFont systemFontOfSize:16]];
-	[title setNumberOfLines:2];
-	[title setText: [post title]];
-	[cv addSubview:title];
+
+- (void)buildCellForPost:(NewsPost *)post {
+	UIView* cell = self.contentView;
+	if (color) cell.backgroundColor = [UIColor colorWithWhite:1.0 alpha:0.05];
+	else cell.backgroundColor = [UIColor clearColor];
 	
-	//description preview
-	frame = CGRectMake(10, 45, 310, 40);
-	//title = [[UILabel alloc] initWithFrame:frame];
-	[description setFrame:frame];
-	[description setTextColor:[UIColor grayColor]];
-	[description setBackgroundColor:[UIColor clearColor]];
-	[description setFont:[UIFont systemFontOfSize:12]];
-	[description setNumberOfLines:1];
-	[description setText: [post description]];
-	[cv addSubview:description];
+	date.frame            = CGRectMake(5, 5, 310, 12);
+	date.textColor        = [UIColor colorWithWhite:0.39 alpha:1.0];
+	date.backgroundColor  = [UIColor clearColor];
+	date.font             = [UIFont systemFontOfSize:10];
+	date.text             = [post date];
+  date.textAlignment    = UITextAlignmentRight;
+	[cell addSubview:date];
 	
-	//placement
+	title.frame           = CGRectMake(10, 18, 295, 40);
+	title.textColor       = [UIColor whiteColor];
+	title.backgroundColor = [UIColor clearColor];
+	title.font            = [UIFont systemFontOfSize:16];
+	title.text            = [post title];
+  title.numberOfLines   = 2;
+	[cell addSubview:title];
 	
-	//self.backgroundView.backgroundColor = [UIColor blackColor];
-	//self.text = @&quot;testing&quot;;
+  /*
+	description.frame           = CGRectMake(10, 37, 310, 48);
+	description.textColor       = [UIColor colorWithWhite:0.75 alpha:1.0];
+	description.backgroundColor = [UIColor clearColor];
+	description.font            = [UIFont systemFontOfSize:12];
+	description.text            = [post description];
+	[cell addSubview:description];
+	*/
 }
--(void) dealloc
-{
+
+-(void) dealloc {
 	[title release];
 	[date release];
 	[description release];</diff>
      <filename>Classes/NewsAdditions/JFNewsPostCell.m</filename>
    </modified>
    <modified>
      <diff>@@ -11,9 +11,10 @@
 #import &quot;JFNewsPostCell.h&quot;
 
 @interface RSSReader : NSObject {
-	CXMLDocument* feed;
-	NSMutableArray* newsPosts;
+	CXMLDocument *feed;
+	NSMutableArray *newsPosts;
 }
 
 -(NSArray*)getNewsPosts;
+
 @end</diff>
      <filename>Classes/NewsAdditions/RSSReader.h</filename>
    </modified>
    <modified>
      <diff>@@ -12,8 +12,8 @@
 @implementation RSSReader
 
 NSString* shackURL = @&quot;http://feed.shacknews.com/shackfeed.xml&quot;;
--(id)init
-{	
+
+- (id)init {
 	NSURLRequest* chRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:shackURL] cachePolicy: NSURLRequestReloadIgnoringCacheData timeoutInterval:10];
 	NSError* theError;
 	NSData* response = [NSURLConnection sendSynchronousRequest:chRequest returningResponse:nil error:&amp;theError];
@@ -22,50 +22,43 @@ NSString* shackURL = @&quot;http://feed.shacknews.com/shackfeed.xml&quot;;
 	return self;
 }
 
--(NSArray*)getNewsPosts
-{
+- (NSArray*)getNewsPosts {
 	//before we do anything let's release the data
-	if(newsPosts != nil ){
-		[newsPosts release];
-	}
+	if (newsPosts != nil) [newsPosts release];
 	newsPosts = [[NSMutableArray alloc] init];
 	
-	
 	CXMLElement* root = [feed rootElement];
 	//NSLog(@&quot;root:%@, childCount: %i&quot;, [root XMLString], [root childCount]);
 	NSArray* items = [root elementsForName:@&quot;item&quot;];
 	int i,j;
 	NewsPost* post;
-	if( [items count] &gt; 0 ){
-		for( i = 0; i &lt; [items count]; i++ ){
+	if ([items count] &gt; 0){
+		for (i = 0; i &lt; [items count]; i++) {
 			CXMLElement* parent = [items objectAtIndex:i];
 			post = [[NewsPost alloc] init];
-			post.link=[[(CXMLElement*)parent attributeForName:(@&quot;about&quot;)] stringValue];
+			post.link = [[(CXMLElement*)parent attributeForName:(@&quot;about&quot;)] stringValue];
 			NSArray* children = [parent children];
-			for( j = 0; j &lt; [children count]; j++ ){
+			for(j = 0; j &lt; [children count]; j++) {
 				CXMLNode* temp = [children objectAtIndex:j];
-				if( [[temp name] isEqualToString:@&quot;title&quot;] ){
+				if ([[temp name] isEqualToString:@&quot;title&quot;]) {
 					post.title = [temp stringValue];
 				}
-				else if( [[temp name] isEqualToString:@&quot;description&quot;] ){
+				else if ([[temp name] isEqualToString:@&quot;description&quot;]) {
 					post.description = [temp stringValue];
 				}
-				else if( [[temp name] isEqualToString:@&quot;date&quot;] ){
+				else if ([[temp name] isEqualToString:@&quot;date&quot;]){
 					NSDateFormatter* format = [[NSDateFormatter alloc] initWithDateFormat:@&quot;%Y-%m-%dT%H:%M%z&quot; allowNaturalLanguage:NO];
 					NSDate* date = [format dateFromString:[temp stringValue]];
 					[format release];
 					format = [[NSDateFormatter alloc] initWithDateFormat:@&quot;%b %d, %Y %I:%M %p&quot; allowNaturalLanguage:NO];
-					//NSLog( @&quot;%f&quot;, [date timeIntervalSince1970]);
-					//NSLog(@&quot;%@&quot;, [format stringFromDate:date] );
 					post.date = [format stringFromDate:date];
 					[format release];
 				}
 			}
 			[newsPosts addObject:post];
 			[post release];
-			 }
+    }
 	}
-	//items = [root nodesForXPath:@&quot;RDF/item&quot; error:nil];
 	return newsPosts;
 }
 @end</diff>
      <filename>Classes/NewsAdditions/RSSReader.m</filename>
    </modified>
    <modified>
      <diff>@@ -22,50 +22,40 @@
 	posts = [theReader getNewsPosts];
 	
 	//hop to LC.x
-	if([[NSUserDefaults standardUserDefaults] boolForKey:@&quot;lc_startup&quot;]){
+	if ([[[NSUserDefaults standardUserDefaults] stringForKey:@&quot;startup_destination&quot;] isEqualToString:@&quot;chatty&quot;]){
 		[self latestChatty:self];
 	}
-	//NSLog(@&quot;posts count %i&quot;, [posts count] );
 }
 
 
 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
 	return 1;
 }
-- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
-{
-	return 80.0;
+- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
+	return 76.0;
 }
 
 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
-	//NSLog(@&quot;posts count %i&quot;, [posts count] );
 	return [posts count];
 }
 
 
-- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-	//NSLog(@&quot;wtf?&quot;);
-	static NSString *MyIdentifier = @&quot;NPIdentifer&quot;;
-	
-	JFNewsPostCell* cell = (JFNewsPostCell*)[tableView dequeueReusableCellWithIdentifier:MyIdentifier];
+- (UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
+	JFNewsPostCell* cell = (JFNewsPostCell*)[tableView dequeueReusableCellWithIdentifier:@&quot;storyCell&quot;];
 	if (cell == nil) {
-		cell = [[[JFNewsPostCell alloc] initWithFrame:CGRectMake( 0,0,320, 200) reuseIdentifier:MyIdentifier] autorelease];
+		cell = [[[JFNewsPostCell alloc] initWithFrame:CGRectMake(0, 0, 320, 200) reuseIdentifier:@&quot;storyCell&quot;] autorelease];
 	}
 	// Set up the cell
 	//NSLog(@&quot;setting up with title: %@&quot;, [[posts objectAtIndex:indexPath.row] title] );
 	//cell.text = [[posts objectAtIndex:indexPath.row] title];
-	[cell setColor:indexPath.row%2];
+	[cell setColor:indexPath.row % 2];
 	[cell buildCellForPost:[posts objectAtIndex:indexPath.row]];
 	return cell;
 }
 
 
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
-	 // Navigation logic
-	 //ok here we go
-	 //if( postView ) [postView release];
+ - (void)tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
 	 postView = [[ExternalWebViewController alloc] initWithNewsPost:[posts objectAtIndex:indexPath.row]];
-	 //else [postView updateForPost:[posts objectAtIndex:indexPath.row]];
 	 [[self navigationController] pushViewController:postView animated:YES];
 	 [postView release];
 	 [tableView deselectRowAtIndexPath:indexPath animated:YES];
@@ -150,17 +140,18 @@
 	[super dealloc];
 }
 
--(IBAction) refresh:(id)sender
-{
-	NSLog(@&quot;sup.&quot;);
+- (IBAction)refresh:(id)sender {
+	NSLog(@&quot;Refreshing...&quot;);
+  [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];
 	posts = [theReader getNewsPosts];
+  [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
 	[tableView reloadData];
+  NSLog(@&quot;Done.&quot;);
 }
 
--(IBAction)latestChatty:(id)sender
-{
-	if( !chattyView ) chattyView = [[ChattyViewController alloc] initWithChattyId:0];
-	if( sender == self ) [[self navigationController] pushViewController:chattyView animated:NO];
+- (IBAction)latestChatty:(id)sender {
+	if (!chattyView) chattyView = [[ChattyViewController alloc] initWithChattyId:0];
+	if (sender == self) [[self navigationController] pushViewController:chattyView animated:NO];
 	else [[self navigationController] pushViewController:chattyView animated:YES];
 	[chattyView release];
 }</diff>
      <filename>Classes/NewsAdditions/RootViewController.m</filename>
    </modified>
    <modified>
      <diff>@@ -8,7 +8,7 @@
 		&lt;string key=&quot;IBDocument.HIToolboxVersion&quot;&gt;352.00&lt;/string&gt;
 		&lt;object class=&quot;NSMutableArray&quot; key=&quot;IBDocument.EditedObjectIDs&quot;&gt;
 			&lt;bool key=&quot;EncodedWithXMLCoder&quot;&gt;YES&lt;/bool&gt;
-			&lt;integer value=&quot;3&quot;/&gt;
+			&lt;integer value=&quot;1&quot;/&gt;
 		&lt;/object&gt;
 		&lt;object class=&quot;NSArray&quot; key=&quot;IBDocument.PluginDependencies&quot;&gt;
 			&lt;bool key=&quot;EncodedWithXMLCoder&quot;&gt;YES&lt;/bool&gt;
@@ -116,7 +116,10 @@
 				&lt;/object&gt;
 			&lt;/object&gt;
 			&lt;object class=&quot;IBUIBarButtonItem&quot; id=&quot;362026655&quot;&gt;
-				&lt;string key=&quot;IBUITitle&quot;&gt;Chat&lt;/string&gt;
+				&lt;object class=&quot;NSCustomResource&quot; key=&quot;IBUIImage&quot;&gt;
+					&lt;string key=&quot;NSClassName&quot;&gt;NSImage&lt;/string&gt;
+					&lt;string key=&quot;NSResourceName&quot;&gt;ChatIcon.png&lt;/string&gt;
+				&lt;/object&gt;
 				&lt;int key=&quot;IBUIStyle&quot;&gt;1&lt;/int&gt;
 			&lt;/object&gt;
 		&lt;/object&gt;
@@ -403,7 +406,7 @@
 				&lt;/object&gt;
 			&lt;/object&gt;
 			&lt;nil key=&quot;sourceID&quot;/&gt;
-			&lt;int key=&quot;maxID&quot;&gt;30&lt;/int&gt;
+			&lt;int key=&quot;maxID&quot;&gt;33&lt;/int&gt;
 		&lt;/object&gt;
 		&lt;object class=&quot;IBClassDescriber&quot; key=&quot;IBDocument.Classes&quot;&gt;
 			&lt;object class=&quot;NSMutableArray&quot; key=&quot;referencedPartialClassDescriptions&quot;&gt;</diff>
      <filename>ExternalWebViewController.xib</filename>
    </modified>
    <modified>
      <diff>@@ -40,6 +40,7 @@
 		FA3D725A0E43FCC0002998D3 /* CXMLNode_PrivateExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = FA3D72510E43FCC0002998D3 /* CXMLNode_PrivateExtensions.m */; };
 		FA3D725B0E43FCC0002998D3 /* CXMLNode_XPathExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = FA3D72530E43FCC0002998D3 /* CXMLNode_XPathExtensions.m */; };
 		FA3D725C0E43FCC0002998D3 /* CXMLNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FA3D72550E43FCC0002998D3 /* CXMLNode.m */; };
+		FA4156FF0E653F1D00E59903 /* ChatIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = FA4156FE0E653F1D00E59903 /* ChatIcon.png */; };
 		FA461BC10E4255B500E3654D /* Feed.m in Sources */ = {isa = PBXBuildFile; fileRef = FA461BBE0E4255B500E3654D /* Feed.m */; };
 		FA461BC20E4255B500E3654D /* Post.m in Sources */ = {isa = PBXBuildFile; fileRef = FA461BC00E4255B500E3654D /* Post.m */; };
 		FA461BC80E42561900E3654D /* DetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FA461BC70E42561900E3654D /* DetailViewController.m */; };
@@ -109,6 +110,7 @@
 		FA3D72540E43FCC0002998D3 /* CXMLNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CXMLNode.h; path = TouchXML/CXMLNode.h; sourceTree = &quot;&lt;group&gt;&quot;; };
 		FA3D72550E43FCC0002998D3 /* CXMLNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CXMLNode.m; path = TouchXML/CXMLNode.m; sourceTree = &quot;&lt;group&gt;&quot;; };
 		FA3D72560E43FCC0002998D3 /* TouchXML.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TouchXML.h; path = TouchXML/TouchXML.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+		FA4156FE0E653F1D00E59903 /* ChatIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ChatIcon.png; path = Assets/ChatIcon.png; sourceTree = &quot;&lt;group&gt;&quot;; };
 		FA461BBD0E4255B500E3654D /* Feed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Feed.h; sourceTree = &quot;&lt;group&gt;&quot;; };
 		FA461BBE0E4255B500E3654D /* Feed.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Feed.m; sourceTree = &quot;&lt;group&gt;&quot;; };
 		FA461BBF0E4255B500E3654D /* Post.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Post.h; sourceTree = &quot;&lt;group&gt;&quot;; };
@@ -224,14 +226,6 @@
 		59F766220E65001A0022FE0C /* NewsAdditions */ = {
 			isa = PBXGroup;
 			children = (
-				59F7662A0E6500970022FE0C /* JFNewsPostCell.h */,
-				59F7662B0E6500970022FE0C /* NewsPost.m */,
-				59F7662C0E6500970022FE0C /* JFNewsPostCell.m */,
-				59F7662D0E6500970022FE0C /* RSSReader.h */,
-				59F7662E0E6500970022FE0C /* RootViewController.m */,
-				59F7662F0E6500970022FE0C /* RSSReader.m */,
-				59F766310E6500970022FE0C /* RootViewController.h */,
-				59F766320E6500970022FE0C /* NewsPost.h */,
 			);
 			name = NewsAdditions;
 			sourceTree = &quot;&lt;group&gt;&quot;;
@@ -239,6 +233,8 @@
 		FA02CB450E44F81B0013981F /* Views */ = {
 			isa = PBXGroup;
 			children = (
+				59F7662A0E6500970022FE0C /* JFNewsPostCell.h */,
+				59F7662C0E6500970022FE0C /* JFNewsPostCell.m */,
 				FA02CB460E44F8400013981F /* RootPostCellView.h */,
 				FA02CB470E44F8400013981F /* RootPostCellView.m */,
 			);
@@ -248,6 +244,7 @@
 		FA346BE30E4FDF6800B1DF5A /* Images */ = {
 			isa = PBXGroup;
 			children = (
+				FA4156FE0E653F1D00E59903 /* ChatIcon.png */,
 				FA2E59620E5EAD1700937274 /* DragonDrop.png */,
 				FA346C7F0E500DB100B1DF5A /* NavButtonTags.png */,
 				FA346C100E4FFDB500B1DF5A /* ButtonSend.png */,
@@ -295,6 +292,10 @@
 				FA461BC00E4255B500E3654D /* Post.m */,
 				FA8EBF840E6343D2009B657C /* Image.h */,
 				FA8EBF850E6343D2009B657C /* Image.m */,
+				59F7662D0E6500970022FE0C /* RSSReader.h */,
+				59F7662F0E6500970022FE0C /* RSSReader.m */,
+				59F766320E6500970022FE0C /* NewsPost.h */,
+				59F7662B0E6500970022FE0C /* NewsPost.m */,
 			);
 			name = Models;
 			sourceTree = &quot;&lt;group&gt;&quot;;
@@ -304,6 +305,8 @@
 			children = (
 				1D3623240D0F684500981E51 /* LatestChattyAppDelegate.h */,
 				1D3623250D0F684500981E51 /* LatestChattyAppDelegate.m */,
+				59F766310E6500970022FE0C /* RootViewController.h */,
+				59F7662E0E6500970022FE0C /* RootViewController.m */,
 				28C286DF0D94DF7D0034E888 /* ChattyViewController.h */,
 				28C286E00D94DF7D0034E888 /* ChattyViewController.m */,
 				FA461BC60E42561900E3654D /* DetailViewController.h */,
@@ -409,6 +412,7 @@
 				FA346C800E500DB100B1DF5A /* NavButtonTags.png in Resources */,
 				FA2E59630E5EAD1700937274 /* DragonDrop.png in Resources */,
 				59F7663B0E6501020022FE0C /* RootViewController.xib in Resources */,
+				FA4156FF0E653F1D00E59903 /* ChatIcon.png in Resources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};</diff>
      <filename>LatestChatty.xcodeproj/project.pbxproj</filename>
    </modified>
    <modified>
      <diff>@@ -58,10 +58,13 @@
 					&lt;object class=&quot;IBUIViewController&quot; id=&quot;619226028&quot;&gt;
 						&lt;object class=&quot;IBUINavigationItem&quot; key=&quot;IBUINavigationItem&quot; id=&quot;394667715&quot;&gt;
 							&lt;reference key=&quot;IBUINavigationBar&quot;/&gt;
-							&lt;string key=&quot;IBUITitle&quot;&gt;ShackNews&lt;/string&gt;
+							&lt;string key=&quot;IBUITitle&quot;&gt;Stories&lt;/string&gt;
 							&lt;object class=&quot;IBUIBarButtonItem&quot; key=&quot;IBUIRightBarButtonItem&quot; id=&quot;177403625&quot;&gt;
-								&lt;string key=&quot;IBUITitle&quot;&gt;LatestChatty&lt;/string&gt;
-								&lt;int key=&quot;IBUIStyle&quot;&gt;1&lt;/int&gt;
+								&lt;object class=&quot;NSCustomResource&quot; key=&quot;IBUIImage&quot;&gt;
+									&lt;string key=&quot;NSClassName&quot;&gt;NSImage&lt;/string&gt;
+									&lt;string key=&quot;NSResourceName&quot;&gt;ChatIcon.png&lt;/string&gt;
+								&lt;/object&gt;
+								&lt;int key=&quot;IBUIStyle&quot;&gt;2&lt;/int&gt;
 							&lt;/object&gt;
 						&lt;/object&gt;
 						&lt;reference key=&quot;IBUIParentViewController&quot; ref=&quot;701001926&quot;/&gt;</diff>
      <filename>MainWindow.xib</filename>
    </modified>
    <modified>
      <diff>@@ -189,7 +189,7 @@
 					&lt;string&gt;com.apple.InterfaceBuilder.IBCocoaTouchPlugin&lt;/string&gt;
 					&lt;string&gt;{{413, 223}, {320, 460}}&lt;/string&gt;
 					&lt;string&gt;com.apple.InterfaceBuilder.IBCocoaTouchPlugin&lt;/string&gt;
-					&lt;string&gt;{{1484, -34}, {350, 419}}&lt;/string&gt;
+					&lt;string&gt;{{601, -34}, {350, 419}}&lt;/string&gt;
 					&lt;string&gt;com.apple.InterfaceBuilder.IBCocoaTouchPlugin&lt;/string&gt;
 				&lt;/object&gt;
 			&lt;/object&gt;
@@ -213,7 +213,7 @@
 				&lt;/object&gt;
 			&lt;/object&gt;
 			&lt;nil key=&quot;sourceID&quot;/&gt;
-			&lt;int key=&quot;maxID&quot;&gt;25&lt;/int&gt;
+			&lt;int key=&quot;maxID&quot;&gt;26&lt;/int&gt;
 		&lt;/object&gt;
 		&lt;object class=&quot;IBClassDescriber&quot; key=&quot;IBDocument.Classes&quot;&gt;
 			&lt;object class=&quot;NSMutableArray&quot; key=&quot;referencedPartialClassDescriptions&quot;&gt;
@@ -240,7 +240,7 @@
 					&lt;/object&gt;
 					&lt;object class=&quot;IBClassDescriptionSource&quot; key=&quot;sourceIdentifier&quot;&gt;
 						&lt;string key=&quot;majorKey&quot;&gt;IBProjectSource&lt;/string&gt;
-						&lt;string key=&quot;minorKey&quot;&gt;Classes/NewsStuff/RootViewController.h&lt;/string&gt;
+						&lt;string key=&quot;minorKey&quot;&gt;Classes/NewsAdditions/RootViewController.h&lt;/string&gt;
 					&lt;/object&gt;
 				&lt;/object&gt;
 				&lt;object class=&quot;IBPartialClassDescription&quot;&gt;</diff>
      <filename>RootViewController.xib</filename>
    </modified>
    <modified>
      <diff>@@ -57,14 +57,24 @@
 			&lt;string&gt;PSGroupSpecifier&lt;/string&gt;
 		&lt;/dict&gt;
 		&lt;dict&gt;
-			&lt;key&gt;Title&lt;/key&gt;
-			&lt;string&gt;LC.x on Startup&lt;/string&gt;
+			&lt;key&gt;Values&lt;/key&gt;
+			&lt;array&gt;
+				&lt;string&gt;chatty&lt;/string&gt;
+				&lt;string&gt;stories&lt;/string&gt;
+			&lt;/array&gt;
+			&lt;key&gt;Titles&lt;/key&gt;
+			&lt;array&gt;
+				&lt;string&gt;Latest Chatty&lt;/string&gt;
+				&lt;string&gt;News Stories&lt;/string&gt;
+			&lt;/array&gt;
 			&lt;key&gt;Type&lt;/key&gt;
-			&lt;string&gt;PSToggleSwitchSpecifier&lt;/string&gt;
+			&lt;string&gt;PSMultiValueSpecifier&lt;/string&gt;
+			&lt;key&gt;Title&lt;/key&gt;
+			&lt;string&gt;Destination&lt;/string&gt;
 			&lt;key&gt;Key&lt;/key&gt;
-			&lt;string&gt;lc_startup&lt;/string&gt;
+			&lt;string&gt;startup_destination&lt;/string&gt;
 			&lt;key&gt;DefaultValue&lt;/key&gt;
-			&lt;false/&gt;
+			&lt;string&gt;stories&lt;/string&gt;
 		&lt;/dict&gt;
 		&lt;dict&gt;
 			&lt;key&gt;Title&lt;/key&gt;</diff>
      <filename>Settings.bundle/Root.plist</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>45572b45b667c4d0ab9e4ba4d91482e6d6bfc656</id>
    </parent>
  </parents>
  <author>
    <name>Alex Wayne</name>
    <email>alex@beautifulpixel.com</email>
  </author>
  <url>http://github.com/Squeegy/latest-chatty/commit/fca0eb8a67ad12ebe474d6f4e6bf4945add17270</url>
  <id>fca0eb8a67ad12ebe474d6f4e6bf4945add17270</id>
  <committed-date>2008-08-27T01:46:26-07:00</committed-date>
  <authored-date>2008-08-27T01:46:26-07:00</authored-date>
  <message>Polished up Yanks story browser features.</message>
  <tree>a39de89a3899d50f7235d4fda6400d07d44a1ce6</tree>
  <committer>
    <name>Alex Wayne</name>
    <email>alex@beautifulpixel.com</email>
  </committer>
</commit>
