Skip to content

Commit

Permalink
Fix links in niceplayer
Browse files Browse the repository at this point in the history
  • Loading branch information
jtuley committed Sep 8, 2008
1 parent 031ffd0 commit edb6335
Show file tree
Hide file tree
Showing 6 changed files with 220 additions and 191 deletions.
21 changes: 16 additions & 5 deletions AppCast/NicePlayerAppCast.xml
Expand Up @@ -2,15 +2,26 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" version="2.0">
<channel>
<title>NicePlayer AppCast</title>
<link>http://niceplayer.sf.net</link>
<link>http://jay.tuley.name/build/</link>
<description>NicePlayer AppCast</description>
<generator>Feeder 1.4.9.v2 http://reinventedsoftware.com/feeder/</generator>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<language>en</language>
<pubDate>Fri, 16 Nov 2007 16:28:51 -0600</pubDate>
<lastBuildDate>Fri, 16 Nov 2007 16:28:51 -0600</lastBuildDate>

<atom:link href="http://niceplayer.sf.net/update/NicePlayerAppCast.xml" rel="self" type="application/rss+xml"/>
<pubDate>Fri, 22 Aug 2008 09:43:47 -0500</pubDate>
<lastBuildDate>Fri, 22 Aug 2008 09:43:47 -0500</lastBuildDate>
<item>
<title>NicePlayer 0.96.2</title>
<link>http://code.google.com/p/niceplaer</link>
<description><![CDATA[<p>Version 0.96.2 (v581)
<br />• Fix for lack of folder expansion when dragging directly to the playlist
<br />• QuickLook support for mkv and divx file extensions
<br />• m4v file extension document association added.
<br />• NicePlayer Apple Remote code has been updated for Leopard
<br />• NicePlayer can now be set on every screen in Leopard Spaces</p>]]></description>
<pubDate>Fri, 22 Aug 2008 09:43:24 -0500</pubDate>
<enclosure url="http://niceplayer.googlecode.com/files/NicePlayer_0.96.2.dmg" length="3444481" type="application/x-diskcopy" sparkle:version="581"/>
<guid isPermaLink="false">niceplayer-0962</guid>
</item>
<item>
<title>NicePlayer 0.96.1</title>
<link>http://niceplayer.sf.net</link>
Expand Down
19 changes: 15 additions & 4 deletions AppCast/NicePlayerPreRelease.xml
Expand Up @@ -7,10 +7,21 @@
<generator>Feeder 1.4.9.v2 http://reinventedsoftware.com/feeder/</generator>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<language>en</language>
<pubDate>Tue, 10 Jun 2008 22:10:54 -0500</pubDate>
<lastBuildDate>Tue, 10 Jun 2008 22:10:54 -0500</lastBuildDate>

<atom:link href="http://jay.tuley.name/build/update.php?app=NicePlayer" rel="self" type="application/rss+xml"/>
<pubDate>Sun, 17 Aug 2008 11:41:27 -0500</pubDate>
<lastBuildDate>Sun, 17 Aug 2008 11:41:27 -0500</lastBuildDate>
<item>
<title>NicePlayer 0.96.2 Preview (v581) </title>
<link>http://jay.tuley.name/build/</link>
<description><![CDATA[<p>Version 0.96.2 Preview (v581)
<br /> • Fix for PPC bug introduced 579.
<br /> • Fix for lack of folder expansion when dragging directly to the playlist</p>
<p>Help Request for Previewers:
<br /> • Any show stopping bugs, this is a release candidate.</p>]]></description>
<pubDate>Sun, 17 Aug 2008 11:19:58 -0500</pubDate>
<enclosure url="http://$$/NicePlayer/NicePlayer_Preview_581.zip!!" length="2534508" type="application/zip" sparkle:version="581"/>
<guid isPermaLink="false">niceplayer-0962-preview-v580</guid>
</item>
<item>
<title>NicePlayer 0.96.2 Preview (v579) </title>
<link>http://jay.tuley.name/build/</link>
Expand Down
12 changes: 6 additions & 6 deletions Classes/NPApplication.m
Expand Up @@ -289,37 +289,37 @@ -(void)application:(NSApplication *)sender openFiles:(NSArray *)filenames
-(IBAction)visitNicePlayerWebSite:(id)sender
{
[[NSWorkspace sharedWorkspace] openURL:
[NSURL URLWithString:@"http://niceplayer.sourceforge.net/"]];
[NSURL URLWithString:@"http://code.google.com/p/niceplayer/"]];
}

-(IBAction)visitProjectRoadmap:(id)sender
{
[[NSWorkspace sharedWorkspace] openURL:
[NSURL URLWithString:@"http://charon.laya.com/niceplayer/trac.cgi/roadmap"]];
[NSURL URLWithString:@"http://code.google.com/p/niceplayer/issues/list"]];
}

-(IBAction)donateToNicePlayer:(id)sender
{
[[NSWorkspace sharedWorkspace] openURL:
[NSURL URLWithString:@"http://sourceforge.net/donate/index.php?group_id=170266"]];
[NSURL URLWithString:@"http://code.google.com/p/niceplayer/wiki/Donations"]];
}

-(IBAction)onlineSupportWikiFAQ:(id)sender
{
[[NSWorkspace sharedWorkspace] openURL:
[NSURL URLWithString:@"http://charon.laya.com/niceplayer/trac.cgi/wiki/"]];
[NSURL URLWithString:@"http://code.google.com/p/niceplayer/w/list"]];
}

-(IBAction)submitBug:(id)sender
{
[[NSWorkspace sharedWorkspace] openURL:
[NSURL URLWithString:@"http://charon.laya.com/niceplayer/trac.cgi/newticket"]];
[NSURL URLWithString:@"http://code.google.com/p/niceplayer/issues/list"]];
}

-(IBAction)featureRequest:(id)sender
{
[[NSWorkspace sharedWorkspace] openURL:
[NSURL URLWithString:@"http://charon.laya.com/niceplayer/trac.cgi/newticket"]];
[NSURL URLWithString:@"http://code.google.com/p/niceplayer/issues/list"]];
}

-(IBAction)disccusionGroup:(id)sender
Expand Down

0 comments on commit edb6335

Please sign in to comment.