├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── collate_moegirl.py ├── convert.py ├── fetch.py ├── manual_fix.json ├── manual_fix.py ├── retry.py ├── tests ├── blob │ └── titles.txt └── test.sh └── utils ├── PKGBUILD.pinyin ├── PKGBUILD.rime ├── builddict.sh └── makepkg.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/README.md -------------------------------------------------------------------------------- /collate_moegirl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/collate_moegirl.py -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/convert.py -------------------------------------------------------------------------------- /fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/fetch.py -------------------------------------------------------------------------------- /manual_fix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/manual_fix.json -------------------------------------------------------------------------------- /manual_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/manual_fix.py -------------------------------------------------------------------------------- /retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/retry.py -------------------------------------------------------------------------------- /tests/blob/titles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/tests/blob/titles.txt -------------------------------------------------------------------------------- /tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/tests/test.sh -------------------------------------------------------------------------------- /utils/PKGBUILD.pinyin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/utils/PKGBUILD.pinyin -------------------------------------------------------------------------------- /utils/PKGBUILD.rime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/utils/PKGBUILD.rime -------------------------------------------------------------------------------- /utils/builddict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/utils/builddict.sh -------------------------------------------------------------------------------- /utils/makepkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldherl/fcitx5-pinyin-minecraft/HEAD/utils/makepkg.sh --------------------------------------------------------------------------------