Skip to content

Commit

Permalink
Version 2.18.0
Browse files Browse the repository at this point in the history
 * FEATURE - Text Getter Compatibility Mode. Fools the game into thinking that it is not actually translated
 * FEATURE - Textures - Live2D component support
 * FEATURE - Textures - SpriteRenderer component support
 * FEATURE - Hotkey to reboot plugin in certain situations
 * BUG FIX - No longer trim translated text (if configured) when loading translation files
 * MISC - Support legacy OnLevelWasLoaded
 * MISC - Avoid harmless 'log errors' in relation to texture translation
 * MISC - Set max value of MaxCharactersPerTranslation to 500
 * MISC - Documentation update to describe 'Behaviour' configuration section
 * MISC - Removed "FromImageNameThenData" as hash source on textures
 * MISC - Added "FromImageNameAndScene" as hash source on textures
 * MISC - Inline comment handling when using '//' to indicate a comment
 * MISC - Improved default configuration for Utage-related games to improve translation when newlines are involved
  • Loading branch information
randoman committed Jan 26, 2019
1 parent 571c8cf commit 5919ba3
Show file tree
Hide file tree
Showing 35 changed files with 1,419 additions and 626 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
### 2.17.0
### 2.18.0
* FEATURE - Text Getter Compatibility Mode. Fools the game into thinking that it is not actually translated
* FEATURE - Textures - Live2D component support
* FEATURE - Textures - SpriteRenderer component support
* FEATURE - Hotkey to reboot plugin in certain situations
* BUG FIX - No longer trim translated text (if configured) when loading translation files
* MISC - Support legacy OnLevelWasLoaded
* MISC - Avoid harmless 'log errors' in relation to texture translation
* MISC - Set max value of MaxCharactersPerTranslation to 500
* MISC - Documentation update to describe 'Behaviour' configuration section
* MISC - Removed "FromImageNameThenData" as hash source on textures
* MISC - Added "FromImageNameAndScene" as hash source on textures
* MISC - Inline comment handling when using '//' to indicate a comment
* MISC - Improved default configuration for Utage-related games to improve translation when newlines are involved

### 2.17.0
* FEATURE - Support legitimate Bing translate API (requires key)
* FEATURE - Documented custom endpoint
* BUG FIX - Fixed bug in older versions of the Unity engine where the plugin would crash on startup due to missing APIs in relation to the SceneManagement namespace
Expand Down
70 changes: 62 additions & 8 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/XUnity.AutoTranslator.Patcher/Patcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public override string Version
{
get
{
return "2.17.0";
return "2.18.0";
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net35</TargetFramework>
<Version>2.17.0</Version>
<Version>2.18.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading

0 comments on commit 5919ba3

Please sign in to comment.