- Created icon generation script (create_icon.py) - Generated PNG icon (512x512) with word search grid design - Generated ICO file for Windows (multi-resolution) - Updated PyInstaller spec to use platform-appropriate icons - Updated .gitignore to exclude generated icon size variants Icon features: - Light blue gradient background - 5x5 grid with letters spelling WORD, SEARCH, etc. - Highlighted "WORD" in green to show found word - Professional, clean design Windows: icon.ico macOS: icon.icns (generate on macOS with provided commands) Linux: icon.png 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
64 lines
1.3 KiB
Python
64 lines
1.3 KiB
Python
# -*- mode: python ; coding: utf-8 -*-
|
|
|
|
import sys
|
|
import os
|
|
|
|
block_cipher = None
|
|
|
|
# Determine icon path based on platform
|
|
if sys.platform == 'win32':
|
|
icon_file = 'icon.ico'
|
|
elif sys.platform == 'darwin':
|
|
icon_file = 'icon.icns' # Will need to be created on macOS
|
|
else:
|
|
icon_file = 'icon.png'
|
|
|
|
a = Analysis(
|
|
['word_search_generator.py'],
|
|
pathex=[],
|
|
binaries=[],
|
|
datas=[],
|
|
hiddenimports=[],
|
|
hookspath=[],
|
|
hooksconfig={},
|
|
runtime_hooks=[],
|
|
excludes=[],
|
|
win_no_prefer_redirects=False,
|
|
win_private_assemblies=False,
|
|
cipher=block_cipher,
|
|
noarchive=False,
|
|
)
|
|
|
|
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
|
|
|
|
exe = EXE(
|
|
pyz,
|
|
a.scripts,
|
|
a.binaries,
|
|
a.zipfiles,
|
|
a.datas,
|
|
[],
|
|
name='WordSearch',
|
|
debug=False,
|
|
bootloader_ignore_signals=False,
|
|
strip=False,
|
|
upx=True,
|
|
upx_exclude=[],
|
|
runtime_tmpdir=None,
|
|
console=False, # No console window
|
|
disable_windowed_traceback=False,
|
|
argv_emulation=False,
|
|
target_arch=None,
|
|
codesign_identity=None,
|
|
entitlements_file=None,
|
|
icon=icon_file if os.path.exists(icon_file) else None,
|
|
)
|
|
|
|
# macOS app bundle
|
|
app = BUNDLE(
|
|
exe,
|
|
name='WordSearch.app',
|
|
icon=icon_file if sys.platform == 'darwin' and os.path.exists(icon_file) else None,
|
|
bundle_identifier='com.firebugit.wordsearch',
|
|
)
|