Skip to content

Commit

Permalink
updated first launch error message and updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanebruckert committed Sep 28, 2015
1 parent 3e0dcf9 commit 0339ecb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Shazam Scrobbler for Mac OS X.

[![Build Status](https://travis-ci.org/stephanebruckert/ShazamScrobbler.svg?branch=master)](https://travis-ci.org/stephanebruckert/ShazamScrobbler)

[ [If you would love to...](#if-you-would-love-to) • [Features](#features) • [Requirements](#requirements) • [Installation](#installation) • [How does it work?](#how-does-it-work) • [Main issues & fixes](#main-issues--fixes) • [Next](#next) • [CHANGELOG](#changelog) • [Thanks](#thanks) • [Licence](#licence) ]
[ [If you would love to...](#if-you-would-love-to) • [Features](#features) • [Requirements](#requirements) • [Installation](#installation) • [How does it work?](#how-does-it-work) • [Main issues & fixes](#main-issues--fixes) • [CHANGELOG](#changelog) • [Thanks](#thanks) • [Next](#next) • [Licence](#licence) ]

## If you would love to...

Expand Down Expand Up @@ -34,8 +34,8 @@ Works on OS X Yosemite with Shazam 1.1.1 (get it from the [App Store](https://it
## Installation

- Make sure you meet the requirements,
- Download [ShazamScrobbler.dmg from here](https://github.com/stephanebruckert/ShazamScrobbler/releases) (<500KB),
- Before using ShazamScrobbler, Shazam must have been launched at least once.
- Download [ShazamScrobbler.dmg from here](https://github.com/stephanebruckert/ShazamScrobbler/releases) (~600KB),
- Before launching ShazamScrobbler, Shazam must have tagged at least one song.

## How does it work?

Expand All @@ -51,16 +51,10 @@ It works together with the [Shazam Mac App](https://itunes.apple.com/us/app/shaz
#### Problems w/ fixes

- What to do when Shazam detects a song being scrobbled by another scrobbler?
- TODO: we check if Last.fm is already "Scrobbling from X",
- TODO: or if the song has already been scrobbled in the last 5 minutes.
- TODO: we check if Last.fm is already "Scrobbling from X",
- TODO: or if the song has already been scrobbled in the last 5 minutes.
- How to make sure that the song tagged by Shazam were played longer than 30 seconds?
- TODO: reset Shazam tags after each tag, then get the same tag again and again until we know if the song were played long enough.

## Next

We would love to have this for mobiles, we could:
- scrobble from a live concert or a bar,
- scrobble from the radio and in your car,
- TODO: reset Shazam tags after each tag, then get the same tag again and again until we know if the song were played long enough.

## CHANGELOG

Expand All @@ -77,6 +71,12 @@ We would love to have this for mobiles, we could:
- [LaunchAtLoginController](https://github.com/Mozketo/LaunchAtLoginController) by [Ben Clark-Robinson](https://github.com/Mozketo)

Feel free to contribute!

## Next

We would love to have this for mobiles, we could:
- scrobble from a live concert or a bar,
- scrobble from the radio and in your car.

## Licence

Expand Down
2 changes: 1 addition & 1 deletion ShazamScrobbler/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ - (void) loadView {
- (void) alert {
NSAlert* msgBox = [[NSAlert alloc] init];
[msgBox setAlertStyle:NSCriticalAlertStyle];
[msgBox setMessageText: @"The scrobbler could not find what Shazam is tagging.\n\nMake sure of two things:\n\t- you are using Shazam 1.1.1.\n\t- you've opened Shazam at least once.\n\nRestart the scrobbler when that's done."];
[msgBox setMessageText: @"The scrobbler could not find the Shazam library.\n\nMake sure of two things:\n\t- you are using Shazam 1.1.1,\n\t- Shazam found at least one song.\n\nRestart the scrobbler when that's done."];
[msgBox addButtonWithTitle: @"OK"];
[msgBox runModal];
}
Expand Down

0 comments on commit 0339ecb

Please sign in to comment.