From bd422d638941ee0810d435da6decb510065fa598 Mon Sep 17 00:00:00 2001 From: Arne Kiesewetter Date: Thu, 30 Jun 2022 15:41:10 +0200 Subject: [PATCH] Add CloudX.Shared to enum assemblies. Fixes #2 --- LogixVisualCustomizer/LogixVisualCustomizer.cs | 4 +++- LogixVisualCustomizer/LogixVisualCustomizer.csproj | 3 +++ LogixVisualCustomizer/Properties/AssemblyInfo.cs | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/LogixVisualCustomizer/LogixVisualCustomizer.cs b/LogixVisualCustomizer/LogixVisualCustomizer.cs index 7ad8632..20ccd5c 100644 --- a/LogixVisualCustomizer/LogixVisualCustomizer.cs +++ b/LogixVisualCustomizer/LogixVisualCustomizer.cs @@ -5,6 +5,7 @@ using System.Reflection; using System.Text; using BaseX; +using CloudX.Shared; using CodeX; using FrooxEngine; using FrooxEngine.LogiX; @@ -97,7 +98,7 @@ public class LogixVisualCustomizer : NeosMod public override string Author => "Banane9"; public override string Link => "https://github.com/Banane9/NeosLogixVisualCustomizer"; public override string Name => "LogixVisualCustomizer"; - public override string Version => "1.0.0"; + public override string Version => "1.0.1"; internal static float4 BackgroundHorizontalSlices => UseBackground ? Config.GetValue(BackgroundHorizontalSlicesKey) : defaultSlices; internal static Uri BackgroundSpriteUri => UseBackground ? Config.GetValue(BackgroundSpriteUriKey) : null; internal static float4 BackgroundVerticalSlices => UseBackground ? Config.GetValue(BackgroundVerticalSlicesKey) : defaultSlices; @@ -153,6 +154,7 @@ static LogixVisualCustomizer() NeosEnumTypes = AccessTools.GetTypesFromAssembly(typeof(EnumInput<>).Assembly) .Concat(AccessTools.GetTypesFromAssembly(typeof(float4).Assembly)) + .Concat(AccessTools.GetTypesFromAssembly(typeof(SessionAccessLevel).Assembly)) .Where(type => type.IsEnum && !type.IsNested) .ToArray(); diff --git a/LogixVisualCustomizer/LogixVisualCustomizer.csproj b/LogixVisualCustomizer/LogixVisualCustomizer.csproj index cc21138..c96ce76 100644 --- a/LogixVisualCustomizer/LogixVisualCustomizer.csproj +++ b/LogixVisualCustomizer/LogixVisualCustomizer.csproj @@ -42,6 +42,9 @@ C:\Program Files (x86)\Steam\steamapps\common\NeosVR\Neos_Data\Managed\BaseX.dll False + + C:\Program Files (x86)\Steam\steamapps\common\NeosVR\Neos_Data\Managed\CloudX.Shared.dll + C:\Program Files (x86)\Steam\steamapps\common\NeosVR\Neos_Data\Managed\CodeX.dll False diff --git a/LogixVisualCustomizer/Properties/AssemblyInfo.cs b/LogixVisualCustomizer/Properties/AssemblyInfo.cs index c788f0e..91ab018 100644 --- a/LogixVisualCustomizer/Properties/AssemblyInfo.cs +++ b/LogixVisualCustomizer/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file +[assembly: AssemblyVersion("1.0.1.0")] +[assembly: AssemblyFileVersion("1.0.1.0")] \ No newline at end of file