-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Gutenberg: update to v1.20.0 #11052
Gutenberg: update to v1.20.0 #11052
Conversation
You can test the changes on this Pull Request by downloading the APK here. |
@etoledom it seems your strikethrough text is also underlined? I think that might be one of aztec<-> gutenberg limitations when formatting text, aztec might just produce other tags that the one gutenberg format-library supports. 2 is indeed a problem, and more generally for translated text that might be longer. I have also noticed on my older (iOS) device that we were showing the block selection bottom sheet on 2 columns which crops some of the blocks. So in my opinion screen sizes looks like a more general problem we should address, but probably not as part of this release, wdyt? |
Yes that's it! Aztec creates a |
Just tested the version from the store (Beta) and it still happens there, so I guess is not a regression 👍
Agreed! |
Everything else seems to work well. I'm happy to ✅ if all the issues described are not blockers for this PR. |
It's not a regression but it's still pretty serious as caption might have line breaks (at least it's possible on the web) and we might lose content when editing on mobile. |
Tested on iOS and it works well. It might be related to Aztec Android? |
The removal of the newlines in captions on Android is a known issue: |
✅ Fix displaying placeholder for images in some cases when the image cannot be downloaded (wordpress-mobile/gutenberg-mobile#1631) |
RELEASE-NOTES.txt
Outdated
@@ -1,5 +1,9 @@ | |||
14.0 | |||
----- | |||
* Block Editor: Hide image size selection options when image is a url |
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.
The image size selector is still under dev flag, so this should not affect the release build.
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.
The removal of the newlines in captions on Android is a known issue:
wordpress-mobile/gutenberg-mobile#1651
Since this is known issue, there's my ✅ 🎉
As @hypest said it is a known issue. We tried fixing that for the individual tiles but this time an interesting bug happens where the first word of caption can not be styled. |
Just to be sure @pinarol , do you mean that there's a new issue in this PR? Or was it an issue that happened in the attempts to fix the removing caption newlines issue? |
The "First word not stylable" problem is currently reproducible only on individual Gallery tiles because it uses its own RichText and not the Caption component. The existing Caption component was suitable only for blocks so we couldn't use it on tiles. In this PR, newline issue does not exist on tiles because we solved it without noticing the "First word not stylable" regression. We are about to merge a PR to develop that refactors Caption component to make it suitable for both tiles and blocks. After that one is merged, both blocks and tiles will be using the same Caption component so they will have the same bug which is the newline issue. |
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.
LGTM!
The strings update (1294de9) looks good to me. |
Gutenberg mobile "master" PR: wordpress-mobile/gutenberg-mobile#1752
This PR updates the gutenberg-mobile reference to point to the latest release,
v1.20.0
. No wpandroid integration changes introduced.The
libs/gutenberg-mobile
reference is currently pointing to therelease/1.20.0
branch on https://github.com/wordpress-mobile/gutenberg-mobile.When that gets merged to gutenberg-mobile master, I'll update the ref here to point to the merge commit.
Changes:
__DEV__
) (Basic template picker gutenberg-mobile#1576)undo
button pressing gutenberg-mobile#1701)To test:
The block editor should work as normal.
Update release notes: