[+] 微信 3.7.0.8

This commit is contained in:
huiyadanli 2022-05-14 23:10:45 +08:00
parent 56787bf95a
commit 67a209e41f
6 changed files with 30 additions and 7 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -16,8 +16,8 @@ namespace RevokeMsgPatcher
return new Bag
{
Apps = AppConfig(),
LatestVersion = "1.3",
PatchVersion = 202204301,
LatestVersion = "1.4",
PatchVersion = 20220514,
Notice = ""
};
}
@ -70,9 +70,30 @@ namespace RevokeMsgPatcher
new CommonModifyInfo
{
Name="WeChatWin.dll",
StartVersion="3.6.5.0",
StartVersion="3.7.0.0",
EndVersion="",
ReplacePatterns = new List<ReplacePattern>
{
new ReplacePattern
{
Search = ByteUtil.HexStringToByteArray("00 85 C0 74 32 B9 3F 3F 3F 3F 8A"),
Replace = ByteUtil.HexStringToByteArray("00 85 C0 EB 32 B9 3F 3F 3F 3F 8A"),
Category = "防撤回"
},
new ReplacePattern
{
Search = ByteUtil.HexStringToByteArray("83 C4 04 80 BD 3F FC FF FF 00 74 58 8B 3D"),
Replace = ByteUtil.HexStringToByteArray("83 C4 04 80 BD 3F FC FF FF 00 EB 58 8B 3D"),
Category = "多开"
}
}
},
new CommonModifyInfo
{
Name="WeChatWin.dll",
StartVersion="3.6.5.0",
EndVersion="3.7.0.0",
ReplacePatterns = new List<ReplacePattern>
{
new ReplacePattern
{

View File

@ -91,6 +91,7 @@
<None Include="Data\1.1\patch.json" />
<None Include="Data\1.2\patch.json" />
<None Include="Data\1.3\patch.json" />
<None Include="Data\1.4\patch.json" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
//[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.3")]
[assembly: AssemblyFileVersion("1.3")]
[assembly: AssemblyVersion("1.4")]
[assembly: AssemblyFileVersion("1.4")]

File diff suppressed because one or more lines are too long