Skip to content
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

Release 1.77.0 #4888

Merged
merged 16 commits into from
May 27, 2022
5 changes: 5 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Unreleased
---

## 1.77.0
---
* [*] [a11y] Improve text read by screen readers for BottomSheetSelectControl [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4854]
* [*] Add 'Insert from URL' option to Image block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4779]

## 1.76.1
---
* [*] BlockList - Add internal onLayout from CellRendererComponent to BlockListItemCell [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4865]
Expand Down
3 changes: 3 additions & 0 deletions bundle/android/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<string name="gutenberg_native_1_s_2_s" tools:ignore="UnusedResources">%1$s (%2$s)</string>
<!-- translators: accessibility text. Inform about current value. %1$s: Control label %2$s: setting label (example: width), %3$s: Current value. %4$s: value measurement unit (example: pixels) -->
<string name="gutenberg_native_1_s_2_s_is_3_s_4_s" tools:ignore="UnusedResources">%1$s. %2$s is %3$s %4$s.</string>
<!-- translators: %1$s: Select control button label e.g. "Button width". %2$s: Select control option value e.g: "Auto, 25%". -->
<string name="gutenberg_native_1_s_currently_selected_2_s" tools:ignore="UnusedResources">%1$s. Currently selected: %2$s</string>
<!-- translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. -->
<string name="gutenberg_native_1_s_transformed_to_2_s" tools:ignore="UnusedResources">%1$s transformed to %2$s</string>
<string name="gutenberg_native_add_a_new_block_at_any_time_by_tapping_on_the_icon_in_the_toolbar" tools:ignore="UnusedResources">Add a new block at any time by tapping on the + icon in the toolbar on the bottom left.</string>
Expand Down Expand Up @@ -187,6 +189,7 @@
<string name="gutenberg_native_how_to_edit_your_post" tools:ignore="UnusedResources">How to edit your post</string>
<!-- translators: accessibility text. %s: image caption. -->
<string name="gutenberg_native_image_caption_s" tools:ignore="UnusedResources">Image caption. %s</string>
<string name="gutenberg_native_image_file_not_found" tools:ignore="UnusedResources">Image file not found.</string>
<string name="gutenberg_native_insert_crosspost" tools:ignore="UnusedResources">Insert crosspost</string>
<string name="gutenberg_native_insert_mention" tools:ignore="UnusedResources">Insert mention</string>
<string name="gutenberg_native_inside" tools:ignore="UnusedResources">Inside</string>
Expand Down
226 changes: 113 additions & 113 deletions bundle/ios/App.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundle/ios/App.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions bundle/ios/GutenbergNativeTranslations.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ private func dummy() {
_ = NSLocalizedString("%1$s (%2$s)", comment: "translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px")
_ = NSLocalizedString("%1$s transformed to %2$s", comment: "translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header.")
_ = NSLocalizedString("%1$s. %2$s is %3$s %4$s.", comment: "translators: accessibility text. Inform about current value. %1$s: Control label %2$s: setting label (example: width), %3$s: Current value. %4$s: value measurement unit (example: pixels)")
_ = NSLocalizedString("%1$s. Currently selected: %2$s", comment: "translators: %1$s: Select control button label e.g. \"Button width\". %2$s: Select control option value e.g: \"Auto, 25%\".")
_ = NSLocalizedString("%s block", comment: "translators: %s: Block name e.g. \"Image block\"\ntranslators: Block name. %s: The localized block name")
_ = NSLocalizedString("%s block options", comment: "translators: %s: block title e.g: \"Paragraph\".")
_ = NSLocalizedString("%s block, newly available", comment: "translators: Newly available block name. %s: The localized block name")
Expand Down Expand Up @@ -176,6 +177,7 @@ private func dummy() {
_ = NSLocalizedString("How to edit your page", comment: "")
_ = NSLocalizedString("How to edit your post", comment: "")
_ = NSLocalizedString("Image caption. %s", comment: "translators: accessibility text. %s: image caption.")
_ = NSLocalizedString("Image file not found.", comment: "")
_ = NSLocalizedString("Insert crosspost", comment: "")
_ = NSLocalizedString("Insert mention", comment: "")
_ = NSLocalizedString("Inside", comment: "")
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 30 files
+2 −0 docs/contributors/code/react-native/getting-started-react-native.md
+88 −78 docs/contributors/code/react-native/osx-setup-guide.md
+6 −2 packages/block-editor/src/components/media-upload/index.native.js
+31 −6 packages/block-editor/src/components/media-upload/test/index.native.js
+65 −3 packages/block-library/src/image/edit.native.js
+11 −0 packages/block-library/src/image/styles.native.scss
+7 −2 packages/components/src/mobile/bottom-sheet-select-control/index.native.js
+8 −0 packages/edit-post/src/editor.native.js
+1 −1 packages/react-native-aztec/package.json
+1 −1 packages/react-native-bridge/package.json
+5 −0 packages/react-native-editor/CHANGELOG.md
+0 −7 packages/react-native-editor/__device-tests__/gutenberg-editor-block-insertion.test.js
+22 −68 packages/react-native-editor/__device-tests__/gutenberg-editor-cover.test.js
+12 −17 packages/react-native-editor/__device-tests__/[email protected]
+1 −5 packages/react-native-editor/__device-tests__/[email protected]
+16 −18 packages/react-native-editor/__device-tests__/[email protected]
+5 −16 packages/react-native-editor/__device-tests__/gutenberg-editor-lists-end.test.js
+17 −14 packages/react-native-editor/__device-tests__/gutenberg-editor-lists.test.js
+7 −13 packages/react-native-editor/__device-tests__/gutenberg-editor-paragraph.test.js
+1 −13 packages/react-native-editor/__device-tests__/gutenberg-editor-paste.test.js
+5 −14 packages/react-native-editor/__device-tests__/gutenberg-editor-rotation.test.js
+2 −0 packages/react-native-editor/__device-tests__/gutenberg-editor-search.test.js
+19 −59 packages/react-native-editor/__device-tests__/[email protected]
+1 −3 packages/react-native-editor/__device-tests__/gutenberg-editor-spacer.test.js
+2 −3 packages/react-native-editor/__device-tests__/gutenberg-editor-unsupported-blocks.test.js
+130 −37 packages/react-native-editor/__device-tests__/helpers/utils.js
+160 −152 packages/react-native-editor/__device-tests__/pages/editor-page.js
+1 −0 packages/react-native-editor/ios/.ruby-version
+4 −4 packages/react-native-editor/ios/Podfile.lock
+1 −1 packages/react-native-editor/package.json
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gutenberg-mobile",
"version": "1.76.1",
"version": "1.77.0",
"private": true,
"config": {
"jsfiles": "./*.js src/*.js src/**/*.js src/**/**/*.js",
Expand Down