diff --git a/ZuneModCore/Mods/VideoSyncMod.cs b/ZuneModCore/Mods/VideoSyncMod.cs index 4392c69..13e9012 100644 --- a/ZuneModCore/Mods/VideoSyncMod.cs +++ b/ZuneModCore/Mods/VideoSyncMod.cs @@ -12,10 +12,10 @@ public class VideoSyncModFactory : DIModFactoryBase private const string Description = "Resolves \"Error C00D11CD\" when attempting to sync video to a Zune device using Windows 10 1607 (Anniversary Update) or newer"; - private const string Author = "sylvathemoth"; + private const string Author = "ส็็็Codix#4833 & sylvathemoth"; public override ModMetadata Metadata => new(nameof(VideoSyncMod), "Fix Video Sync", - Description, Author, new(2, 0)); + Description, Author, new(2, 1)); } public class VideoSyncMod(ModMetadata metadata, IModCoreConfig modConfig) : Mod(metadata) @@ -26,6 +26,11 @@ public class VideoSyncMod(ModMetadata metadata, IModCoreConfig modConfig) : Mod( public override async Task Apply() { + if (OperatingSystem.IsWindowsVersionAtLeast(10, 0, 14393)) + { + return "This version of Windows does not require a fix for syncing video."; + } + // Verify that ZuneEncEng.dll exists FileInfo zeeDllInfo = new(Path.Combine(ZuneInstallDir, "ZuneEncEng.dll")); if (!zeeDllInfo.Exists) diff --git a/ZuneModCore/Mods/WebservicesMod.cs b/ZuneModCore/Mods/WebservicesMod.cs index 0d3f4d3..0944ab4 100644 --- a/ZuneModCore/Mods/WebservicesMod.cs +++ b/ZuneModCore/Mods/WebservicesMod.cs @@ -12,20 +12,20 @@ using System.Text; using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; +using ZuneModCore.Services; using static ZuneModCore.Mods.FeaturesOverrideMod; namespace ZuneModCore.Mods; public class WebservicesModFactory : DIModFactoryBase { - private const string Description = "Partially restores online features such as the Marketplace by patching the Zune desktop software " + "to use the community's recreation of Microsoft's Zune servers at zunes.me (instead of zune.net)."; private const string Author = "Joshua \"Yoshi\" Askharoun"; public override ModMetadata Metadata => new(nameof(WebservicesMod), "Community Webservices", - Description, Author, new(1, 1)); + Description, Author, new(1, 2)); } public partial class WebservicesMod(ModMetadata metadata, IModCoreConfig modConfig) : Mod(metadata), IAsyncInit