Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to V2er iOS app will be documented in this file.

## v1.1.12 (Build 48)
1. Fix: Configure automatic distribution to internal testers on TestFlight
2. Improvement: Builds now automatically appear for App Store Connect Users group after processing

## v1.1.5 (Build XX)
1. Fix: Resolve online count display bug where count always showed as 0
2. Feature: Add configurable TestFlight release channel (internal/public_beta)
Expand Down
4 changes: 2 additions & 2 deletions V2er/Config/Version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// VERSION_CODE: Build number (must always increase)

// VERSION_NAME - This is what users see (e.g., 1.1.2)
MARKETING_VERSION = 1.1.5
MARKETING_VERSION = 1.1.12

// VERSION_CODE - Internal build number (e.g., 29, 30, 31...)
CURRENT_PROJECT_VERSION = 44
CURRENT_PROJECT_VERSION = 48
8 changes: 6 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ platform :ios do
uses_non_exempt_encryption: false # Required export compliance
}

# Add public beta specific parameters
# Add channel-specific distribution parameters
if is_public_beta
upload_params.merge!({
groups: ["Public Beta", "External Testers", "Beta Testers"], # Public beta groups
Expand All @@ -200,7 +200,11 @@ platform :ios do
})
UI.message("📧 Public beta mode: Will notify external testers and submit for beta review")
else
UI.message("👥 Internal testing mode: No beta review submission required")
# Internal testing mode - automatically distribute to App Store Connect Users group
upload_params.merge!({
groups: ["App Store Connect Users"] # Default internal testing group
})
UI.message("👥 Internal testing mode: Will auto-distribute to App Store Connect Users")
end

# Upload to TestFlight
Expand Down
Loading