2007-05-19 15:36:47 +00:00
|
|
|
//
|
|
|
|
// AppcastArrayController.m
|
|
|
|
// General
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 5/19/07.
|
|
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "AppcastArrayController.h"
|
|
|
|
|
|
|
|
|
|
|
|
@implementation AppcastArrayController
|
|
|
|
|
|
|
|
- (void)awakeFromNib
|
|
|
|
{
|
|
|
|
[self removeObjects:[self arrangedObjects]];
|
|
|
|
|
2016-07-16 05:06:37 +00:00
|
|
|
//[self addObject:
|
|
|
|
// [NSDictionary dictionaryWithObjectsAndKeys:
|
|
|
|
// NSLocalizedStringFromTableInBundle(@"Stable", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://mamburu.net/cog/stable.xml", @"url",nil]];
|
|
|
|
|
2013-10-22 01:27:36 +00:00
|
|
|
// [self addObject:
|
|
|
|
// [NSDictionary dictionaryWithObjectsAndKeys:
|
|
|
|
// NSLocalizedStringFromTableInBundle(@"Unstable", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://cogx.org/appcast/unstable.xml", @"url",nil]];
|
|
|
|
|
2016-07-16 05:06:37 +00:00
|
|
|
//[self addObject:
|
|
|
|
// [NSDictionary dictionaryWithObjectsAndKeys:
|
|
|
|
// NSLocalizedStringFromTableInBundle(@"Nightly", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"http://mamburu.net/cog/nightly.xml", @"url",nil]];
|
2007-05-19 15:36:47 +00:00
|
|
|
|
2013-10-22 01:27:36 +00:00
|
|
|
[self addObject:
|
|
|
|
[NSDictionary dictionaryWithObjectsAndKeys:
|
2016-07-16 05:51:49 +00:00
|
|
|
NSLocalizedStringFromTableInBundle(@"losno.co wheneverly", nil, [NSBundle bundleForClass:[self class]], @"") , @"name", @"https://f.losno.co/cog/mercury.xml", @"url",nil]];
|
2013-10-22 01:27:36 +00:00
|
|
|
}
|
2007-05-19 15:36:47 +00:00
|
|
|
|
|
|
|
@end
|