├── .github └── workflows │ └── build-and-release.yml ├── .gitignore ├── LICENSE ├── README.md ├── XUnity-LLMTranslateGUI.py.bak ├── core ├── __init__.py ├── api_client.py ├── config_manager.py ├── server.py └── utils.py ├── main.py ├── requirements.txt ├── ui ├── __init__.py ├── app.py ├── components.py └── theme_manager.py └── 打包程序.bat /.github/workflows/build-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/.github/workflows/build-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/README.md -------------------------------------------------------------------------------- /XUnity-LLMTranslateGUI.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/XUnity-LLMTranslateGUI.py.bak -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | # XUnity.LLMTranslate 核心模块 2 | # 包含API通信、服务器管理和配置管理等功能 3 | 4 | __version__ = "3.0.0" -------------------------------------------------------------------------------- /core/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/core/api_client.py -------------------------------------------------------------------------------- /core/config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/core/config_manager.py -------------------------------------------------------------------------------- /core/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/core/server.py -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/core/utils.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.28.0 2 | ttkbootstrap>=1.10.0 3 | pyinstaller>=5.9.0 -------------------------------------------------------------------------------- /ui/__init__.py: -------------------------------------------------------------------------------- 1 | # XUnity.LLMTranslate 界面模块 2 | # 包含GUI界面和主题管理等功能 -------------------------------------------------------------------------------- /ui/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/ui/app.py -------------------------------------------------------------------------------- /ui/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/ui/components.py -------------------------------------------------------------------------------- /ui/theme_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/ui/theme_manager.py -------------------------------------------------------------------------------- /打包程序.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanFengRuYue/XUnity.LLMTranslate/HEAD/打包程序.bat --------------------------------------------------------------------------------