├── .github └── workflows │ └── publish_release.yaml ├── .gitignore ├── .gitmodules ├── DebugLauncher.bat ├── EnableLongPath.reg ├── LICENSE ├── Launcher.exe ├── README.md ├── c_launcher └── launcher.cpp ├── config └── json_doc │ ├── Common.yaml │ └── Common.zh_CN.yaml ├── configs ├── .gitkeep ├── SRC-dev.json ├── giachina.json └── giaglobal.json ├── docs ├── GIA.json └── PGPL-demo_zh-cn.gif ├── gui.py ├── i18n.py ├── path_lib.py ├── pgpl ├── __init__.py ├── __main__.py ├── advance_page.py ├── config_editer.py ├── console.py ├── core.py ├── inputimeout.py ├── log_handler.py ├── logger.py ├── managers.py ├── packageinit.py ├── page.py ├── page_manager.py ├── pages.py ├── pgpl_pth.py ├── utils.py ├── webio.py └── webio_utils.py ├── requirements.txt └── translation ├── generate_pot.py ├── locale ├── en_US │ └── LC_MESSAGES │ │ └── en_US.po └── zh_CN │ └── LC_MESSAGES │ └── zh_CN.po ├── msgfmt.py ├── pygettext.py ├── readme.md └── test.py /.github/workflows/publish_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/.github/workflows/publish_release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DebugLauncher.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/DebugLauncher.bat -------------------------------------------------------------------------------- /EnableLongPath.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/EnableLongPath.reg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /Launcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/Launcher.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/README.md -------------------------------------------------------------------------------- /c_launcher/launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/c_launcher/launcher.cpp -------------------------------------------------------------------------------- /config/json_doc/Common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/config/json_doc/Common.yaml -------------------------------------------------------------------------------- /config/json_doc/Common.zh_CN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/config/json_doc/Common.zh_CN.yaml -------------------------------------------------------------------------------- /configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/SRC-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/configs/SRC-dev.json -------------------------------------------------------------------------------- /configs/giachina.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/configs/giachina.json -------------------------------------------------------------------------------- /configs/giaglobal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/configs/giaglobal.json -------------------------------------------------------------------------------- /docs/GIA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/docs/GIA.json -------------------------------------------------------------------------------- /docs/PGPL-demo_zh-cn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/docs/PGPL-demo_zh-cn.gif -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/gui.py -------------------------------------------------------------------------------- /i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/i18n.py -------------------------------------------------------------------------------- /path_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/path_lib.py -------------------------------------------------------------------------------- /pgpl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgpl/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/__main__.py -------------------------------------------------------------------------------- /pgpl/advance_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/advance_page.py -------------------------------------------------------------------------------- /pgpl/config_editer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/config_editer.py -------------------------------------------------------------------------------- /pgpl/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/console.py -------------------------------------------------------------------------------- /pgpl/core.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgpl/inputimeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/inputimeout.py -------------------------------------------------------------------------------- /pgpl/log_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/log_handler.py -------------------------------------------------------------------------------- /pgpl/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/logger.py -------------------------------------------------------------------------------- /pgpl/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/managers.py -------------------------------------------------------------------------------- /pgpl/packageinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/packageinit.py -------------------------------------------------------------------------------- /pgpl/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/page.py -------------------------------------------------------------------------------- /pgpl/page_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/page_manager.py -------------------------------------------------------------------------------- /pgpl/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/pages.py -------------------------------------------------------------------------------- /pgpl/pgpl_pth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/pgpl_pth.py -------------------------------------------------------------------------------- /pgpl/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/utils.py -------------------------------------------------------------------------------- /pgpl/webio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/webio.py -------------------------------------------------------------------------------- /pgpl/webio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/pgpl/webio_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/requirements.txt -------------------------------------------------------------------------------- /translation/generate_pot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/translation/generate_pot.py -------------------------------------------------------------------------------- /translation/locale/en_US/LC_MESSAGES/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/translation/locale/en_US/LC_MESSAGES/en_US.po -------------------------------------------------------------------------------- /translation/locale/zh_CN/LC_MESSAGES/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/translation/locale/zh_CN/LC_MESSAGES/zh_CN.po -------------------------------------------------------------------------------- /translation/msgfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/translation/msgfmt.py -------------------------------------------------------------------------------- /translation/pygettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/translation/pygettext.py -------------------------------------------------------------------------------- /translation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/translation/readme.md -------------------------------------------------------------------------------- /translation/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infstellar/python-git-program-launcher/HEAD/translation/test.py --------------------------------------------------------------------------------