2007-05-19 11:36:47 -04:00
|
|
|
//
|
|
|
|
// AppcastArrayController.m
|
|
|
|
// General
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 5/19/07.
|
|
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "AppcastArrayController.h"
|
|
|
|
|
|
|
|
@implementation AppcastArrayController
|
|
|
|
|
2022-02-07 02:49:27 -03:00
|
|
|
- (void)awakeFromNib {
|
2007-05-19 11:36:47 -04:00
|
|
|
[self removeObjects:[self arrangedObjects]];
|
|
|
|
|
2022-02-07 02:49:27 -03:00
|
|
|
//[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:
|
2022-02-09 00:42:03 -03:00
|
|
|
@{@"name": NSLocalizedStringFromTableInBundle(@"cog.losno.co wheneverly", nil, [NSBundle bundleForClass:[self class]], @""), @"url": @"https://cogcdn.cog.losno.co/mercury.xml"}];
|
2013-10-21 22:27:36 -03:00
|
|
|
}
|
2007-05-19 11:36:47 -04:00
|
|
|
|
|
|
|
@end
|