Skip to content

Commit e3a3fcb

Browse files
feat: update app icon
1 parent e5e76c5 commit e3a3fcb

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

CLAUDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
1818

1919
### Building Executable
2020
- Install PyInstaller: `uv pip install pyinstaller`
21-
- Build using existing spec file: `pyinstaller glimpse.spec`
22-
- Manual build with custom icon: `pyinstaller --noconfirm --onefile --windowed --icon=app_icon.ico --name=glimpse main.py`
23-
- Build without icon (fallback): `pyinstaller --noconfirm --onefile --windowed main.py`
21+
- **Recommended**: Build using spec file: `pyinstaller glimpse.spec`
22+
- Manual build (Windows): `pyinstaller --noconfirm --onefile --windowed --icon=app_icon.ico --name=glimpse main.py`
23+
- Manual build (Linux/macOS): `pyinstaller --noconfirm --onefile --windowed --icon=app_icon.png --name=glimpse main.py`
2424
- Output binary will be in the `dist/` folder
25-
- **Note**: Uses `app_icon.ico` for Windows builds, `app_icon.png` for other platforms
25+
- **Cross-platform icons**: Spec file bundles both PNG and ICO, runtime selects appropriate format
2626

2727
## Architecture
2828

app_icon.ico

29.7 KB
Binary file not shown.

app_icon.png

-53.4 KB
Loading

0 commit comments

Comments
 (0)