From cd5bc969f53b2d5a3c1dc24342d97ebbb879ebb2 Mon Sep 17 00:00:00 2001 From: randoman <738b86bb93c44695854182cc459afcbb@lonestar.no> Date: Sun, 9 Jan 2022 12:41:14 +0100 Subject: [PATCH] Version 5.0.0 (Auto Translator) * FEATURE - Basic IL2CPP support through BepInEx 6 and MelonLoader * FEATURE - MelonLoader support * FEATURE - Added FallbackFontTextMeshPro as an alternative to OverrideFontTextMeshPro. If game supports, it is recommended to use that instead * FEATURE - Added ClipboardDebounceTime that can control how long time between a text is shown until it reaches the clipboard * MISC - Renamed BepInEx plugin package from BepIn-5x to BepInEx. If updating remember to remove the old BepIn-5x DLL * MISC - UTAGE support re-implemented from scratch to better support IL2CPP * BUG FIX - Fixed text escaping error related to GoogleTranslateV2 * BUG FIX - Fixed issue that could cause texts not to be hooked in certain situations during component initialization Version 2.0.0 (Resource Redirector) * FEATURE - IL2CPP support through BepInEx 6 and MelonLoader * MISC - Prioritize HarmonyX hooks over MonoMod hooks * MISC - Changed BepInEx setting names * MISC - Renamed BepInEx plugin package from BepIn-5x to BepInEx. If updating remember to remove the old BepIn-5x DLL * BUG FIX - Fixed bug that caused some rarely used methods to be short-circuited incorrectly --- README.md | 2 +- src/XUnity.AutoTranslator.Plugin.Core/AutoTranslationPlugin.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 80d75ea7..a15045ec 100644 --- a/README.md +++ b/README.md @@ -732,7 +732,7 @@ The translation files support the following directives: * `#set required-resolution height > 1280 && width > 720` tells the plugin that translations following this line in this file should only be applied if the resolution is greater than specified. Current implementation only handles the resolution used by the game at startup. * `#unset required-resolution` tells the plugin to ignore previously specified `#set required-resolution` directive. -For this to work, the following configuration option must be changed, as it defaults to `False`: +For this to work, the following configuration option must be `True`: ``` [Behaviour] diff --git a/src/XUnity.AutoTranslator.Plugin.Core/AutoTranslationPlugin.cs b/src/XUnity.AutoTranslator.Plugin.Core/AutoTranslationPlugin.cs index 86eafc4c..6996177f 100644 --- a/src/XUnity.AutoTranslator.Plugin.Core/AutoTranslationPlugin.cs +++ b/src/XUnity.AutoTranslator.Plugin.Core/AutoTranslationPlugin.cs @@ -2469,7 +2469,7 @@ private string TranslateOrQueueWebJobImmediateByParserResult( object ui, ParserR } catch( Exception e ) { - XuaLogger.AutoTranslator.Error( e, "An error occurred while attempting to cache a composed translation." ); + XuaLogger.AutoTranslator.Error( e, "An error occurred while attempting to cache a parsed translation." ); } return translation;