1
0
mirror of synced 2026-02-04 08:17:50 +08:00

微信 4.1.7.26、4.1.7.28、4.1.7.30 验证通过

This commit is contained in:
辉鸭蛋
2026-02-01 02:10:52 +08:00
parent 67d184decc
commit 5eff714cb0
5 changed files with 27 additions and 5 deletions

1
.gitignore vendored
View File

@@ -23,3 +23,4 @@ bld/
# Mine # Mine
Temp/ Temp/
/packages/ /packages/
.idea

File diff suppressed because one or more lines are too long

View File

@@ -17,7 +17,7 @@ namespace RevokeMsgPatcher
{ {
Apps = AppConfig(), Apps = AppConfig(),
LatestVersion = "2.1", LatestVersion = "2.1",
PatchVersion = 20260113, PatchVersion = 20260131,
Notice = "", Notice = "",
NoticeUrl = "", NoticeUrl = "",
}; };
@@ -1439,9 +1439,30 @@ namespace RevokeMsgPatcher
new CommonModifyInfo new CommonModifyInfo
{ {
Name="Weixin.dll", Name="Weixin.dll",
StartVersion="4.1.6.0", StartVersion="4.1.7.1",
EndVersion="", EndVersion="",
ReplacePatterns = new List<ReplacePattern> ReplacePatterns = new List<ReplacePattern>
{
new ReplacePattern
{
Search = ByteUtil.HexStringToByteArray("90 48 89 86 A8 01 00 00"),
Replace = ByteUtil.HexStringToByteArray("90 48 29 86 A8 01 00 00"),
Category = "防撤回"
},
new ReplacePattern
{
Search = ByteUtil.HexStringToByteArray("81 FF B7 00 00 00 0F 85"),
Replace = ByteUtil.HexStringToByteArray("81 FF B7 00 00 00 90 E9"),
Category = "多开"
}
}
},
new CommonModifyInfo
{
Name="Weixin.dll",
StartVersion="4.1.6.15",
EndVersion="4.1.7.0",
ReplacePatterns = new List<ReplacePattern>
{ {
new ReplacePattern new ReplacePattern
{ {

View File

@@ -19,7 +19,7 @@ namespace RevokeMsgPatcher.Properties {
// 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
// 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
// (以 /str 作为命令选项),或重新生成 VS 项目。 // (以 /str 作为命令选项),或重新生成 VS 项目。
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "18.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources { internal class Resources {

File diff suppressed because one or more lines are too long