修复种草图生成:以三合一主图为参考 img2img 生成,按颜色分配(每色优先、超出随机补足);新增 BR/CA/DE/ES/IT/PL/SA 七国配置与提示词;删除验证用测试脚本

This commit is contained in:
2026-08-24 14:02:19 +08:00
parent f493bde8a9
commit 3c341d2e78
51 changed files with 2571 additions and 514 deletions
+7 -1
View File
@@ -4,7 +4,13 @@
a = Analysis(
['ui_app.py'],
pathex=[],
binaries=[],
# 显式指定 conda 的 OpenSSL DLL3.5.6,与 _ssl.pyd 匹配)。
# 若不指定,PyInstaller 会从 PATH 找到 MySQL Server 8.0 自带的 OpenSSL 3.0.15
# 导致 _ssl 加载失败:DLL load failed while importing _ssl。
binaries=[
('C:\\Users\\Admin\\miniconda3\\Library\\bin\\libssl-3-x64.dll', '.'),
('C:\\Users\\Admin\\miniconda3\\Library\\bin\\libcrypto-3-x64.dll', '.'),
],
datas=[('config.yaml', '.'), ('configs', 'configs'), ('prompts', 'prompts'),
('templates', 'templates'), ('basemap', 'basemap'),
('material_library', 'material_library')],