├── .github └── workflows │ └── release.yml ├── .gitignore ├── Android ├── Fcitx5-For-Android │ ├── README.md │ └── 小企鹅导入包构建脚本.py ├── README.MD └── trime │ └── README.md ├── LICENSE ├── Linux ├── README.md └── Shell │ ├── README.md │ └── wanxiang-update ├── Mac ├── README.md └── Shell │ ├── README.md │ └── wanxiang-update.sh ├── Python-全平台版本 ├── Python │ └── 万象下载更新.py └── README.md ├── README.md ├── Windows ├── PowerShell │ ├── README.md │ └── 按需下载万象方案-词库-模型-utf-8.ps1 └── README.md └── iOS ├── README.md └── Shortcuts └── README.md /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /Android/Fcitx5-For-Android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Android/Fcitx5-For-Android/README.md -------------------------------------------------------------------------------- /Android/Fcitx5-For-Android/小企鹅导入包构建脚本.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Android/Fcitx5-For-Android/小企鹅导入包构建脚本.py -------------------------------------------------------------------------------- /Android/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Android/README.MD -------------------------------------------------------------------------------- /Android/trime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Android/trime/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Linux/README.md -------------------------------------------------------------------------------- /Linux/Shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Linux/Shell/README.md -------------------------------------------------------------------------------- /Linux/Shell/wanxiang-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Linux/Shell/wanxiang-update -------------------------------------------------------------------------------- /Mac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Mac/README.md -------------------------------------------------------------------------------- /Mac/Shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Mac/Shell/README.md -------------------------------------------------------------------------------- /Mac/Shell/wanxiang-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Mac/Shell/wanxiang-update.sh -------------------------------------------------------------------------------- /Python-全平台版本/Python/万象下载更新.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Python-全平台版本/Python/万象下载更新.py -------------------------------------------------------------------------------- /Python-全平台版本/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Python-全平台版本/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/README.md -------------------------------------------------------------------------------- /Windows/PowerShell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Windows/PowerShell/README.md -------------------------------------------------------------------------------- /Windows/PowerShell/按需下载万象方案-词库-模型-utf-8.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Windows/PowerShell/按需下载万象方案-词库-模型-utf-8.ps1 -------------------------------------------------------------------------------- /Windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/Windows/README.md -------------------------------------------------------------------------------- /iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/iOS/README.md -------------------------------------------------------------------------------- /iOS/Shortcuts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expoli/rime-wanxiang-update-tools/HEAD/iOS/Shortcuts/README.md --------------------------------------------------------------------------------