Skip to content

Commit 1127310

Browse files
committed
Add App Store Connect documentation to RELEASE.md
Provides comprehensive details for: - App Store listing configuration - Screenshot requirements and capture process - Age rating and export compliance information Helps maintainers and contributors understand App Store submission process for the app.
1 parent 40e2a3f commit 1127310

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

RELEASE.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,62 @@ For automated uploads, you can use API keys instead of Apple ID:
139139

140140
Generate keys at: App Store Connect → Users and Access → Keys
141141

142+
### App Store Connect Setup
143+
144+
In [App Store Connect](https://appstoreconnect.apple.com), configure:
145+
146+
| Field | Value |
147+
|-------|-------|
148+
| Privacy Policy URL | https://elephant.house/apps/safari-cache-status/privacy/ |
149+
| Support URL | https://elephant.house/apps/safari-cache-status/ |
150+
| Marketing URL | https://elephant.house/apps/safari-cache-status/ |
151+
| Category | Developer Tools |
152+
| Price | Free |
153+
154+
Content for description, keywords, and review notes is in `assets/app_store.md`.
155+
156+
### Screenshots
157+
158+
**Required sizes** (at least one):
159+
160+
| Size | Resolution | Display |
161+
|------|------------|---------|
162+
| Small | 1280 × 800 | MacBook Air 13" |
163+
| Medium | 1440 × 900 | MacBook Pro 13" |
164+
| Large | 2560 × 1600 | MacBook Pro 14" Retina |
165+
| XL | 2880 × 1800 | MacBook Pro 16" Retina |
166+
167+
**Format:** PNG or JPEG, RGB, no alpha, no rounded corners
168+
169+
**What to capture:**
170+
171+
1. Safari with popup open showing HIT status
172+
2. Popup showing MISS with performance metrics
173+
3. Dark mode variant
174+
175+
**How to capture:**
176+
177+
```bash
178+
# Screenshot a window
179+
screencapture -w screenshot.png
180+
181+
# Resize to App Store dimensions
182+
sips -z 1600 2560 screenshot.png --out screenshot-2560x1600.png
183+
```
184+
185+
### Age Rating
186+
187+
| Question | Answer |
188+
|----------|--------|
189+
| Unrestricted Web Access | Yes |
190+
| Everything else | None |
191+
192+
**Result:** Rated 4+
193+
194+
### Export Compliance
195+
196+
Uses encryption? **No** (HTTPS is exempt)
197+
142198
---
143199

144200
## Building Both

0 commit comments

Comments
 (0)