1
1
mirror of https://github.com/danbee/persephone synced 2025-03-04 08:39:11 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
50321219b2
Bump version to 0.15.2-alpha 2020-02-13 10:36:13 -05:00
59d09f70fe
Fix bug showing duplicate albums
Albums with tracks tagged with different years were showing one instance
of the album for each year present in the tracks. This should fix that.
2020-02-13 10:35:15 -05:00
2 changed files with 3 additions and 4 deletions

View File

@ -1188,7 +1188,7 @@
"$(inherited)",
"$(PROJECT_DIR)/libmpdclient/output",
);
MARKETING_VERSION = "0.15.1-alpha";
MARKETING_VERSION = "0.15.2-alpha";
PRODUCT_BUNDLE_IDENTIFIER = me.danbarber.Persephone;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
@ -1217,7 +1217,7 @@
"$(inherited)",
"$(PROJECT_DIR)/libmpdclient/output",
);
MARKETING_VERSION = "0.15.1-alpha";
MARKETING_VERSION = "0.15.2-alpha";
PRODUCT_BUNDLE_IDENTIFIER = me.danbarber.Persephone;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";

View File

@ -17,8 +17,7 @@ extension MPDClient {
static func == (lhs: MPDAlbum, rhs: MPDAlbum) -> Bool {
return lhs.title == rhs.title &&
lhs.artist == rhs.artist &&
lhs.date == rhs.date
lhs.artist == rhs.artist
}
}
}