Skip to content

Commit feb06a9

Browse files
committed
修复:文件名
1 parent 45218f8 commit feb06a9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
cd dist
3535
$VERSION = (Get-Item "SD_Models_Manager_v*.exe").BaseName
3636
New-Item -ItemType Directory -Path "$VERSION"
37-
Move-Item "SD_Prompt_Manager_v*.exe" "$VERSION"
37+
Move-Item "SD_Models_Manager_v*.exe" "$VERSION"
3838
Move-Item "templates" "$VERSION"
3939
Move-Item "static" "$VERSION"
4040
Compress-Archive -Path "$VERSION" -DestinationPath "$VERSION.zip"

build.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
def clean_dist():
1313
"""清理之前的构建文件"""
14-
output_name = f"SD_Prompt_Manager_v{VERSION_STR}"
14+
output_name = f"SD_Models_Manager_v{VERSION_STR}"
1515

1616
try:
1717
for item in ['dist', 'build']:
@@ -68,7 +68,7 @@ def prepare_directories():
6868

6969
def build_executable():
7070
"""构建可执行文件"""
71-
output_name = f"SD_Prompt_Manager_v{VERSION_STR}"
71+
output_name = f"SD_Models_Manager_v{VERSION_STR}"
7272

7373
try:
7474
# 设置环境变量以确保正确的编码

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
# 应用信息
66
APP_NAME = "SD Models Manager"
77
COMPANY = "GitHub: c1921"
8-
DESCRIPTION = "SD Prompt Manager - 提示词管理工具"
8+
DESCRIPTION = "Stable Diffusion 模型管理器"
99
COPYRIGHT = "MIT 开源许可 - 版权所有 (c) 2025"

version_info.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ VSVersionInfo(
1818
[StringStruct(u'CompanyName', u'$COMPANY'),
1919
StringStruct(u'FileDescription', u'$DESCRIPTION'),
2020
StringStruct(u'FileVersion', u'$VERSION_STR'),
21-
StringStruct(u'InternalName', u'SDPromptManager'),
21+
StringStruct(u'InternalName', u'SDModelsManager'),
2222
StringStruct(u'LegalCopyright', u'$COPYRIGHT'),
23-
StringStruct(u'OriginalFilename', u'SDPromptManager.exe'),
23+
StringStruct(u'OriginalFilename', u'SDModelsManager.exe'),
2424
StringStruct(u'ProductName', u'$APP_NAME'),
2525
StringStruct(u'ProductVersion', u'$VERSION_STR')])
2626
]),

0 commit comments

Comments
 (0)