mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
Compare commits
No commits in common. "b9d1c9efec03866a6c3ff891f14e15318447953a" and "770a01c604f19c733c40812ec1eaf7b069bf9fc9" have entirely different histories.
b9d1c9efec
...
770a01c604
@ -1221,7 +1221,7 @@
|
||||
"$(inherited)",
|
||||
"$(PROJECT_DIR)/libmpdclient/output",
|
||||
);
|
||||
MARKETING_VERSION = "0.16.1-alpha";
|
||||
MARKETING_VERSION = "0.16.0-alpha";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = me.danbarber.Persephone;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
@ -1253,7 +1253,7 @@
|
||||
"$(inherited)",
|
||||
"$(PROJECT_DIR)/libmpdclient/output",
|
||||
);
|
||||
MARKETING_VERSION = "0.16.1-alpha";
|
||||
MARKETING_VERSION = "0.16.0-alpha";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = me.danbarber.Persephone;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
|
||||
@ -111,9 +111,7 @@ extension MPDClient {
|
||||
func albumSongs(for album: MPDAlbum, callback: ([MPDSong]) -> Void) {
|
||||
guard isConnected else { return }
|
||||
|
||||
let songs = searchSongs(
|
||||
[MPDTag.album: album.title, MPDTag.albumArtist: album.artist]
|
||||
)
|
||||
let songs = searchSongs([MPDTag.album: album.title, MPDTag.albumArtist: album.artist])
|
||||
|
||||
callback(songs)
|
||||
}
|
||||
|
||||
@ -112,9 +112,7 @@ extension MPDClient {
|
||||
}
|
||||
|
||||
func sendAddAlbumToQueue(album: MPDAlbum, at queuePos: Int) {
|
||||
let songs = searchSongs(
|
||||
[MPDTag.album: album.title, MPDTag.albumArtist: album.artist]
|
||||
)
|
||||
let songs = searchSongs([MPDTag.album: album.title, MPDTag.artist: album.artist])
|
||||
|
||||
var insertPos = UInt32(queuePos)
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user