Skip to content
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.

Commit

Permalink
Version bump, prepare for upcoming rename to radiant-player-mac
Browse files Browse the repository at this point in the history
  • Loading branch information
kbhomes committed Apr 12, 2014
1 parent 23c9806 commit 8f8d714
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion google-music-mac/Utilities.m
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,15 @@ + (NSImage *)templateImage:(NSString *)templateName withColor:(NSColor *)tint

+ (NSString *)latestVersionFromGithub
{
NSURL *url = [NSURL URLWithString:@"https://api.github.com/repos/kbhomes/google-music-mac/releases"];
NSURL *url = [NSURL URLWithString:@"https://api.github.com/repos/kbhomes/radiant-player-mac/releases"];
NSData *data = [NSData dataWithContentsOfURL:url];

if (!data)
{
url = [NSURL URLWithString:@"https://api.github.com/repos/kbhomes/google-music-mac/releases"];
data = [NSData dataWithContentsOfURL:url];
}

if (data)
{
id parsed = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
Expand Down
2 changes: 1 addition & 1 deletion google-music-mac/info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.2</string>
<string>1.1.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>LSApplicationCategoryType</key>
Expand Down

0 comments on commit 8f8d714

Please sign in to comment.