Forgot to add VOX music player to the README.

Also, capitalized "VOX".
This commit is contained in:
Kyle Neideck 2016-04-18 00:49:25 +10:00
parent 6d0fde1780
commit 6b0ca53304
2 changed files with 5 additions and 4 deletions

View file

@ -37,7 +37,7 @@
BGM_MUSIC_PLAYER_DEFAULT_LOAD_METHOD
+ (NSString*) name {
return @"Vox";
return @"VOX";
}
- (CFNumberRef) pid {
@ -61,7 +61,7 @@ BGM_MUSIC_PLAYER_DEFAULT_LOAD_METHOD
BOOL wasPlaying = [self isPlaying];
if (wasPlaying) {
DebugMsg("BGMVox::pause: Pausing Vox");
DebugMsg("BGMVox::pause: Pausing VOX");
[self.vox pause];
}
@ -73,7 +73,7 @@ BGM_MUSIC_PLAYER_DEFAULT_LOAD_METHOD
BOOL wasPaused = [self isPaused];
if (wasPaused) {
DebugMsg("BGMVox::unpause: Unpausing Vox");
DebugMsg("BGMVox::unpause: Unpausing VOX");
[self.vox playpause];
}

View file

@ -25,7 +25,8 @@ Background Music can pause your music player app when other audio starts playing
that when I'm listening to music and pause it to watch a video or something I always forget to unpause it afterwards. So
this keeps me from wearing headphones for hours listening to nothing.
So far only iTunes, Spotify and VLC are supported, but adding support for a music player should only take a few minutes
So far iTunes, [Spotify](https://www.spotify.com), [VLC](https://www.videolan.org/vlc/) and
[VOX](http://coppertino.com/vox/mac) are supported, but adding support for a music player should only take a few minutes
(see `BGMMusicPlayer.h`). If you don't know how to program, or just don't feel like it, create an issue and I'll try to
add it for you.