[#] 3.7 开始的特征替换为带防撤回提示的特征

This commit is contained in:
huiyadanli 2022-07-16 18:27:15 +08:00
parent 38b9a8d7cb
commit 66245b73ff
3 changed files with 12 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -17,7 +17,7 @@ namespace RevokeMsgPatcher
{
Apps = AppConfig(),
LatestVersion = "1.5",
PatchVersion = 20220601,
PatchVersion = 20220716,
Notice = ""
};
}
@ -121,10 +121,17 @@ namespace RevokeMsgPatcher
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("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"),
Search = ByteUtil.HexStringToByteArray("80 7D F2 00 6A 01 74"),
Replace = ByteUtil.HexStringToByteArray("80 7D F2 00 6A 01 EB"),
Category = "防撤回"
},
new ReplacePattern

File diff suppressed because one or more lines are too long