RimWorld
Harmony
28개 중 1~10개 표시 중
< 1  2  3 >
업데이트: 2025년 9월 3일 @ 오전 8시 49분

v2.4.2 persists the tweak values that control the enhancement of stacktraces

업데이트: 2025년 8월 23일 @ 오전 9시 25분

v2.4.1 of this Mod loads the library Harmony 2.4.1 into RimWorld. It will also warn you if something else loaded an older version of Harmony before this mod could. For a full list of changes in Harmony, see https://github.com/pardeike/Harmony/releases/tag/v2.4.1.0

업데이트: 2025년 8월 17일 @ 오후 2시 34분

v2.4 of this Mod loads the library Harmony 2.4 into RimWorld. This version support Apple Silicon and has a lot of bug fixes and new features. For a full list, see https://github.com/pardeike/Harmony/releases/tag/v2.4.0.0

업데이트: 2025년 8월 6일 @ 오전 11시 45분

v2.3.5 loads Harmony 2.3.7-prerelease into RimWorld. This version support Apple Silicon in a prereleased way until the dependency of Harmony is updated officially.

업데이트: 2025년 6월 13일 @ 오전 8시 22분

v2.3.4 downgrades Harmony for RimWorld 1.5 from 2.3.6 to 2.3.3

업데이트: 2025년 6월 11일 @ 오후 3시 41분

v2.3.3 fixes a regression error in 2.3.2 that affected RimWorld 1.5

업데이트: 2025년 6월 11일 @ 오전 11시 56분

v2.3.2 loads Harmony v2.3.6 into RimWorld

업데이트: 2024년 4월 9일 @ 오후 11시 15분

v2.3.1 adds two Harmony tweak values in RimWorld that control the stacktrace behaviour so if you don't want caching or even enhanced stacktraces, you can suppress those features in the dev tools tweak dialog.

업데이트: 2024년 3월 29일 @ 오전 11시 21분

v2.3 makes api public for other mods to use:

using static HarmonyLib.AccessTools;

class MyClass
{
delegate string ExtractHarmonyEnhancedStackTraceDelegate(StackTrace trace, bool forceRefresh, out int hashRef);
static readonly MethodInfo m_ExtractHarmonyEnhancedStackTrace = Method("HarmonyMod.ExceptionTools:ExtractHarmonyEnhancedStackTrace", [typeof(StackTrace), typeof(bool), typeof(int).MakeByRefType()]);
static readonly ExtractHarmonyEnhancedStackTraceDelegate ExtractHarmonyEnhancedStackTrace = MethodDelegate<ExtractHarmonyEnhancedStackTraceDelegate>(m_ExtractHarmonyEnhancedStackTrace);

string Test(StackTrace trace)
{
return ExtractHarmonyEnhancedStackTrace(trace, true, out var hash);
}
}

업데이트: 2024년 3월 29일 @ 오전 8시 15분

v2.2 adds support for Harmony 2.3.3 and deduplicates stacktraces