Skip to content

Commit c35eeb4

Browse files
codewizdaveclaude
andcommitted
feat(build): rename executable to wareflowx and fix icon
Changes: - Rename executable from Warehouse-GUI.exe to wareflowx.exe - Crop icon to square aspect ratio (848x848) for proper Windows icon - Update version info to 0.7.11.0 - Add version_info metadata to Windows executable The icon is now properly displayed as a square multi-resolution ICO instead of being stretched from rectangular source image. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent b3ccc3d commit c35eeb4

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

build/gui.spec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ exe = EXE(
151151
a.zipfiles,
152152
a.datas,
153153
[],
154-
name='Warehouse-GUI',
154+
name='wareflowx',
155155
debug=False,
156156
bootloader_ignore_signals=False,
157157
strip=False,
@@ -165,4 +165,5 @@ exe = EXE(
165165
codesign_identity=None,
166166
entitlements_file=None,
167167
icon=os.path.join(SPEC_DIR, 'icon.ico'),
168+
version_info=os.path.join(SPEC_DIR, 'version_info.txt'),
168169
)

build/icon.ico

12.5 KB
Binary file not shown.

build/version_info.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ VSVersionInfo(
77
ffi=FixedFileInfo(
88
# File version and product version numbers
99
# (major, minor, build, revision)
10-
filevers=(0, 6, 0, 0),
11-
prodvers=(0, 6, 0, 0),
10+
filevers=(0, 7, 11, 0),
11+
prodvers=(0, 7, 11, 0),
1212

1313
# Mask for file flags
1414
mask=0x3f,
@@ -39,12 +39,12 @@ VSVersionInfo(
3939
[
4040
StringStruct(u'CompanyName', u'Wareflow'),
4141
StringStruct(u'FileDescription', u'Warehouse Data Analysis GUI'),
42-
StringStruct(u'FileVersion', u'0.6.0.0'),
43-
StringStruct(u'InternalName', u'Warehouse-GUI'),
42+
StringStruct(u'FileVersion', u'0.7.11.0'),
43+
StringStruct(u'InternalName', u'wareflowx'),
4444
StringStruct(u'LegalCopyright', u'MIT License'),
45-
StringStruct(u'OriginalFilename', u'Warehouse-GUI.exe'),
45+
StringStruct(u'OriginalFilename', u'wareflowx.exe'),
4646
StringStruct(u'ProductName', u'Wareflow Analysis'),
47-
StringStruct(u'ProductVersion', u'0.6.0.0'),
47+
StringStruct(u'ProductVersion', u'0.7.11.0'),
4848
StringStruct(u'Comments', u'Warehouse data analysis and reporting tool'),
4949
]
5050
)

0 commit comments

Comments
 (0)