Skip to content

Commit

Permalink
Merge pull request #1627 from wordpress-mobile/release/1.18.0
Browse files Browse the repository at this point in the history
Release v1.18.0
maxme authored Nov 29, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents 7e1dbd8 + e3868b3 commit 03b0941
Showing 26 changed files with 3,670 additions and 3,470 deletions.
5 changes: 5 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.18.0
------
* [iOS] Added native fullscreen preview when clicking image from Image Block
* New block: Spacer

1.17.0
------
* Include block title in Unsupported block's UI
4 changes: 2 additions & 2 deletions __device-tests__/helpers/test-data.js
Original file line number Diff line number Diff line change
@@ -72,8 +72,8 @@ exports.blockInsertionHtmlFromTitle = `<!-- wp:paragraph -->

exports.imageCaption = `C'est la vie my friends`;

exports.imageCompletehtml = `<!-- wp:image {"id":1} -->
<figure class="wp-block-image"><img src="https://cldup.com/cXyG__fTLN.jpg" alt="" class="wp-image-1"/><figcaption>C'est la vie my friends</figcaption></figure>
exports.imageCompletehtml = `<!-- wp:image {"id":1,"sizeslug":"large"} -->
<figure class="wp-block-image size-large"><img src="https://cldup.com/cXyG__fTLN.jpg" alt="" class="wp-image-1"/><figcaption>C'est la vie my friends</figcaption></figure>
<!-- /wp:image -->
<!-- wp:paragraph -->
5 changes: 5 additions & 0 deletions android/app/src/main/java/com/gutenberg/MainApplication.java
Original file line number Diff line number Diff line change
@@ -3,6 +3,8 @@
import android.app.Application;
import android.util.Log;

import androidx.core.util.Consumer;

import com.facebook.react.ReactApplication;
import com.brentvatne.react.ReactVideoPackage;
import com.facebook.react.bridge.ReadableArray;
@@ -109,6 +111,9 @@ public void editorDidEmitLog(String message, LogLevel logLevel) {
break;
}
}

@Override
public void performRequest(String path, Consumer<String> onSuccess, Consumer<String> onError) {}
});

return new ReactNativeHost(this) {
3,470 changes: 1,744 additions & 1,726 deletions bundle/android/App.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions bundle/android/strings.xml
Original file line number Diff line number Diff line change
@@ -33,6 +33,8 @@
<string name="gutenberg_native_double_tap_to_undo_last_change" tools:ignore="UnusedResources">"Double tap to undo last change"</string>
<string name="gutenberg_native_empty" tools:ignore="UnusedResources">"Empty"</string>
<string name="gutenberg_native_failed_to_insert_media_please_tap_for_options" tools:ignore="UnusedResources">"Failed to insert media.\nPlease tap for options."</string>
<string name="gutenberg_native_feature_activated" tools:ignore="UnusedResources">"Feature activated"</string>
<string name="gutenberg_native_feature_deactivated" tools:ignore="UnusedResources">"Feature deactivated"</string>
<string name="gutenberg_native_help_icon" tools:ignore="UnusedResources">"Help icon"</string>
<string name="gutenberg_native_here_is_the_panel_content" tools:ignore="UnusedResources">"Here is the panel content!"</string>
<string name="gutenberg_native_hide_keyboard" tools:ignore="UnusedResources">"Hide keyboard"</string>
Loading

0 comments on commit 03b0941

Please sign in to comment.