├── .gitignore ├── CNAME ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── WeChatTweak │ ├── Command.swift │ ├── Config.swift │ ├── Patcher.swift │ └── main.swift ├── _config.yml └── config.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnyyoung/WeChatTweak/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.tweaks.app -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnyyoung/WeChatTweak/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnyyoung/WeChatTweak/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnyyoung/WeChatTweak/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnyyoung/WeChatTweak/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnyyoung/WeChatTweak/HEAD/README.md -------------------------------------------------------------------------------- /Sources/WeChatTweak/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnyyoung/WeChatTweak/HEAD/Sources/WeChatTweak/Command.swift -------------------------------------------------------------------------------- /Sources/WeChatTweak/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnyyoung/WeChatTweak/HEAD/Sources/WeChatTweak/Config.swift -------------------------------------------------------------------------------- /Sources/WeChatTweak/Patcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnyyoung/WeChatTweak/HEAD/Sources/WeChatTweak/Patcher.swift -------------------------------------------------------------------------------- /Sources/WeChatTweak/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnyyoung/WeChatTweak/HEAD/Sources/WeChatTweak/main.swift -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunnyyoung/WeChatTweak/HEAD/config.json --------------------------------------------------------------------------------