From a5159401e66c5a7bc84672f387e8068ba050240c Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Sun, 5 Mar 2023 19:26:08 +0100 Subject: [PATCH 1/2] Updated RGB.NET to 2.0.0-prerelease.17 --- src/Artemis.Core/Artemis.Core.csproj | 6 +++--- src/Artemis.UI.Shared/Artemis.UI.Shared.csproj | 2 +- src/Artemis.UI/Artemis.UI.csproj | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Artemis.Core/Artemis.Core.csproj b/src/Artemis.Core/Artemis.Core.csproj index ee57c4987..67138efdd 100644 --- a/src/Artemis.Core/Artemis.Core.csproj +++ b/src/Artemis.Core/Artemis.Core.csproj @@ -42,9 +42,9 @@ - - - + + + diff --git a/src/Artemis.UI.Shared/Artemis.UI.Shared.csproj b/src/Artemis.UI.Shared/Artemis.UI.Shared.csproj index c8f440c29..047d9906f 100644 --- a/src/Artemis.UI.Shared/Artemis.UI.Shared.csproj +++ b/src/Artemis.UI.Shared/Artemis.UI.Shared.csproj @@ -20,7 +20,7 @@ - + diff --git a/src/Artemis.UI/Artemis.UI.csproj b/src/Artemis.UI/Artemis.UI.csproj index a9446ed2c..0773eb19f 100644 --- a/src/Artemis.UI/Artemis.UI.csproj +++ b/src/Artemis.UI/Artemis.UI.csproj @@ -31,8 +31,8 @@ - - + + From 52d53f1d233394c9ebf844f06d39d0c78eb7de29 Mon Sep 17 00:00:00 2001 From: Robert Date: Mon, 6 Mar 2023 22:01:08 +0100 Subject: [PATCH 2/2] Plugins - Clarify lock file exception --- src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs b/src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs index e601e6e26..f1b5d2e71 100644 --- a/src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs +++ b/src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs @@ -14,7 +14,7 @@ public class ArtemisPluginLockException : Exception private static string CreateExceptionMessage(Exception? innerException) { return innerException != null - ? "Found a lock file, skipping load, see inner exception for last known exception." - : "Found a lock file, skipping load."; + ? "Found a lock file, skipping automatic load, see inner exception for last known exception. Please manually re-enable the plugin." + : "Found a lock file, skipping automatic load. Please manually re-enable the plugin."; } } \ No newline at end of file