Skip to content

Commit caf4aaa

Browse files
authored
Merge pull request #4296 from wordpress-mobile/merge_release_1.67.0_to_develop
Merge release 1.67.0 to develop
2 parents 595ffbc + 7d10569 commit caf4aaa

File tree

8 files changed

+3113
-3089
lines changed

8 files changed

+3113
-3089
lines changed

RELEASE-NOTES.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
Unreleased
22
---
3+
* [**] Fix undo/redo functionality in links when applying text format [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4290]
4+
5+
1.67.0
6+
---
37
* [**] Adds Clipboard Link Suggestion to Image block and Button block [https://github.com/WordPress/gutenberg/pull/35972]
48
* [*] [Embed block] Included Link in Block Settings [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4189]
59
* [**] Fix tab titles translation of inserter menu [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4248]
10+
* [*] [Media & Text block] Fix an issue where the text font size would be bigger than expected in some cases [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4252]
611
* [**] [Gallery block] When a gallery block is added, the media options are auto opened for v2 of the Gallery block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4277]
7-
* [**] Fix undo/redo functionality in links when applying text format [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4290]
812

913
1.66.0
1014
---

bundle/android/strings.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@
7979
<string name="gutenberg_native_copied_block" tools:ignore="UnusedResources">Copied block</string>
8080
<string name="gutenberg_native_copy_block" tools:ignore="UnusedResources">Copy block</string>
8181
<string name="gutenberg_native_copy_file_url" tools:ignore="UnusedResources">Copy file URL</string>
82+
<!-- translators: Copy URL from the clipboard, https://sample.url -->
83+
<string name="gutenberg_native_copy_url_from_the_clipboard_s" tools:ignore="UnusedResources">Copy URL from the clipboard, %s</string>
8284
<string name="gutenberg_native_create_embed" tools:ignore="UnusedResources">Create embed</string>
8385
<string name="gutenberg_native_create_link" tools:ignore="UnusedResources">Create link</string>
8486
<string name="gutenberg_native_crosspost" tools:ignore="UnusedResources">Crosspost</string>
@@ -159,8 +161,10 @@
159161
<string name="gutenberg_native_failed_to_save_files_please_tap_for_options" tools:ignore="UnusedResources">Failed to save files.\nPlease tap for options.</string>
160162
<string name="gutenberg_native_failed_to_upload_files_please_tap_for_options" tools:ignore="UnusedResources">Failed to upload files.\nPlease tap for options.</string>
161163
<string name="gutenberg_native_featured" tools:ignore="UnusedResources">Featured</string>
164+
<string name="gutenberg_native_featured_image" tools:ignore="UnusedResources">Featured Image</string>
162165
<string name="gutenberg_native_file_block_settings" tools:ignore="UnusedResources">File block settings</string>
163166
<string name="gutenberg_native_file_name" tools:ignore="UnusedResources">File name</string>
167+
<string name="gutenberg_native_from_clipboard" tools:ignore="UnusedResources">From clipboard</string>
164168
<!-- translators: accessibility text. %s: gallery caption. -->
165169
<string name="gutenberg_native_gallery_caption_s" tools:ignore="UnusedResources">Gallery caption. %s</string>
166170
<string name="gutenberg_native_give_it_a_try_by_adding_a_few_blocks_to_your_post_or_page" tools:ignore="UnusedResources">Give it a try by adding a few blocks to your post or page!</string>

bundle/ios/App.js

Lines changed: 3097 additions & 3084 deletions
Large diffs are not rendered by default.

bundle/ios/App.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundle/ios/GutenbergNativeTranslations.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ private func dummy() {
8181
_ = NSLocalizedString("Copied block", comment: "")
8282
_ = NSLocalizedString("Copy block", comment: "")
8383
_ = NSLocalizedString("Copy file URL", comment: "")
84+
_ = NSLocalizedString("Copy URL from the clipboard, %s", comment: "translators: Copy URL from the clipboard, https://sample.url")
8485
_ = NSLocalizedString("Create embed", comment: "")
8586
_ = NSLocalizedString("Create link", comment: "")
8687
_ = NSLocalizedString("Crosspost", comment: "")
@@ -153,8 +154,10 @@ private func dummy() {
153154
_ = NSLocalizedString("Failed to save files.\nPlease tap for options.", comment: "")
154155
_ = NSLocalizedString("Failed to upload files.\nPlease tap for options.", comment: "")
155156
_ = NSLocalizedString("Featured", comment: "")
157+
_ = NSLocalizedString("Featured Image", comment: "")
156158
_ = NSLocalizedString("File block settings", comment: "")
157159
_ = NSLocalizedString("File name", comment: "")
160+
_ = NSLocalizedString("From clipboard", comment: "")
158161
_ = NSLocalizedString("Gallery caption. %s", comment: "translators: accessibility text. %s: gallery caption.")
159162
_ = NSLocalizedString("Give it a try by adding a few blocks to your post or page!", comment: "")
160163
_ = NSLocalizedString("Go back", comment: "")

gutenberg

Submodule gutenberg updated 66 files

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gutenberg-mobile",
3-
"version": "1.66.0",
3+
"version": "1.67.0",
44
"private": true,
55
"config": {
66
"jsfiles": "./*.js src/*.js src/**/*.js src/**/**/*.js",

0 commit comments

Comments
 (0)