This commit is contained in:
huiyadanli 2022-03-25 22:33:38 +08:00
parent c83e12f9f7
commit 7965b9053c
7 changed files with 9 additions and 6 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,7 +16,7 @@ namespace RevokeMsgPatcher
return new Bag return new Bag
{ {
Apps = AppConfig(), Apps = AppConfig(),
LatestVersion = "1.2", LatestVersion = "1.3",
PatchVersion = 20220325, PatchVersion = 20220325,
Notice = "" Notice = ""
}; };

View File

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

View File

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

File diff suppressed because one or more lines are too long

View File

@ -20,10 +20,11 @@ namespace RevokeMsgPatcher.Utils
/// 已经弃用的路径 /// 已经弃用的路径
/// https://swordmaker-hauls-51508.netlify.com/i/revokemsg/05.json /// https://swordmaker-hauls-51508.netlify.com/i/revokemsg/05.json
/// https://huiyadanli.github.io/i/revokemsg/05.json /// https://huiyadanli.github.io/i/revokemsg/05.json
/// 会自动跳转,没用了
/// https://gitee.com/huiyadanli/RevokeMsgPatcher/raw/master/RevokeMsgPatcher.Assistant/Data/1.2/patch.json
/// </summary> /// </summary>
private static readonly string[] urls = new string[] private static readonly string[] urls = new string[]
{ {
"https://gitee.com/huiyadanli/RevokeMsgPatcher/raw/master/RevokeMsgPatcher.Assistant/Data/1.2/patch.json",
"https://huiyadanli.coding.net/p/RevokeMsgPatcher/d/RevokeMsgPatcher/git/raw/master/RevokeMsgPatcher.Assistant/Data/1.2/patch.json", "https://huiyadanli.coding.net/p/RevokeMsgPatcher/d/RevokeMsgPatcher/git/raw/master/RevokeMsgPatcher.Assistant/Data/1.2/patch.json",
"https://raw.githubusercontent.com/huiyadanli/RevokeMsgPatcher/master/RevokeMsgPatcher.Assistant/Data/1.2/patch.json" "https://raw.githubusercontent.com/huiyadanli/RevokeMsgPatcher/master/RevokeMsgPatcher.Assistant/Data/1.2/patch.json"
}; };