-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge beta 22.1.0.2 #20527
Merged
Merged
Merge beta 22.1.0.2 #20527
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
fdbe668
Add a PopoverAnchor enum indicating that the anchor could either be a…
salimbraksa c4176a2
Add UIPopoverPresentationController+PopoverAnchor.swift file
salimbraksa 023f66b
Pass a UIBarButtonItem anchor to ReaderShowMenuAction
salimbraksa 5571dc9
Pass a UIBarButtonItem anchor to PostSharingController
salimbraksa a520d13
Update RELEASE-NOTES
salimbraksa 657f3e9
Release script: Update gutenberg-mobile ref
dcalhoun 77e078b
build: Update Gutenberg ref
dcalhoun 5b97fe8
docs: Add release note
dcalhoun 64d5bb1
build: Update Gutenberg ref
dcalhoun d10a1c1
fix: Podfile typo
dcalhoun f3588e2
build: Install Pods
dcalhoun dedeb9d
Merge pull request #20497 from wordpress-mobile/gutenberg/integrate_r…
dcalhoun b99189a
Merge branch 'release/22.1' of github.com:wordpress-mobile/WordPress-…
salimbraksa 35ac8a9
Fix crash when tapping more and share from Reader Details (#20490)
mokagio ff2ebc1
Update app translations – `Localizable.strings`
mokagio 34d562b
Update WordPress metadata translations
mokagio d4b4327
Update Jetpack metadata translations
mokagio 25d5678
Bump version number
mokagio 011c8c3
Merge 'origin/trunk' into merge/release-22.1.0.2-into-trunk
mokagio File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
22.2 | ||
----- | ||
|
||
* [**] [Jetpack-only] Added a dashboard card for purchasing domains. [#20424] | ||
* [**] [internal] Refactored Google SignIn implementation to not use the Google SDK [#20128] | ||
|
||
22.1 | ||
----- | ||
* [**] [internal] Refactor updating account related Core Data operations, which ususally happens during log in and out of the app. [#20394] | ||
* [***] [internal] Refactor uploading photos (from the device photo, the Free Photo library, and other sources) to the WordPress Media Library. Affected areas are where you can choose a photo and upload, including the "Media" screen, adding images to a post, updating site icon, etc. [#20322] | ||
* [**] [WordPress-only] Warns user about sites with only individual plugins not supporting core app features and offers the option to switch to the Jetpack app. [#20408] | ||
* [**] [internal] Refactored Google SignIn implementation to not use the Google SDK [#20128] | ||
* [*] [Reader] Fix an issue that was causing the app to crash when tapping the More or Share buttons in Reader Detail screen. [#20490] | ||
* [*] Block editor: Avoid empty Gallery block error [https://github.com/WordPress/gutenberg/pull/49557] | ||
Comment on lines
+11
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mentioned in PR that these won't make it to the App Store: |
||
|
||
22.0 | ||
----- | ||
|
9 changes: 9 additions & 0 deletions
9
WordPress/Classes/Extensions/UIPopoverPresentationController+PopoverAnchor.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import UIKit | ||
|
||
extension UIPopoverPresentationController { | ||
|
||
enum PopoverAnchor { | ||
case view(UIView) | ||
case barButtonItem(UIBarButtonItem) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As mentioned in the PR description, this entry was in 22.1 because that's where the PR was meant to land after code freeze but I fumbled and it landed on
trunk
instead.