Skip to content

Commit

Permalink
Version 5.3.0 (Auto Translator)
Browse files Browse the repository at this point in the history
 * FEATURE - Added support for latest MelonLoader and BepInEx bleeding edge builds (only for IL2CPP, use stable release for Mono), also dropped support for earlier versions!
 * FEATURE - Added 'PersistRichTextMode' to allow control over how text that is parsed as rich text during translation is persisted
 * REGRESSION - Dropped support for pre-2017 Unity Engine versions for IL2CPP versions due to problems with new IL2CPP interop (may be re-added later)
 * BUG FIX - Fixed some potential NullReferenceException occurrences
 * BUG FIX - Fixed potential bug during substitution replacements - thanks to @TokcDK

Version 2.1.0 (Resource Redirector)
 * FEATURE - Added support for latest MelonLoader and BepInEx bleeding edge builds (only for IL2CPP, use stable release for Mono), also dropped support for earlier versions!
  • Loading branch information
randoman committed Aug 3, 2023
1 parent 970cd7c commit 27fbfc0
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 15 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG - ResourceRedirector.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
### 2.0.0
### 2.1.0
* FEATURE - Added support for latest MelonLoader and BepInEx bleeding edge builds (only for IL2CPP, use stable release for Mono), also dropped support for earlier versions!

### 2.0.0
* FEATURE - IL2CPP support through BepInEx 6 and MelonLoader
* MISC - Prioritize HarmonyX hooks over MonoMod hooks
* MISC - Changed BepInEx setting names
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private void CreateClientAndHandler()
_handler.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;

_client = new HttpClient( _handler, true );
_client.DefaultRequestHeaders.UserAgent.Add( new ProductInfoHeaderValue( "XUnity", "5.2.0" ) );
_client.DefaultRequestHeaders.UserAgent.Add( new ProductInfoHeaderValue( "XUnity", "5.3.0" ) );
_client.DefaultRequestHeaders.Accept.Add( new MediaTypeWithQualityHeaderValue( "*/*" ) );
}

Expand Down
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 "5.2.0";
return "5.3.0";
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<RootNamespace>XUnity.AutoTranslator.Plugin.BepInEx_IL2CPP</RootNamespace>
<TargetFramework>net6.0</TargetFramework>
<Version>5.2.0</Version>
<Version>5.3.0</Version>
</PropertyGroup>

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

<PropertyGroup>
<TargetFramework>net35</TargetFramework>
<Version>5.2.0</Version>
<Version>5.3.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static class PluginData
/// <summary>
/// Gets the version of the plugin.
/// </summary>
public const string Version = "5.2.0";
public const string Version = "5.3.0";

/// <summary>
/// Gets the author of the plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<DevelopmentDependency>True</DevelopmentDependency>
<TargetFrameworks>net35;net6.0</TargetFrameworks>
<Version>5.2.0</Version>
<Version>5.3.0</Version>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net35</TargetFramework>
<Version>5.2.0</Version>
<Version>5.3.0</Version>
</PropertyGroup>

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

<PropertyGroup>
<TargetFrameworks>net35;net6.0</TargetFrameworks>
<Version>5.2.0</Version>
<Version>5.3.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)'=='net35'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net35</TargetFramework>
<Version>5.2.0</Version>
<Version>5.3.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>net40</TargetFramework>
<AssemblyName>SetupReiPatcherAndAutoTranslator</AssemblyName>
<Version>5.2.0</Version>
<Version>5.3.0</Version>
<ApplicationIcon>icon.ico</ApplicationIcon>
<Win32Resource />
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>XUnity.ResourceRedirector.BepInEx_IL2CPP</RootNamespace>
<Version>2.0.0</Version>
<Version>2.1.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net35</TargetFramework>
<RootNamespace>XUnity.ResourceRedirector.BepInEx</RootNamespace>
<Version>2.0.0</Version>
<Version>2.1.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/XUnity.ResourceRedirector/Constants/PluginData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ public static class PluginData
/// <summary>
/// Gets the version of the plugin.
/// </summary>
public const string Version = "2.0.0";
public const string Version = "2.1.0";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<DevelopmentDependency>True</DevelopmentDependency>
<TargetFrameworks>net35;net6.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Version>2.0.0</Version>
<Version>2.1.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 27fbfc0

Please sign in to comment.