diff --git a/Images/give_a_star.png b/Images/give_a_star.png new file mode 100644 index 0000000..ef1324a Binary files /dev/null and b/Images/give_a_star.png differ diff --git a/Images/revoke.jpg b/Images/revoke.jpg new file mode 100644 index 0000000..efa76b5 Binary files /dev/null and b/Images/revoke.jpg differ diff --git a/README.md b/README.md index faababb..916529b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,18 @@ -# 微信防撤回补丁 -微信防撤回 + +
+ ## 截图  @@ -16,4 +29,6 @@ ## License -GPLv3 \ No newline at end of file +GPLv3 + + \ No newline at end of file diff --git a/RevokeMsgPatcher/FormMain.Designer.cs b/RevokeMsgPatcher/FormMain.Designer.cs index 31898f6..1fd1071 100644 --- a/RevokeMsgPatcher/FormMain.Designer.cs +++ b/RevokeMsgPatcher/FormMain.Designer.cs @@ -96,6 +96,7 @@ this.linkLabel1.TabIndex = 7; this.linkLabel1.TabStop = true; this.linkLabel1.Text = "GitHub"; + this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); // // btnRestore // diff --git a/RevokeMsgPatcher/FormMain.cs b/RevokeMsgPatcher/FormMain.cs index 2d04d36..b6dbd79 100644 --- a/RevokeMsgPatcher/FormMain.cs +++ b/RevokeMsgPatcher/FormMain.cs @@ -113,5 +113,10 @@ namespace RevokeMsgPatcher } btnRestore.Enabled = File.Exists(patcher.BakPath); } + + private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + System.Diagnostics.Process.Start("https://github.com/huiyadanli/RevokeMsgPatcher"); + } } }