mirror of
https://github.com/kyleneideck/BackgroundMusic
synced 2024-11-10 06:34:22 +00:00
Forgot to add VOX music player to the README.
Also, capitalized "VOX".
This commit is contained in:
parent
6d0fde1780
commit
6b0ca53304
2 changed files with 5 additions and 4 deletions
|
@ -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];
|
||||
}
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue