├── .gitignore ├── LICENSE ├── README.md ├── apktool.py ├── assemble.py ├── bin ├── AXMLPrinter.jar ├── VasDolly.jar └── diffuse.jar ├── channel.py ├── config ├── config.yml └── template_diff.html ├── diffuse.py ├── docs └── README-zh.md ├── files.py ├── git_tag.py ├── global_config.py ├── lanzou.py ├── logger.py ├── mailing.py ├── publish.py ├── resources.py ├── run.py ├── strengthen.py └── telegram_bot.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/README.md -------------------------------------------------------------------------------- /apktool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/apktool.py -------------------------------------------------------------------------------- /assemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/assemble.py -------------------------------------------------------------------------------- /bin/AXMLPrinter.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/bin/AXMLPrinter.jar -------------------------------------------------------------------------------- /bin/VasDolly.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/bin/VasDolly.jar -------------------------------------------------------------------------------- /bin/diffuse.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/bin/diffuse.jar -------------------------------------------------------------------------------- /channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/channel.py -------------------------------------------------------------------------------- /config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/config/config.yml -------------------------------------------------------------------------------- /config/template_diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/config/template_diff.html -------------------------------------------------------------------------------- /diffuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/diffuse.py -------------------------------------------------------------------------------- /docs/README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/docs/README-zh.md -------------------------------------------------------------------------------- /files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/files.py -------------------------------------------------------------------------------- /git_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/git_tag.py -------------------------------------------------------------------------------- /global_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/global_config.py -------------------------------------------------------------------------------- /lanzou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/lanzou.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/logger.py -------------------------------------------------------------------------------- /mailing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/mailing.py -------------------------------------------------------------------------------- /publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/publish.py -------------------------------------------------------------------------------- /resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/resources.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/run.py -------------------------------------------------------------------------------- /strengthen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/strengthen.py -------------------------------------------------------------------------------- /telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shouheng88/autopackage/HEAD/telegram_bot.py --------------------------------------------------------------------------------