Skip to content

Commit

Permalink
Merge pull request #3725 from wordpress-mobile/embed-block-preview
Browse files Browse the repository at this point in the history
Embed block: Implement specific Embed preview
  • Loading branch information
fluiddot authored Aug 11, 2021
2 parents 32a4ffc + 54a44c6 commit bae44c3
Show file tree
Hide file tree
Showing 11 changed files with 1,406 additions and 1,382 deletions.
1 change: 1 addition & 0 deletions bin/generate-podspecs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ EXTERNAL_PODSPECS=$(find "$NODE_MODULES_DIR/react-native/third-party-podspecs" \
"$NODE_MODULES_DIR/react-native-screens" \
"$NODE_MODULES_DIR/react-native-svg" \
"$NODE_MODULES_DIR/react-native-video"\
"$NODE_MODULES_DIR/react-native-webview"\
-type f -name "*.podspec" -print)

for podspec in $EXTERNAL_PODSPECS
Expand Down
1 change: 1 addition & 0 deletions bundle/android/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
<string name="gutenberg_native_button_position" tools:ignore="UnusedResources">Button position</string>
<string name="gutenberg_native_cancel_search" tools:ignore="UnusedResources">Cancel search</string>
<string name="gutenberg_native_change_block_position" tools:ignore="UnusedResources">Change block position</string>
<string name="gutenberg_native_changes_to_featured_image_will_not_be_affected_by_the_undo_redo_b" tools:ignore="UnusedResources">Changes to featured image will not be affected by the undo/redo buttons.</string>
<string name="gutenberg_native_choose_a_file" tools:ignore="UnusedResources">CHOOSE A FILE</string>
<string name="gutenberg_native_choose_audio" tools:ignore="UnusedResources">Choose audio</string>
<string name="gutenberg_native_choose_file" tools:ignore="UnusedResources">Choose file</string>
Expand Down
2,739 changes: 1,376 additions & 1,363 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.

1 change: 1 addition & 0 deletions bundle/ios/GutenbergNativeTranslations.swift
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ private func dummy() {
_ = NSLocalizedString("Button position", comment: "")
_ = NSLocalizedString("Cancel search", comment: "")
_ = NSLocalizedString("Change block position", comment: "")
_ = NSLocalizedString("Changes to featured image will not be affected by the undo/redo buttons.", comment: "")
_ = NSLocalizedString("CHOOSE A FILE", comment: "")
_ = NSLocalizedString("Choose audio", comment: "")
_ = NSLocalizedString("Choose file", comment: "")
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 166 files
5 changes: 1 addition & 4 deletions third-party-podspecs/RNCMaskedView.podspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
"version": "0.1.11-wp",
"summary": "React Native MaskedView component",
"license": "MIT",
"authors": {
"name": "Mike Nedosekin",
"email": "[email protected]"
},
"authors": "Mike Nedosekin <[email protected]>",
"homepage": "https://github.com/react-native-community/react-native-masked-view#readme",
"platforms": {
"ios": "9.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
"homepage": "https://github.com/APSL/react-native-keyboard-aware-scroll-view#readme",
"summary": "A React Native ScrollView component that resizes when the keyboard appears.",
"license": "MIT",
"authors": {
"name": "Alvaro Medina Ballester",
"email": "[email protected]"
},
"authors": "Alvaro Medina Ballester <[email protected]>",
"platforms": {
"ios": "8.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
"version": "3.2.0-wp",
"summary": "A flexible way to handle safe area, also works on Android and web.",
"license": "MIT",
"authors": {
"name": "Janic Duplessis",
"email": "[email protected]"
},
"authors": "Janic Duplessis <[email protected]>",
"homepage": "https://github.com/th3rdwave/react-native-safe-area-context#readme",
"platforms": {
"ios": "9.0",
Expand Down
6 changes: 1 addition & 5 deletions third-party-podspecs/react-native-video.podspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@
"summary": "A <Video /> element for react-native",
"description": "A <Video /> element for react-native",
"license": "MIT",
"authors": {
"name": "Brent Vatne",
"email": "[email protected]",
"url": "https://github.com/brentvatne"
},
"authors": "Brent Vatne <[email protected]> (https://github.com/brentvatne)",
"homepage": "https://github.com/brentvatne/react-native-video",
"source": {
"git": "https://github.com/wordpress-mobile/react-native-video.git",
Expand Down
21 changes: 21 additions & 0 deletions third-party-podspecs/react-native-webview.podspec.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "react-native-webview",
"version": "11.6.5-wp",
"summary": "React Native WebView component for iOS, Android, macOS, and Windows",
"license": "MIT",
"authors": "Jamon Holmgren <[email protected]>",
"homepage": "https://github.com/react-native-webview/react-native-webview#readme",
"platforms": {
"ios": "9.0",
"osx": "10.13"
},
"source": {
"git": "https://github.com/wordpress-mobile/react-native-webview.git",
"tag": "v11.6.5-wp"
},
"source_files": "apple/**/*.{h,m}",
"dependencies": {
"React-Core": []
},
"__WARNING!__": "This file is autogenerated by generate-podspecs.sh script. Do not modify manually. Re-run the script if necessary."
}

0 comments on commit bae44c3

Please sign in to comment.