From 71afa6374ee767e1aa46c2c7a9402aefa54e9e55 Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Thu, 8 Aug 2024 19:29:46 +0200 Subject: [PATCH] update minimum penumbra and glamourer versions --- MareSynchronos/Interop/Ipc/IpcCallerGlamourer.cs | 2 +- MareSynchronos/Interop/Ipc/IpcCallerPenumbra.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MareSynchronos/Interop/Ipc/IpcCallerGlamourer.cs b/MareSynchronos/Interop/Ipc/IpcCallerGlamourer.cs index 3d8a2ad..b78924e 100644 --- a/MareSynchronos/Interop/Ipc/IpcCallerGlamourer.cs +++ b/MareSynchronos/Interop/Ipc/IpcCallerGlamourer.cs @@ -70,7 +70,7 @@ public sealed class IpcCallerGlamourer : DisposableMediatorSubscriberBase, IIpcC { bool versionValid = (_pi.InstalledPlugins .FirstOrDefault(p => string.Equals(p.InternalName, "Glamourer", StringComparison.OrdinalIgnoreCase)) - ?.Version ?? new Version(0, 0, 0, 0)) >= new Version(1, 2, 3, 0); + ?.Version ?? new Version(0, 0, 0, 0)) >= new Version(1, 3, 0, 10); try { var version = _glamourerApiVersions.Invoke(); diff --git a/MareSynchronos/Interop/Ipc/IpcCallerPenumbra.cs b/MareSynchronos/Interop/Ipc/IpcCallerPenumbra.cs index e3f6ebb..aba0df0 100644 --- a/MareSynchronos/Interop/Ipc/IpcCallerPenumbra.cs +++ b/MareSynchronos/Interop/Ipc/IpcCallerPenumbra.cs @@ -104,7 +104,7 @@ public sealed class IpcCallerPenumbra : DisposableMediatorSubscriberBase, IIpcCa var penumbraVersion = (_pi.InstalledPlugins .FirstOrDefault(p => string.Equals(p.InternalName, "Penumbra", StringComparison.OrdinalIgnoreCase)) ?.Version ?? new Version(0, 0, 0, 0)); - penumbraAvailable = penumbraVersion >= new Version(1, 1, 0, 0); + penumbraAvailable = penumbraVersion >= new Version(1, 2, 0, 22); try { penumbraAvailable &= _penumbraEnabled.Invoke();