From a79134ca3ee87ad925c3d16a8db82e2dc446e30e Mon Sep 17 00:00:00 2001 From: Yoshi Askharoun Date: Thu, 11 Sep 2025 09:53:28 -0400 Subject: [PATCH] Rollback MbidLocatorMod metadata --- ZuneModCore/Mods/MbidLocatorMod.cs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/ZuneModCore/Mods/MbidLocatorMod.cs b/ZuneModCore/Mods/MbidLocatorMod.cs index 9520f66..e511b3c 100644 --- a/ZuneModCore/Mods/MbidLocatorMod.cs +++ b/ZuneModCore/Mods/MbidLocatorMod.cs @@ -12,11 +12,12 @@ public class MbidLocatorModFactory : DIModFactoryBase public override ModMetadata Metadata { get; } = new() { Id = nameof(MbidLocatorMod), - Title = "Music Tag Fixer", + Title = "MBID Locator Mod", Author = "Joshua \"Yoshi\" Askharoun", - Version = new(2, 0), - Description = "Fixes music tags to improve Zune compatibility and enable Marketplace features.", - ExtendedDescription = "If your library is tagged with MusicBrainz Picard, " + + Version = new(1, 1), + Description = "Edits music tags to associate tracks in your library with the Marketplace.", + ExtendedDescription = "Currently supports MP3 and WAV files.\r\n" + + "When your library is tagged with MusicBrainz Picard or mp3tag's MusicBrainz source, " + "this places MBIDs where Zune can use them for Marketplace features.", }; } @@ -28,7 +29,7 @@ public class MbidLocatorMod(ModMetadata metadata) : Mod(metadata) public const string ZUNE_MEDIA_ID_NAME = "ZuneMediaID"; public const string ZUNE_COLLECTION_ID_NAME = "ZuneCollectionID"; - private static readonly string[] KNOWN_EXTS = [".mp3", ".mp4", ".m4a", ".wav"]; + private static readonly string[] KNOWN_EXTS = [".mp3", ".wav"]; public override AbstractUICollection? GetDefaultOptionsUI() {