From 21102d3d77a1cf6647770f0108ba36fe2f8a3546 Mon Sep 17 00:00:00 2001 From: Chris Moeller Date: Mon, 21 Oct 2013 18:27:36 -0700 Subject: [PATCH] Changed the default and included list of AppCasts --- Info.plist | 2 +- Preferences/General/AppcastArrayController.m | 27 +++++++++++--------- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/Info.plist b/Info.plist index acff25bbb..888867c18 100644 --- a/Info.plist +++ b/Info.plist @@ -955,6 +955,6 @@ NSPrincipalClass MediaKeysApplication SUFeedURL - http://kode54.net/cog/stable.xml + http://kode54.net/cog/mercury.xml diff --git a/Preferences/General/AppcastArrayController.m b/Preferences/General/AppcastArrayController.m index 50ff89fd7..468d1b659 100644 --- a/Preferences/General/AppcastArrayController.m +++ b/Preferences/General/AppcastArrayController.m @@ -15,18 +15,21 @@ { [self removeObjects:[self arrangedObjects]]; - [self addObject: - [NSDictionary dictionaryWithObjectsAndKeys: - 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://kode54.net/cog/unstable.xml", @"url",nil]]; - - [self addObject: - [NSDictionary dictionaryWithObjectsAndKeys: - NSLocalizedStringFromTableInBundle(@"Nightly", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://kode54.net/cog/nightly.xml", @"url",nil]]; + [self addObject: + [NSDictionary dictionaryWithObjectsAndKeys: + NSLocalizedStringFromTableInBundle(@"Stable", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://mamburu.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]]; + + [self addObject: + [NSDictionary dictionaryWithObjectsAndKeys: + NSLocalizedStringFromTableInBundle(@"Nightly", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://mamburu.net/cog/nightly.xml", @"url",nil]]; + + [self addObject: + [NSDictionary dictionaryWithObjectsAndKeys: + NSLocalizedStringFromTableInBundle(@"kode54.net wheneverly", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://kode54.net/cog/mercury.xml", @"url",nil]]; } - @end