Pārlūkot izejas kodu

bumped version, updated docs

Scrublord1336 6 gadi atpakaļ
vecāks
revīzija
f02c0cab0e

+ 11 - 1
CHANGELOG.md

@@ -1,6 +1,16 @@
-### 2.10.0
+### 2.10.0
  * FEATURE - Support Yandex translate (requires key)
  * FEATURE - Support Watson translate (requires key)
+ * FEATURE - Batching support for selected endpoints (makes translations much faster and requires lesser request)
+ * FEATURE - Experimental Utage support
+ * BUG FIX - Fixed minor bug during reading of text translation cache
+ * BUG FIX - Now escapes the '='-sign in the translation file, so texts containing this character can be translated
+ * BUG FIX - Fixed kana check when testing if a text is a candidate for translation
+ * MISC - No longer creating a new thread for each translation
+ * MISC - Proactive closing of unused TCP connections
+ * CONFIG - TrimAllText, to indicate whether whitespace in front of and behind translation candidates should be removed
+ * CONFIG - EnableBatching, to indicate whether batching should be enabled for supported endpoints
+ * CONFIG - EnableUIResizing, to indicate whether the plugin should make a "best attempt" at resizing the UI upon translation. Current only work for NGUI
 
 ### 2.9.1
  * MISC - Added automatic configuration migration support

+ 3 - 0
README.md

@@ -49,6 +49,9 @@ MinDialogueChars=20              ;The length of the text for it to be considered
 ForceSplitTextAfterCharacters=0  ;Split text into multiple lines once the translated text exceeds this number of characters
 CopyToClipboard=False            ;Whether or not to copy hooked texts to clipboard
 MaxClipboardCopyCharacters=450   ;Max number of characters to hook to clipboard at a time
+EnableUIResizing=True            ;Whether or not the plugin should provide a "best attempt" at resizing UI components upon translation. Only work for NGUI
+EnableBatching=True              ;Indicates whether batching of translations should be enabled for supported endpoints
+TrimAllText=True                 ;Indicates whether spaces in front and behind translation candidates should be removed before translation
 
 [Baidu]
 BaiduAppId=                      ;OPTIONAL, needed if BaiduTranslate is configured

+ 1 - 1
src/XUnity.AutoTranslator.Patcher/Patcher.cs

@@ -29,7 +29,7 @@ namespace XUnity.AutoTranslator.Patcher
       {
          get
          {
-            return "2.9.1";
+            return "2.10.0";
          }
       }
 

+ 1 - 1
src/XUnity.AutoTranslator.Plugin.BepIn/XUnity.AutoTranslator.Plugin.BepIn.csproj

@@ -2,7 +2,7 @@
 
    <PropertyGroup>
       <TargetFramework>net35</TargetFramework>
-      <Version>2.9.1</Version>
+      <Version>2.10.0</Version>
    </PropertyGroup>
 
    <ItemGroup>

+ 1 - 1
src/XUnity.AutoTranslator.Plugin.Core/Constants/PluginData.cs

@@ -11,6 +11,6 @@ namespace XUnity.AutoTranslator.Plugin.Core.Constants
 
       public const string Name = "XUnity Auto Translator";
 
-      public const string Version = "2.9.1";
+      public const string Version = "2.10.0";
    }
 }

+ 1 - 1
src/XUnity.AutoTranslator.Plugin.Core/XUnity.AutoTranslator.Plugin.Core.csproj

@@ -2,7 +2,7 @@
 
   <PropertyGroup>
     <TargetFramework>net35</TargetFramework>
-     <Version>2.9.1</Version>
+     <Version>2.10.0</Version>
   </PropertyGroup>
 
   <ItemGroup>

+ 1 - 1
src/XUnity.AutoTranslator.Plugin.IPA/XUnity.AutoTranslator.Plugin.IPA.csproj

@@ -2,7 +2,7 @@
 
    <PropertyGroup>
       <TargetFramework>net35</TargetFramework>
-      <Version>2.9.1</Version>
+      <Version>2.10.0</Version>
    </PropertyGroup>
 
    <ItemGroup>

+ 1 - 1
src/XUnity.AutoTranslator.Plugin.UnityInjector/XUnity.AutoTranslator.Plugin.UnityInjector.csproj

@@ -2,7 +2,7 @@
 
    <PropertyGroup>
       <TargetFramework>net35</TargetFramework>
-      <Version>2.9.1</Version>
+      <Version>2.10.0</Version>
    </PropertyGroup>
 
    <ItemGroup>

+ 1 - 1
src/XUnity.AutoTranslator.Setup/XUnity.AutoTranslator.Setup.csproj

@@ -4,7 +4,7 @@
     <OutputType>Exe</OutputType>
     <TargetFramework>net40</TargetFramework>
     <AssemblyName>SetupReiPatcherAndAutoTranslator</AssemblyName>
-     <Version>2.9.1</Version>
+     <Version>2.10.0</Version>
   </PropertyGroup>
 
   <ItemGroup>