├── .gitattributes ├── README.md ├── archives ├── PCRToolBox_v2.03.zip ├── PCRToolBox_v2.04.zip ├── PCRToolBox_v2.05.zip ├── PCRToolBox_v2.06.zip ├── PCRToolBox_v2.07.zip └── PCRToolBox_v2.08.zip ├── updateInfo.json └── updateInfoTEST.json /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PCRToolBox_Public 2 | 3 | -------------------------------------------------------------------------------- /archives/PCRToolBox_v2.03.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvisoa/PCRToolBox_Public/e72771e8a767d498cd63671ca0d71385b1112033/archives/PCRToolBox_v2.03.zip -------------------------------------------------------------------------------- /archives/PCRToolBox_v2.04.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvisoa/PCRToolBox_Public/e72771e8a767d498cd63671ca0d71385b1112033/archives/PCRToolBox_v2.04.zip -------------------------------------------------------------------------------- /archives/PCRToolBox_v2.05.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvisoa/PCRToolBox_Public/e72771e8a767d498cd63671ca0d71385b1112033/archives/PCRToolBox_v2.05.zip -------------------------------------------------------------------------------- /archives/PCRToolBox_v2.06.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvisoa/PCRToolBox_Public/e72771e8a767d498cd63671ca0d71385b1112033/archives/PCRToolBox_v2.06.zip -------------------------------------------------------------------------------- /archives/PCRToolBox_v2.07.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvisoa/PCRToolBox_Public/e72771e8a767d498cd63671ca0d71385b1112033/archives/PCRToolBox_v2.07.zip -------------------------------------------------------------------------------- /archives/PCRToolBox_v2.08.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvisoa/PCRToolBox_Public/e72771e8a767d498cd63671ca0d71385b1112033/archives/PCRToolBox_v2.08.zip -------------------------------------------------------------------------------- /updateInfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "code": 208, 3 | "name": "PCRToolBox2.08", 4 | "filename": "PCRToolBox.zip", 5 | "url": "https://raw.githubusercontent.com/cvisoa/PCRToolBox_Public/master/archives/PCRToolBox_v2.08.zip", 6 | "time": "2020-11-18", 7 | "des": "程序框架迁移至.Net5\n1.将失效的香港ip替换成日本地区\n需要下载最新的.Net5运行环境、不然将无法运行\n更新完打开程序一般情况下将会弹出提示点击确认后跳转到微软官方\n请选择下载.Net5 Desktop Runtime X64版本并安装", 8 | "size": "2.89MB", 9 | "md5": "8e37566b6122b75a6b1cea8587c1857f", 10 | "cleanList":[ 11 | "Newtonsoft.Json.dll", 12 | "SharpVectors.Converters.Wpf.dll", 13 | "SharpVectors.Core.dll", 14 | "SharpVectors.Css.dll", 15 | "SharpVectors.Dom.dll", 16 | "SharpVectors.Model.dll", 17 | "SharpVectors.Rendering.Gdi.dll", 18 | "SharpVectors.Rendering.Wpf.dll", 19 | "SharpVectors.Runtime.Wpf.dll", 20 | "ToolBoxUpdater.exe" 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /updateInfoTEST.json: -------------------------------------------------------------------------------- 1 | { 2 | "code": 205, 3 | "name": "PCRToolBox2.05【重要更新、请阅读完更新说明】", 4 | "filename": "PCRToolBox.zip", 5 | "url": "https://raw.githubusercontent.com/cvisoa/PCRToolBox_Public/master/archives/PCRToolBox_v2.05.zip", 6 | "time": "2020-11-12", 7 | "des": "程序框架迁移至.Net5\n1.修正了些小bug\n2.程序将更为精简与小体积\n3.更新器版本迭代\n更新程序完后需要下载最新的.Net5运行环境、不然将无法运行\n打开程序将会弹出提示确认后跳转到微软官方\n请选择下载.Net5 Desktop Runtime X64版本并安装", 8 | "size": "1.54MB", 9 | "md5": "aa5a173336acdd908c3546c245676dba", 10 | "cleanList":[ 11 | "Newtonsoft.Json.dll", 12 | "SharpVectors.Converters.Wpf.dll", 13 | "SharpVectors.Core.dll", 14 | "SharpVectors.Css.dll", 15 | "SharpVectors.Dom.dll", 16 | "SharpVectors.Model.dll", 17 | "SharpVectors.Rendering.Gdi.dll", 18 | "SharpVectors.Rendering.Wpf.dll", 19 | "SharpVectors.Runtime.Wpf.dll", 20 | "ToolBoxUpdater.exe" 21 | ] 22 | } 23 | --------------------------------------------------------------------------------