[#] 支持 3.6.5.16

This commit is contained in:
huiyadanli 2022-04-30 13:11:41 +08:00
parent 4a86a6d925
commit 8f5610e25d
3 changed files with 25 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -17,7 +17,7 @@ namespace RevokeMsgPatcher
{ {
Apps = AppConfig(), Apps = AppConfig(),
LatestVersion = "1.3", LatestVersion = "1.3",
PatchVersion = 20220325, PatchVersion = 20220430,
Notice = "" Notice = ""
}; };
} }
@ -70,9 +70,30 @@ namespace RevokeMsgPatcher
new CommonModifyInfo new CommonModifyInfo
{ {
Name="WeChatWin.dll", Name="WeChatWin.dll",
StartVersion="3.6.0.5", StartVersion="3.6.5.0",
EndVersion="", EndVersion="",
ReplacePatterns = new List<ReplacePattern> ReplacePatterns = new List<ReplacePattern>
{
new ReplacePattern
{
Search = ByteUtil.HexStringToByteArray("F0 00 85 C0 74 32 B9 3F 3F 3F 11 8A"),
Replace = ByteUtil.HexStringToByteArray("F0 00 85 C0 EB 32 B9 3F 3F 3F 11 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.0.5",
EndVersion="3.6.5.0",
ReplacePatterns = new List<ReplacePattern>
{ {
// 防撤回特征又和 3.4 时期一样了 // 防撤回特征又和 3.4 时期一样了
new ReplacePattern new ReplacePattern

File diff suppressed because one or more lines are too long