Documentation
README
Update Store
ストアスクリーンショットの自動撮影・合成と、メタデータテキスト(description, release_notes等)の更新を行う。
前提
- デバッグモードのアプリにはストアスクショ用のカスタムエクステンション(
ccpocket.navigateToStoreScenario)が登録済み - Marionette MCPの
call_custom_extensionが使用可能 - ImageMagickがインストール済み(
compose.shで使用) - sim-tap.swift: 同梱のSwiftスクリプト(
scripts/sim-tap.swift)。macOSアクセシビリティAPIでSimulatorのネイティブダイアログ(通知許可等)をラベル指定でタップできる
ワークフロー
Step 1: バージョン確認 & 変更分析
# 最新リリースタグ
git tag -l 'ios/v*' --sort=-v:refname | head -1
# 現在のバージョン
grep '^version:' apps/mobile/pubspec.yaml
# 前回リリースからの変更コミット
git log $(git tag -l 'ios/v*' --sort=-v:refname | head -1)..HEAD --oneline -- apps/mobile/
CHANGELOGの最新セクションも確認:
head -80 CHANGELOG.md
変更内容を分析し、UI変更があったかどうかを判断する。
Step 2: 更新対象の選択
This is the opening of the README. Read the full README on GitHub.