From 2bd94e2fa81bbe56d64ee403774248b93ba828b5 Mon Sep 17 00:00:00 2001 From: gendelo3 Date: Sat, 19 Aug 2023 20:14:28 +0200 Subject: [PATCH] Update to v4.3.4 --- README.md | 12 ++++ TheOtherRoles/Main.cs | 4 +- TheOtherRoles/Modules/BepInExUpdater.cs | 4 +- TheOtherRoles/Modules/CustomHats.cs | 62 ++++++++++++++++++-- TheOtherRoles/Modules/ModUpdater.cs | 9 +-- TheOtherRoles/Patches/RoleAssignmentPatch.cs | 2 +- TheOtherRoles/RPC.cs | 2 +- TheOtherRoles/SoundEffectsManager.cs | 6 +- TheOtherRoles/SubmergedCompatibility.cs | 33 ++++------- TheOtherRoles/TheOtherRoles.csproj | 6 +- TheOtherRoles/packages.lock.json | 52 ++++++++-------- nuget.config | 4 +- 12 files changed, 128 insertions(+), 68 deletions(-) diff --git a/README.md b/README.md index d941df6d7..9550c3a52 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ The [Role Assignment](#role-assignment) sections explains how the roles are bein # Releases | Among Us - Version| Mod Version | Link | |----------|-------------|-----------------| +| 2023.07.12s| v4.3.4| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v4.3.4/TheOtherRoles.zip) | 2023.07.12s| v4.3.3| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v4.3.3/TheOtherRoles.zip) | 2023.03.28s| v4.3.2| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v4.3.2/TheOtherRoles.zip)
@@ -124,6 +125,13 @@ The [Role Assignment](#role-assignment) sections explains how the roles are bein
Click to show the Changelog +**Version 4.3.4** +- Updated BepInEx dependency to 671 +- Fixed compatibility to Submerged (not thouroughly tested) +- Fixed a bug where the death reason of a guessed shifter was incorrectly displayed as "shifted xy" +- Make it possible to disable the Mod-Updater (see [details](#gcerror) ), to circumvent a crash at startup with a GC-Error +- Fixed the hats in freeplay partially + **Version 4.3.3** - Updated to Among Us version 2023.07.12 - Fixed an issue where the swap icon of a swapper guesser would be in front of the witch icon on a spelled player @@ -2071,6 +2079,10 @@ Each Hunter action or finished Crew task will lower the timer by a configurable | Enable Sabotages | - | Time The Hunter Needs To Wait | - +## GCERROR +If the error message "Fatal Error in GC - Collecting from unknown thread" stops you from playing the game, you can now disable the mod-updater, which causes this error. +In order to do this, create a file called `noupdater.txt` in your modded Among Us folder. + # License TheOtherRolesAU/TheOtherRoles is licensed under the diff --git a/TheOtherRoles/Main.cs b/TheOtherRoles/Main.cs index e7f90f4d8..fed9777fb 100644 --- a/TheOtherRoles/Main.cs +++ b/TheOtherRoles/Main.cs @@ -31,7 +31,7 @@ namespace TheOtherRoles public class TheOtherRolesPlugin : BasePlugin { public const string Id = "me.eisbison.theotherroles"; - public const string VersionString = "4.3.3"; + public const string VersionString = "4.3.4"; public static uint betaDays = 0; // amount of days for the build to be usable (0 for infinite!) public static Version Version = Version.Parse(VersionString); @@ -125,6 +125,8 @@ public override void Load() { SubmergedCompatibility.Initialize(); AddComponent(); Modules.MainMenuPatch.addSceneChangeCallbacks(); + + TheOtherRolesPlugin.Logger.LogInfo("Loading TOR completed!"); } public static Sprite GetModStamp() { if (ModStamp) return ModStamp; diff --git a/TheOtherRoles/Modules/BepInExUpdater.cs b/TheOtherRoles/Modules/BepInExUpdater.cs index cff52ed32..9702678dc 100644 --- a/TheOtherRoles/Modules/BepInExUpdater.cs +++ b/TheOtherRoles/Modules/BepInExUpdater.cs @@ -19,8 +19,8 @@ namespace TheOtherRoles.Modules; public class BepInExUpdater : MonoBehaviour { - public const string RequiredBepInExVersion = "6.0.0-be.670+42a6727370c2b9356fc043ea601410540a8b4042"; - public const string BepInExDownloadURL = "https://builds.bepinex.dev/projects/bepinex_be/670/BepInEx-Unity.IL2CPP-win-x86-6.0.0-be.670%2B42a6727.zip"; + public const string RequiredBepInExVersion = "6.0.0-be.671+9caf61dca07043beae57b0771f6a5283aa02436b"; + public const string BepInExDownloadURL = "https://builds.bepinex.dev/projects/bepinex_be/671/BepInEx-Unity.IL2CPP-win-x86-6.0.0-be.671%2B9caf61d.zip"; public static bool UpdateRequired => Paths.BepInExVersion.ToString() != RequiredBepInExVersion; public void Awake() diff --git a/TheOtherRoles/Modules/CustomHats.cs b/TheOtherRoles/Modules/CustomHats.cs index 030723d76..559bd9b7f 100644 --- a/TheOtherRoles/Modules/CustomHats.cs +++ b/TheOtherRoles/Modules/CustomHats.cs @@ -174,7 +174,7 @@ private static HatData CreateHatBehaviour(CustomHat ch, bool fromDisk = false, b } else { CustomHatRegistry.Add(hat.name, extend); } - CustomHatViewDatas.Add(hat.name, viewdata); + CustomHatViewDatas.TryAdd(hat.name, viewdata); var assetRef = new AssetReference(viewdata.Pointer); hat.ViewDataRef = assetRef; @@ -256,6 +256,7 @@ private static void Postfix(PlayerPhysics __instance) { [HarmonyPatch] private static class FreeplayHatTestingPatches { + [HarmonyPriority(Priority.High)] [HarmonyPatch(typeof(HatParent), nameof(HatParent.SetHat), typeof(int))] private static class HatParentSetHatPatchColor { static void Prefix(HatParent __instance) { @@ -295,7 +296,7 @@ static bool Prefix(HatParent __instance, HatData hat, int color) if (hats.Count > 0) { __instance.Hat = CreateHatBehaviour(hats[0], true, true); - __instance.hatDataAsset = __instance.Hat.CreateAddressableAsset(); + __instance.Hat.CreateAddressableAsset(); } } catch (System.Exception e) @@ -314,7 +315,7 @@ static bool Prefix(HatParent __instance, HatData hat, int color) [HarmonyPatch(typeof(HatParent), nameof(HatParent.SetHat), typeof(int))] public class SetHatPatch { public static bool Prefix(HatParent __instance, int color) { - if (!CustomHatRegistry.ContainsKey(__instance.Hat.name)) return true; + if (!CustomHatViewDatas.ContainsKey(__instance.Hat.name)) return true; __instance.hatDataAsset = null; __instance.PopulateFromHatViewData(); __instance.SetMaterialColor(color); @@ -385,6 +386,47 @@ public static bool Prefix(HatParent __instance) { } } + [HarmonyPatch(typeof(HatParent), nameof(HatParent.LateUpdate))] + public static class HatParentLateUpdatePatch { + public static bool Prefix(HatParent __instance) { + return false; + if (__instance.Parent) { + HatViewData hatViewData; + try { + hatViewData = __instance.hatDataAsset.GetAsset(); + return true; + } catch { + try { + hatViewData = CustomHatViewDatas[__instance.Hat.name]; + } catch { + return false; + } + } + if (__instance.Hat && hatViewData != null) { + if (__instance.FrontLayer.sprite != hatViewData.ClimbImage && __instance.FrontLayer.sprite != hatViewData.FloorImage) { + if ((__instance.Hat.InFront || hatViewData.BackImage) && hatViewData.LeftMainImage) { + __instance.FrontLayer.sprite = (__instance.Parent.flipX ? hatViewData.LeftMainImage : hatViewData.MainImage); + } + if (hatViewData.BackImage && hatViewData.LeftBackImage) { + __instance.BackLayer.sprite = (__instance.Parent.flipX ? hatViewData.LeftBackImage : hatViewData.BackImage); + return false; + } + if (!hatViewData.BackImage && !__instance.Hat.InFront && hatViewData.LeftMainImage) { + __instance.BackLayer.sprite = (__instance.Parent.flipX ? hatViewData.LeftMainImage : hatViewData.MainImage); + return false; + } + } else if (__instance.FrontLayer.sprite == hatViewData.ClimbImage || __instance.FrontLayer.sprite == hatViewData.LeftClimbImage) { + SpriteAnimNodeSync spriteAnimNodeSync = __instance.SpriteSyncNode ?? __instance.GetComponent(); + if (spriteAnimNodeSync) { + spriteAnimNodeSync.NodeId = 0; + } + } + } + } + return false; + } + } + [HarmonyPatch(typeof(HatParent), nameof(HatParent.SetFloorAnim))] public class HatParentSetFloorAnimPatch { public static bool Prefix(HatParent __instance) { @@ -404,7 +446,7 @@ public static bool Prefix(HatParent __instance) { public class HatParentSetIdleAnimPatch { public static bool Prefix(HatParent __instance, int colorId) { if (!__instance.Hat) return false; - if (!CustomHatRegistry.ContainsKey(__instance.Hat.name)) + if (!CustomHatViewDatas.ContainsKey(__instance.Hat.name)) return true; HatViewData hatViewData = CustomHatViewDatas[__instance.Hat.name]; __instance.hatDataAsset = null; @@ -480,6 +522,18 @@ public static bool Prefix(HatParent __instance) { } } + [HarmonyPatch(typeof(CosmeticsCache), nameof(CosmeticsCache.GetHat))] + public class CosmeticsCacheGetHatPatch { + public static bool Prefix(string id, ref HatViewData __result) { + TheOtherRolesPlugin.Logger.LogMessage($"trying to load hat {id} from cosmetics cache"); + if (CustomHatViewDatas.ContainsKey(id)) { + __result = CustomHatViewDatas[id]; + return false; + } + return true; + } + } + [HarmonyPatch(typeof(HatsTab), nameof(HatsTab.OnEnable))] public class HatsTabOnEnablePatch { public static string innerslothPackageName = "Innersloth Hats"; diff --git a/TheOtherRoles/Modules/ModUpdater.cs b/TheOtherRoles/Modules/ModUpdater.cs index 4404ff8ea..4bec0dd6b 100644 --- a/TheOtherRoles/Modules/ModUpdater.cs +++ b/TheOtherRoles/Modules/ModUpdater.cs @@ -39,7 +39,7 @@ public class UpdateData public string TimeString; public JObject Request; public Version Version => Version.Parse(Tag); - + public UpdateData(JObject data) { Tag = data["tag_name"]?.ToString().TrimStart('v'); @@ -199,6 +199,9 @@ public IEnumerator CoShowAnnouncement(string announcement, bool show=true, strin [HideFromIl2Cpp] public static IEnumerator CoCheckUpdates() { + // Since running the update check task causes a crash for some users, allow the user to disable the updater by creating a file called noupdater.txt + // in their Among Us folder (root) + if (Il2CppSystem.IO.File.Exists(System.IO.Directory.GetCurrentDirectory() + "\\noupdater.txt")) yield break; var torUpdateCheck = Task.Run(() => Instance.GetGithubUpdate("Eisbison", "TheOtherRoles")); while (!torUpdateCheck.IsCompleted) yield return null; if (torUpdateCheck.Result != null && torUpdateCheck.Result.IsNewer(Version.Parse(TheOtherRolesPlugin.VersionString))) @@ -212,7 +215,7 @@ public static IEnumerator CoCheckUpdates() if (submergedUpdateCheck.Result != null && (!SubmergedCompatibility.Loaded || submergedUpdateCheck.Result.IsNewer(SubmergedCompatibility.Version))) { Instance.SubmergedUpdate = submergedUpdateCheck.Result; - if (Instance.SubmergedUpdate.Tag.Equals("2022.10.26")) Instance.SubmergedUpdate = null; + if (Instance.SubmergedUpdate.Tag.Equals("2022.10.26") || IL2CPPChainloader.Instance.Plugins.TryGetValue("com.DigiWorm.LevelImposter", out PluginInfo _)) Instance.SubmergedUpdate = null; } } Instance.OnSceneLoaded(SceneManager.GetActiveScene(), LoadSceneMode.Single); @@ -223,10 +226,8 @@ public async Task GetGithubUpdate(string owner, string repo) { var client = new HttpClient(); client.DefaultRequestHeaders.Add("User-Agent", "TheOtherRoles Updater"); - try { var req = await client.GetAsync($"https://api.github.com/repos/{owner}/{repo}/releases/latest", HttpCompletionOption.ResponseContentRead); - if (!req.IsSuccessStatusCode) return null; var dataString = await req.Content.ReadAsStringAsync(); diff --git a/TheOtherRoles/Patches/RoleAssignmentPatch.cs b/TheOtherRoles/Patches/RoleAssignmentPatch.cs index 83e807ec3..a403f0ef9 100644 --- a/TheOtherRoles/Patches/RoleAssignmentPatch.cs +++ b/TheOtherRoles/Patches/RoleAssignmentPatch.cs @@ -28,7 +28,7 @@ public static void Postfix(ref int __result) { __result = Mathf.Clamp(GameOptionsManager.Instance.CurrentGameOptions.NumImpostors, 1, 3); } } - } + } [HarmonyPatch(typeof(GameOptionsData), nameof(GameOptionsData.Validate))] class GameOptionsDataValidatePatch { diff --git a/TheOtherRoles/RPC.cs b/TheOtherRoles/RPC.cs index 86158d90c..4ea20a724 100644 --- a/TheOtherRoles/RPC.cs +++ b/TheOtherRoles/RPC.cs @@ -557,7 +557,7 @@ public static void shifterShift(byte targetId) { Shifter.clearAndReload(); // Suicide (exile) when impostor or impostor variants - if (player.Data.Role.IsImpostor || Helpers.isNeutral(player)) { + if ((player.Data.Role.IsImpostor || Helpers.isNeutral(player)) && !oldShifter.Data.IsDead) { oldShifter.Exiled(); GameHistory.overrideDeathReasonAndKiller(oldShifter, DeadPlayer.CustomDeathReason.Shift, player); if (oldShifter == Lawyer.target && AmongUsClient.Instance.AmHost && Lawyer.lawyer != null) { diff --git a/TheOtherRoles/SoundEffectsManager.cs b/TheOtherRoles/SoundEffectsManager.cs index d464863d4..2aef9a7ab 100644 --- a/TheOtherRoles/SoundEffectsManager.cs +++ b/TheOtherRoles/SoundEffectsManager.cs @@ -13,7 +13,7 @@ namespace TheOtherRoles public static class SoundEffectsManager { - private static Dictionary soundEffects; + private static Dictionary soundEffects = new(); public static void Load() { @@ -69,7 +69,9 @@ public static void playAtPosition(string path, Vector2 position, float maxDurati } public static void stop(string path) { - if (Constants.ShouldPlaySfx()) SoundManager.Instance.StopSound(get(path)); + var soundToStop = get(path); + if (soundToStop != null) + if (Constants.ShouldPlaySfx()) SoundManager.Instance.StopSound(soundToStop); } public static void stopAll() { diff --git a/TheOtherRoles/SubmergedCompatibility.cs b/TheOtherRoles/SubmergedCompatibility.cs index d9fe18e1d..21f4a3000 100644 --- a/TheOtherRoles/SubmergedCompatibility.cs +++ b/TheOtherRoles/SubmergedCompatibility.cs @@ -34,14 +34,6 @@ public static class Classes public static bool IsSubmerged { get; private set; } - public static bool DisableO2MaskCheckForEmergency - { - set - { - if (!Loaded) return; - DisableO2MaskCheckField.SetValue(null, value); - } - } public static void SetupMap(ShipStatus map) { @@ -59,17 +51,14 @@ public static void SetupMap(ShipStatus map) } private static Type SubmarineStatusType; - private static MethodInfo CalculateLightRadiusMethod; - - private static Type TaskIsEmergencyPatchType; - private static FieldInfo DisableO2MaskCheckField; + private static MethodInfo CalculateLightRadiusMethod; private static MethodInfo RpcRequestChangeFloorMethod; private static Type FloorHandlerType; private static MethodInfo GetFloorHandlerMethod; - private static Type Vent_MoveToVent_PatchType; - private static FieldInfo InTransitionField; + private static Type VentPatchDataType; + private static PropertyInfo InTransitionField; private static Type CustomTaskTypesType; private static FieldInfo RetrieveOxigenMaskField; @@ -132,25 +121,25 @@ public static void Initialize() InjectedTypes = (Dictionary) AccessTools.PropertyGetter(Types.FirstOrDefault(t => t.Name == "ComponentExtensions"), "RegisteredTypes") .Invoke(null, Array.Empty()); - + SubmarineStatusType = Types.First(t => t.Name == "SubmarineStatus"); CalculateLightRadiusMethod = AccessTools.Method(SubmarineStatusType, "CalculateLightRadius"); - - TaskIsEmergencyPatchType = Types.First(t => t.Name == "PlayerTask_TaskIsEmergency_Patch"); - DisableO2MaskCheckField = AccessTools.Field(TaskIsEmergencyPatchType, "DisableO2MaskCheck"); FloorHandlerType = Types.First(t => t.Name == "FloorHandler"); GetFloorHandlerMethod = AccessTools.Method(FloorHandlerType, "GetFloorHandler", new Type[] {typeof(PlayerControl)}); RpcRequestChangeFloorMethod = AccessTools.Method(FloorHandlerType, "RpcRequestChangeFloor"); - Vent_MoveToVent_PatchType = Types.First(t => t.Name == "Vent_MoveToVent_Patch"); - InTransitionField = AccessTools.Field(Vent_MoveToVent_PatchType, "InTransition"); + VentPatchDataType = Types.First(t => t.Name == "VentPatchData"); + + InTransitionField = AccessTools.Property(VentPatchDataType, "InTransition"); CustomTaskTypesType = Types.First(t => t.Name == "CustomTaskTypes"); RetrieveOxigenMaskField = AccessTools.Field(CustomTaskTypesType, "RetrieveOxygenMask"); - RetrieveOxygenMask = (TaskTypes)RetrieveOxigenMaskField.GetValue(null); + var RetrieveOxigenMaskTaskTypeField = AccessTools.Field(CustomTaskTypesType, "taskType"); + object OxygenMaskCustomTaskType = RetrieveOxigenMaskField.GetValue(null); + RetrieveOxygenMask = (TaskTypes)RetrieveOxigenMaskTaskTypeField.GetValue(OxygenMaskCustomTaskType); - SubmarineOxygenSystemType = Types.First(t => t.Name == "SubmarineOxygenSystem" && t.Namespace == "Submerged.Systems.CustomSystems.Oxygen"); + SubmarineOxygenSystemType = Types.First(t => t.Name == "SubmarineOxygenSystem" && t.Namespace == "Submerged.Systems.Oxygen"); SubmarineOxygenSystemInstanceField = AccessTools.PropertyGetter(SubmarineOxygenSystemType, "Instance"); RepairDamageMethod = AccessTools.Method(SubmarineOxygenSystemType, "RepairDamage"); } diff --git a/TheOtherRoles/TheOtherRoles.csproj b/TheOtherRoles/TheOtherRoles.csproj index fe23c004e..ab3c7eaa4 100644 --- a/TheOtherRoles/TheOtherRoles.csproj +++ b/TheOtherRoles/TheOtherRoles.csproj @@ -1,7 +1,7 @@  net6.0 - 4.3.3 + 4.3.4 TheOtherRoles Eisbison latest @@ -16,9 +16,9 @@ - + - + diff --git a/TheOtherRoles/packages.lock.json b/TheOtherRoles/packages.lock.json index 74bc842de..0151fd8e9 100644 --- a/TheOtherRoles/packages.lock.json +++ b/TheOtherRoles/packages.lock.json @@ -16,26 +16,26 @@ }, "BepInEx.Unity.IL2CPP": { "type": "Direct", - "requested": "[6.0.0-be.670, )", - "resolved": "6.0.0-be.670", - "contentHash": "dhzCrem44oFxhOICCJ9eoSUbaKSsGGyBUfUQW9WFljCwIK8o4Cx5BiuXAkYoRjr2DhpzLpPDyPZDRImUqH0bwA==", + "requested": "[6.0.0-be.671, )", + "resolved": "6.0.0-be.671", + "contentHash": "XpmrBitEO7pe5YG9VHqn0nuelEF5Dp0Rpkxa2F7PFZF1a00KSsdCL809++HYnGzLumNOCIt7mO7yyDNP5k25mw==", "dependencies": { - "BepInEx.Core": "6.0.0-be.670", - "BepInEx.Unity.Common": "6.0.0-be.670", + "BepInEx.Core": "6.0.0-be.671", + "BepInEx.Unity.Common": "6.0.0-be.671", "HarmonyX": "2.10.1", "Iced": "1.18.0", - "Il2CppInterop.Generator": "1.4.6-ci.354", - "Il2CppInterop.HarmonySupport": "1.4.6-ci.354", - "Il2CppInterop.Runtime": "1.4.6-ci.354", + "Il2CppInterop.Generator": "1.4.6-ci.367", + "Il2CppInterop.HarmonySupport": "1.4.6-ci.367", + "Il2CppInterop.Runtime": "1.4.6-ci.367", "MonoMod.RuntimeDetour": "22.5.1.1", "Samboy063.Cpp2IL.Core": "2022.1.0-development.866" } }, "Reactor": { "type": "Direct", - "requested": "[2.2.0-ci.235, )", - "resolved": "2.2.0-ci.235", - "contentHash": "aa0VHgBs5QwuMHt7evQ/mldAHBqsWdLvnh7NS0RrVSwxi46KfTdALc1sebjzLrWs949USdwGXtFIePEMizGqrA==", + "requested": "[2.2.0, )", + "resolved": "2.2.0", + "contentHash": "foMHya01tmr//3tw+kO7FmY1ojnR0m+ShMU6sxogbnWeO85lmX3QM8aSIsYeAhtJSThf6Ben6iTM4O0KgVcmqw==", "dependencies": { "BepInEx.Unity.IL2CPP": "6.0.0-be.670" } @@ -77,8 +77,8 @@ }, "BepInEx.Core": { "type": "Transitive", - "resolved": "6.0.0-be.670", - "contentHash": "7CbbMNZfb+1VHjFKh/ErFBOOEYrVCIkng/B3/HPcbNioySC7qdT1ztfYqs6YjQia4krEic+LV3ew86B/hTg+hw==", + "resolved": "6.0.0-be.671", + "contentHash": "Hp9QsgwtlGuNULFq5tF8YHrVD5R5WA5nMgFTJbcScWsGJDq7KPEhiLNGvKHAxcmMM8GA0CKM+jn8cJPtlMKvNQ==", "dependencies": { "HarmonyX": "2.10.1", "MonoMod.Utils": "22.5.1.1", @@ -87,8 +87,8 @@ }, "BepInEx.Unity.Common": { "type": "Transitive", - "resolved": "6.0.0-be.670", - "contentHash": "FSzWILgwepZ7CpA34ew1WyO75lNjxkfX86uwo2172lbhmLkgoAdQbNun8dxKJCDlIevmTDga76yr/WPrTXELvA==", + "resolved": "6.0.0-be.671", + "contentHash": "05W7ERsHizZl0MacTAhiGkcihZl2b0DYBP0e6gA1Vzoay+teQ/mHy3zorGu1r8lLWlesH4LXl89HwFjrMA1ZKw==", "dependencies": { "AssetRipper.VersionUtilities": "1.2.1", "MonoMod.Utils": "22.5.1.1" @@ -115,8 +115,8 @@ }, "Il2CppInterop.Common": { "type": "Transitive", - "resolved": "1.4.6-ci.354", - "contentHash": "aCP3kr39YQw5GVqE9Q8c5y7f9CEKdFxpUhIqYgQBtrEz5Z/KCbHhjuOf/lSuFrjl6Vub/BKk6k+UbMRdoSvC1w==", + "resolved": "1.4.6-ci.367", + "contentHash": "zviSAk0COGdxx1KLTJlSi6lyvfRjbPO4qhj9RvLAU5zP74hwAkjhim0WsSo9clkkyGS+KXDrjnUEHqfXuMMm9Q==", "dependencies": { "Iced": "1.17.0", "Microsoft.Extensions.Logging.Abstractions": "6.0.1", @@ -125,29 +125,29 @@ }, "Il2CppInterop.Generator": { "type": "Transitive", - "resolved": "1.4.6-ci.354", - "contentHash": "y30sxc9mMv0bUzCPDr73xiI6fiu7ksmnEm6XULTGU/5JEGv2aw++/71bLOEYCscNbZTa2JT4yYrLCXCj3GSekg==", + "resolved": "1.4.6-ci.367", + "contentHash": "VP/1LX3wEy0/5BCrgggzIm9niyRGp/zjXaxFJip1D2bvM7oIXwK0LR0Rp8BE/uxKW8aQjVYxxwVwsdXPS/1KZw==", "dependencies": { - "Il2CppInterop.Common": "1.4.6-ci.354", + "Il2CppInterop.Common": "1.4.6-ci.367", "Mono.Cecil": "0.11.3" } }, "Il2CppInterop.HarmonySupport": { "type": "Transitive", - "resolved": "1.4.6-ci.354", - "contentHash": "mQV5A+B/qtI6kSXEGx/UswiqjFKw13/yyviawnStfRKbLMW+XFsdMgGSkOVZd/TiDtF9ZG4Xt7DbkbFu26WjyA==", + "resolved": "1.4.6-ci.367", + "contentHash": "rKb4Bt4cZQNWtI1L1/n/m5jJelP8pwAcQHwN/gaUAcobnapGZPJvRp8gyLQRvthGm3sxeleIQelEsv6L+21A2g==", "dependencies": { "HarmonyX": "2.10.0", - "Il2CppInterop.Runtime": "1.4.6-ci.354" + "Il2CppInterop.Runtime": "1.4.6-ci.367" } }, "Il2CppInterop.Runtime": { "type": "Transitive", - "resolved": "1.4.6-ci.354", - "contentHash": "Xe5md9z+KIthdEcjfUjmoOhvM3gTI3SPyocqvuzEHoov5jQ/HhIPv5hUZzTSm+2nzn3XplENNE8vlBPvQ1o6OA==", + "resolved": "1.4.6-ci.367", + "contentHash": "Wb4rj/ESlfiYljfVXskndbkYNSX1WxPcsylrYex39QnVzujk6tRQUbHLA7PZn509z6P5wYbqJvhodzJ+w9Kk4A==", "dependencies": { "Iced": "1.17.0", - "Il2CppInterop.Common": "1.4.6-ci.354" + "Il2CppInterop.Common": "1.4.6-ci.367" } }, "js6pak.Gee.External.Capstone": { diff --git a/nuget.config b/nuget.config index a43cf2b1a..c00459bf4 100644 --- a/nuget.config +++ b/nuget.config @@ -3,7 +3,7 @@ - - + +