From 1aedb01c6b43294321cbb9cc480b5d54178d9b9e Mon Sep 17 00:00:00 2001 From: Chris Moeller Date: Fri, 11 Oct 2013 01:30:49 -0700 Subject: [PATCH] Changed feed and feedback URLs --- Application/AppController.m | 2 +- Feedback/FeedbackSocket.m | 2 +- Preferences/General/AppcastArrayController.m | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Application/AppController.m b/Application/AppController.m index 5e7e67550..d7d5d9c55 100644 --- a/Application/AppController.m +++ b/Application/AppController.m @@ -393,7 +393,7 @@ increase/decrease as long as the user holds the left/right, plus/minus button */ [userDefaultsValuesDict setObject:[NSNumber numberWithBool:YES] forKey:@"remoteEnabled"]; [userDefaultsValuesDict setObject:[NSNumber numberWithBool:YES] forKey:@"remoteOnlyOnActive"]; - [userDefaultsValuesDict setObject:@"http://cogx.org/appcast/stable.xml" forKey:@"SUFeedURL"]; + [userDefaultsValuesDict setObject:@"http://kode54.net/cog/stable.xml" forKey:@"SUFeedURL"]; [userDefaultsValuesDict setObject:@"clearAndPlay" forKey:@"openingFilesBehavior"]; diff --git a/Feedback/FeedbackSocket.m b/Feedback/FeedbackSocket.m index 33994a663..3dec96d32 100644 --- a/Feedback/FeedbackSocket.m +++ b/Feedback/FeedbackSocket.m @@ -28,7 +28,7 @@ NSString *encodeForURL(NSString *s) NSData *postData = [postString dataUsingEncoding:NSASCIIStringEncoding]; - NSURL *url = [NSURL URLWithString:@"http://cogx.org/feedback.php"]; + NSURL *url = [NSURL URLWithString:@"http://kode54.net/cog/feedback.php"]; NSMutableURLRequest *post = [NSMutableURLRequest requestWithURL:url]; [post addValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"]; diff --git a/Preferences/General/AppcastArrayController.m b/Preferences/General/AppcastArrayController.m index 0620ab860..50ff89fd7 100644 --- a/Preferences/General/AppcastArrayController.m +++ b/Preferences/General/AppcastArrayController.m @@ -17,15 +17,15 @@ [self addObject: [NSDictionary dictionaryWithObjectsAndKeys: - NSLocalizedStringFromTableInBundle(@"Stable", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://cogx.org/appcast/stable.xml", @"url",nil]]; + NSLocalizedStringFromTableInBundle(@"Stable", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://kode54.net/cog/stable.xml", @"url",nil]]; [self addObject: [NSDictionary dictionaryWithObjectsAndKeys: - NSLocalizedStringFromTableInBundle(@"Unstable", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://cogx.org/appcast/unstable.xml", @"url",nil]]; + NSLocalizedStringFromTableInBundle(@"Unstable", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://kode54.net/cog/unstable.xml", @"url",nil]]; [self addObject: [NSDictionary dictionaryWithObjectsAndKeys: - NSLocalizedStringFromTableInBundle(@"Nightly", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://cogx.org/appcast/nightly.xml", @"url",nil]]; + NSLocalizedStringFromTableInBundle(@"Nightly", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://kode54.net/cog/nightly.xml", @"url",nil]]; }