Skip to content

Commit

Permalink
Version 5.0.0 (Auto Translator)
Browse files Browse the repository at this point in the history
 * 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
  • Loading branch information
randoman committed Jan 9, 2022
1 parent b01a3e4 commit cd5bc96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit cd5bc96

Please sign in to comment.