Skip to content

Commit a79134c

Browse files
committed
Rollback MbidLocatorMod metadata
1 parent 6c0eec3 commit a79134c

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

ZuneModCore/Mods/MbidLocatorMod.cs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ public class MbidLocatorModFactory : DIModFactoryBase<MbidLocatorMod>
1212
public override ModMetadata Metadata { get; } = new()
1313
{
1414
Id = nameof(MbidLocatorMod),
15-
Title = "Music Tag Fixer",
15+
Title = "MBID Locator Mod",
1616
Author = "Joshua \"Yoshi\" Askharoun",
17-
Version = new(2, 0),
18-
Description = "Fixes music tags to improve Zune compatibility and enable Marketplace features.",
19-
ExtendedDescription = "If your library is tagged with MusicBrainz Picard, " +
17+
Version = new(1, 1),
18+
Description = "Edits music tags to associate tracks in your library with the Marketplace.",
19+
ExtendedDescription = "Currently supports MP3 and WAV files.\r\n" +
20+
"When your library is tagged with MusicBrainz Picard or mp3tag's MusicBrainz source, " +
2021
"this places MBIDs where Zune can use them for Marketplace features.",
2122
};
2223
}
@@ -28,7 +29,7 @@ public class MbidLocatorMod(ModMetadata metadata) : Mod(metadata)
2829
public const string ZUNE_MEDIA_ID_NAME = "ZuneMediaID";
2930
public const string ZUNE_COLLECTION_ID_NAME = "ZuneCollectionID";
3031

31-
private static readonly string[] KNOWN_EXTS = [".mp3", ".mp4", ".m4a", ".wav"];
32+
private static readonly string[] KNOWN_EXTS = [".mp3", ".wav"];
3233

3334
public override AbstractUICollection? GetDefaultOptionsUI()
3435
{

0 commit comments

Comments
 (0)