Skip to content

Commit 382ab2a

Browse files
committed
Remove macOS Intel support, keep only Apple Silicon
1 parent eee30a2 commit 382ab2a

3 files changed

Lines changed: 7 additions & 23 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,6 @@ jobs:
2424
pip install pyinstaller
2525
pyinstaller --onefile --name pokemon-card-generator main.py
2626
27-
# macOS (Intel)
28-
- os: macos-13
29-
platform: macOS-Intel
30-
output_name: pokemon-card-generator-macos-intel
31-
build_command: |
32-
pip install uv
33-
uv pip install --system -e .
34-
pip install pyinstaller
35-
pyinstaller --onefile --name pokemon-card-generator main.py
36-
3727
# macOS (Apple Silicon)
3828
- os: macos-latest
3929
platform: macOS-ARM
@@ -119,8 +109,7 @@ jobs:
119109
| Platform | File | Size |
120110
|----------|------|------|
121111
| 🪟 Windows | `pokemon-card-generator-windows.exe` | ~60 MB |
122-
| 🍎 macOS (Intel) | `pokemon-card-generator-macos-intel` | ~55 MB |
123-
| 🍎 macOS (Apple Silicon) | `pokemon-card-generator-macos-arm` | ~55 MB |
112+
| 🍎 macOS | `pokemon-card-generator-macos-arm` | ~55 MB |
124113
| 🐧 Linux | `pokemon-card-generator-linux` | ~58 MB |
125114
126115
## 🚀 Quick Start
@@ -131,10 +120,10 @@ jobs:
131120
3. Follow the prompts!
132121
133122
### macOS
134-
1. Download the appropriate version (Intel or ARM)
123+
1. Download `pokemon-card-generator-macos-arm`
135124
2. Open Terminal
136-
3. Run: `chmod +x pokemon-card-generator-macos-*`
137-
4. Run: `./pokemon-card-generator-macos-*`
125+
3. Run: `chmod +x pokemon-card-generator-macos-arm`
126+
4. Run: `./pokemon-card-generator-macos-arm`
138127
139128
### Linux
140129
1. Download `pokemon-card-generator-linux`

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ A tool for Pokemon card collectors to generate placeholder cards for organizing
2323
1. Go to [Releases](https://github.com/jasonma1127/ptcg-placeholder/releases/latest)
2424
2. Download the file for your operating system:
2525
- 🪟 Windows: `pokemon-card-generator-windows.exe`
26-
- 🍎 macOS (Intel): `pokemon-card-generator-macos-intel`
27-
- 🍎 macOS (Apple Silicon): `pokemon-card-generator-macos-arm`
26+
- 🍎 macOS: `pokemon-card-generator-macos-arm`
2827
- 🐧 Linux: `pokemon-card-generator-linux`
2928
3. Double-click to run (macOS/Linux: may need to run `chmod +x` first)
3029
4. Follow the on-screen prompts!

USAGE_GUIDE.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,10 @@
1010
| Your Computer | Download This |
1111
|---------------|---------------|
1212
| Windows PC | `pokemon-card-generator-windows.exe` |
13-
| Mac (Intel chip) | `pokemon-card-generator-macos-intel` |
14-
| Mac (M1/M2/M3 chip) | `pokemon-card-generator-macos-arm` |
13+
| Mac (M1/M2/M3/M4) | `pokemon-card-generator-macos-arm` |
1514
| Linux | `pokemon-card-generator-linux` |
1615

17-
**Don't know which Mac you have?**
18-
- Click Apple logo → About This Mac
19-
- If it says "Apple M1" or "Apple M2" → download ARM version
20-
- If it shows "Intel" → download Intel version
16+
**Note for older Intel Mac users:** Please use Option 2 (Run from Source) as pre-built Intel executables are no longer provided.
2117

2218
### Step 2: First Time Setup
2319

0 commit comments

Comments
 (0)