diff --git a/CHANGELOG.md b/CHANGELOG.md
index b980e8ca..2c610ec0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,11 @@
## Improved
*
+# 1.27.0
+
+## Improved
+* VoiceOver and Voice Control experience
+
# 1.26.0
## New
diff --git a/Cineaste.xcodeproj/project.pbxproj b/Cineaste.xcodeproj/project.pbxproj
index 4c5b84bb..ba6a5f15 100644
--- a/Cineaste.xcodeproj/project.pbxproj
+++ b/Cineaste.xcodeproj/project.pbxproj
@@ -1866,7 +1866,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 733;
+ CURRENT_PROJECT_VERSION = 737;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = MovieReleaseWidgetExtension/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
@@ -1898,7 +1898,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 733;
+ CURRENT_PROJECT_VERSION = 737;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = MovieReleaseWidgetExtension/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
@@ -1926,7 +1926,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 733;
+ CURRENT_PROJECT_VERSION = 737;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = SelectMovieIntentExtension/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
@@ -1954,7 +1954,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 733;
+ CURRENT_PROJECT_VERSION = 737;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = SelectMovieIntentExtension/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
@@ -2026,7 +2026,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 733;
+ CURRENT_PROJECT_VERSION = 737;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = Cineaste/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
@@ -2052,7 +2052,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 733;
+ CURRENT_PROJECT_VERSION = 737;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = Cineaste/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
diff --git a/Cineaste/Info.plist b/Cineaste/Info.plist
index cd4e7aa5..84999800 100644
--- a/Cineaste/Info.plist
+++ b/Cineaste/Info.plist
@@ -15,9 +15,9 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 1.26.0
+ 1.27.0
CFBundleVersion
- 733
+ 737
INIntentsSupported
DynamicMovieSelectionIntent
diff --git a/CineasteSnapshotTests/Info.plist b/CineasteSnapshotTests/Info.plist
index 7aca03e4..2f7f4c02 100644
--- a/CineasteSnapshotTests/Info.plist
+++ b/CineasteSnapshotTests/Info.plist
@@ -15,9 +15,9 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 1.26.0
+ 1.27.0
CFBundleVersion
- 733
+ 737
NSPrincipalClass
CineasteSnapshotTests.XCTestObserver
diff --git a/CineasteTests/Info.plist b/CineasteTests/Info.plist
index af2ea5a0..beec5d50 100644
--- a/CineasteTests/Info.plist
+++ b/CineasteTests/Info.plist
@@ -15,9 +15,9 @@
CFBundlePackageType
BNDL
CFBundleShortVersionString
- 1.26.0
+ 1.27.0
CFBundleVersion
- 733
+ 737
NSPrincipalClass
CineasteTests.XCTestObserver
diff --git a/CineasteUITests/Info.plist b/CineasteUITests/Info.plist
index 0a47044e..04c4574e 100644
--- a/CineasteUITests/Info.plist
+++ b/CineasteUITests/Info.plist
@@ -15,8 +15,8 @@
CFBundlePackageType
BNDL
CFBundleShortVersionString
- 1.26.0
+ 1.27.0
CFBundleVersion
- 733
+ 737
diff --git a/CineasteUITests/ScreenshotsUITests.swift b/CineasteUITests/ScreenshotsUITests.swift
index c21fd449..dea002d5 100644
--- a/CineasteUITests/ScreenshotsUITests.swift
+++ b/CineasteUITests/ScreenshotsUITests.swift
@@ -182,17 +182,20 @@ extension ScreenshotsUITests {
private func namedSnapshot(_ name: String) {
Task {
- var snapshotName = name
+ await snapshot(snapshotName(for: name), timeWaitingForIdle: 0)
+ }
+ }
- if app.launchArguments.contains("UICTContentSizeCategoryAccessibilityL") {
- snapshotName += "_a11y"
- }
+ private func snapshotName(for name: String) -> String {
+ var snapshotName = name
- if app.launchArguments.contains("UI_TEST_DARK_MODE") {
- snapshotName += "_dark"
- }
+ if app.launchArguments.contains("UICTContentSizeCategoryAccessibilityL") {
+ snapshotName += "_a11y"
+ }
- await snapshot(snapshotName, timeWaitingForIdle: 0)
+ if app.launchArguments.contains("UI_TEST_DARK_MODE") {
+ snapshotName += "_dark"
}
+ return snapshotName
}
}
diff --git a/MovieReleaseWidgetExtension/Info.plist b/MovieReleaseWidgetExtension/Info.plist
index 649f9ed0..bb27f25b 100644
--- a/MovieReleaseWidgetExtension/Info.plist
+++ b/MovieReleaseWidgetExtension/Info.plist
@@ -17,9 +17,9 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 1.26.0
+ 1.27.0
CFBundleVersion
- 733
+ 737
NSExtension
NSExtensionPointIdentifier
diff --git a/SelectMovieIntentExtension/Info.plist b/SelectMovieIntentExtension/Info.plist
index 16ac8c81..f7cce2d4 100644
--- a/SelectMovieIntentExtension/Info.plist
+++ b/SelectMovieIntentExtension/Info.plist
@@ -17,9 +17,9 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 1.26.0
+ 1.27.0
CFBundleVersion
- 733
+ 737
NSExtension
NSExtensionAttributes
diff --git a/fastlane/Fastfile b/fastlane/Fastfile
index d6b49ba3..8829c619 100644
--- a/fastlane/Fastfile
+++ b/fastlane/Fastfile
@@ -10,15 +10,15 @@ Scheme_UnitTests = 'UnitTests'
Scheme_SnapshotTests = 'SnapshotTests'
Scheme_UITests = 'UITests'
-Test_Device = 'iPhone SE (3rd generation) (17.0)'
+Test_Device = 'iPhone SE (3rd generation)'
Test_Devices = [
- 'iPhone SE (3rd generation) (17.0',
- 'iPhone 8 Plus',
- 'iPhone 11 Pro',
- 'iPhone 11 Pro Max',
- 'iPad Pro (9.7-inch)',
- 'iPad Pro (11-inch) (2nd generation)',
- 'iPad Pro (12.9-inch) (4th generation)'
+ 'iPhone SE (3rd generation)',
+ 'iPhone 15',
+ 'iPhone 15 Plus',
+ 'iPhone 15 Pro Max',
+ 'iPad mini (6th generation)',
+ 'iPad Pro (11-inch) (4th generation)',
+ 'iPad Pro (12.9-inch) (6th generation)'
]
Test_Language = 'en-US'
Test_Languages = [
@@ -26,7 +26,7 @@ Test_Languages = [
'de-DE'
]
-$version_number_to_set = '1.26.0'
+$version_number_to_set = '1.27.0'
$build_number_to_set = number_of_commits.to_s
$ipaName = "#{ProjectName}-#{$version_number_to_set}-#{$build_number_to_set}"
@@ -78,7 +78,7 @@ lane :screenshots do
scheme: Scheme_UITests,
stop_after_first_error: true,
test_without_building: true
-
+
# Enable the following launch arguments to test dynamic type
# , launch_arguments: [
# "-UIPreferredContentSizeCategoryName UICTContentSizeCategoryAccessibilityL",