├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── WeChatMo.sln ├── readme.md └── src ├── Forms ├── AboutForm.Designer.cs ├── AboutForm.cs ├── AboutForm.resx ├── MainForm.Designer.cs ├── MainForm.cs └── MainForm.resx ├── Program.cs ├── Resources ├── ICON │ ├── 0.75x │ │ └── LOGOldpi.png │ ├── 1.5x │ │ └── LOGOhdpi.png │ ├── 1x │ │ └── LOGOmdpi.png │ ├── 2x │ │ └── LOGOxhdpi.png │ ├── 3x │ │ └── LOGOxxhdpi.png │ ├── 4x │ │ ├── LOGO@4x.png │ │ └── LOGOxxxhdpi.png │ └── SVG │ │ └── LOGO.svg ├── LOGO.png └── Logo.ico ├── Utilities ├── Logger.cs ├── Parse.cs ├── Patch.cs ├── UpRelease.cs └── WeChat.cs └── WeChatMo.csproj /.editorconfig: -------------------------------------------------------------------------------- 1 | [*.cs] 2 | 3 | # CS1591: 缺少对公共可见类型或成员的 XML 注释 4 | dotnet_diagnostic.CS1591.severity = silent 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/LICENSE -------------------------------------------------------------------------------- /WeChatMo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/WeChatMo.sln -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/readme.md -------------------------------------------------------------------------------- /src/Forms/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Forms/AboutForm.Designer.cs -------------------------------------------------------------------------------- /src/Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Forms/AboutForm.cs -------------------------------------------------------------------------------- /src/Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Forms/AboutForm.resx -------------------------------------------------------------------------------- /src/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Forms/MainForm.cs -------------------------------------------------------------------------------- /src/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Forms/MainForm.resx -------------------------------------------------------------------------------- /src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Program.cs -------------------------------------------------------------------------------- /src/Resources/ICON/0.75x/LOGOldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Resources/ICON/0.75x/LOGOldpi.png -------------------------------------------------------------------------------- /src/Resources/ICON/1.5x/LOGOhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Resources/ICON/1.5x/LOGOhdpi.png -------------------------------------------------------------------------------- /src/Resources/ICON/1x/LOGOmdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Resources/ICON/1x/LOGOmdpi.png -------------------------------------------------------------------------------- /src/Resources/ICON/2x/LOGOxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Resources/ICON/2x/LOGOxhdpi.png -------------------------------------------------------------------------------- /src/Resources/ICON/3x/LOGOxxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Resources/ICON/3x/LOGOxxhdpi.png -------------------------------------------------------------------------------- /src/Resources/ICON/4x/LOGO@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Resources/ICON/4x/LOGO@4x.png -------------------------------------------------------------------------------- /src/Resources/ICON/4x/LOGOxxxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Resources/ICON/4x/LOGOxxxhdpi.png -------------------------------------------------------------------------------- /src/Resources/ICON/SVG/LOGO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Resources/ICON/SVG/LOGO.svg -------------------------------------------------------------------------------- /src/Resources/LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Resources/LOGO.png -------------------------------------------------------------------------------- /src/Resources/Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Resources/Logo.ico -------------------------------------------------------------------------------- /src/Utilities/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Utilities/Logger.cs -------------------------------------------------------------------------------- /src/Utilities/Parse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Utilities/Parse.cs -------------------------------------------------------------------------------- /src/Utilities/Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Utilities/Patch.cs -------------------------------------------------------------------------------- /src/Utilities/UpRelease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Utilities/UpRelease.cs -------------------------------------------------------------------------------- /src/Utilities/WeChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/Utilities/WeChat.cs -------------------------------------------------------------------------------- /src/WeChatMo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsonw/WeChatMO/HEAD/src/WeChatMo.csproj --------------------------------------------------------------------------------