├── .github └── workflows │ ├── destversion.yml │ └── notify.yml ├── .gitignore ├── README.md └── scripts ├── destVersionRelease.sh ├── destversion.sh └── notify.sh /.github/workflows/destversion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-snow/wechat-windows-versions-x86/HEAD/.github/workflows/destversion.yml -------------------------------------------------------------------------------- /.github/workflows/notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-snow/wechat-windows-versions-x86/HEAD/.github/workflows/notify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-snow/wechat-windows-versions-x86/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-snow/wechat-windows-versions-x86/HEAD/README.md -------------------------------------------------------------------------------- /scripts/destVersionRelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-snow/wechat-windows-versions-x86/HEAD/scripts/destVersionRelease.sh -------------------------------------------------------------------------------- /scripts/destversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-snow/wechat-windows-versions-x86/HEAD/scripts/destversion.sh -------------------------------------------------------------------------------- /scripts/notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-snow/wechat-windows-versions-x86/HEAD/scripts/notify.sh --------------------------------------------------------------------------------