├── .DS_Store ├── .idea ├── .gitignore ├── epub_to_zip.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── GUI ├── Windows │ ├── epub_to_zip.exe │ └── windows.png └── macOS │ ├── epub_to_zip.app.zip │ ├── how to open app.png │ └── macOS.png ├── LICENSE ├── README.md ├── epub_to_zip.py ├── requirments.txt └── rotate_zip_script.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/epub_to_zip.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/.idea/epub_to_zip.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /GUI/Windows/epub_to_zip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/GUI/Windows/epub_to_zip.exe -------------------------------------------------------------------------------- /GUI/Windows/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/GUI/Windows/windows.png -------------------------------------------------------------------------------- /GUI/macOS/epub_to_zip.app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/GUI/macOS/epub_to_zip.app.zip -------------------------------------------------------------------------------- /GUI/macOS/how to open app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/GUI/macOS/how to open app.png -------------------------------------------------------------------------------- /GUI/macOS/macOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/GUI/macOS/macOS.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/README.md -------------------------------------------------------------------------------- /epub_to_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/epub_to_zip.py -------------------------------------------------------------------------------- /requirments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/requirments.txt -------------------------------------------------------------------------------- /rotate_zip_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean-Zheng/Kox-Moe-Epub-To-Zip/HEAD/rotate_zip_script.py --------------------------------------------------------------------------------