From 4cdad3518858e59951da65f902e6b3f0140bfd72 Mon Sep 17 00:00:00 2001 From: Stefanos Togkoulidis Date: Tue, 29 Jan 2019 17:55:42 +0200 Subject: [PATCH 1/2] Accept SDK licences on JitPack --- jitpack.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 jitpack.yml diff --git a/jitpack.yml b/jitpack.yml new file mode 100644 index 000000000..a79c8ef03 --- /dev/null +++ b/jitpack.yml @@ -0,0 +1,4 @@ +before_install: + - yes | $ANDROID_HOME/tools/bin/sdkmanager "platforms;android-27" + - yes | $ANDROID_HOME/tools/bin/sdkmanager "build-tools;27.0.3" + From fc7c5eb5ef4f23a927e7707c4ba0f3d7aae174ae Mon Sep 17 00:00:00 2001 From: Stefanos Togkoulidis Date: Fri, 1 Feb 2019 12:12:27 +0200 Subject: [PATCH 2/2] Also remove the EMPHASIS style --- aztec/src/main/kotlin/org/wordpress/aztec/AztecText.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/aztec/src/main/kotlin/org/wordpress/aztec/AztecText.kt b/aztec/src/main/kotlin/org/wordpress/aztec/AztecText.kt index 57fadbe92..a7d57c920 100644 --- a/aztec/src/main/kotlin/org/wordpress/aztec/AztecText.kt +++ b/aztec/src/main/kotlin/org/wordpress/aztec/AztecText.kt @@ -1359,6 +1359,7 @@ open class AztecText : AppCompatEditText, TextWatcher, UnknownHtmlSpan.OnUnknown inlineFormatter.removeInlineStyle(AztecTextFormat.FORMAT_BOLD, start, end) inlineFormatter.removeInlineStyle(AztecTextFormat.FORMAT_STRONG, start, end) inlineFormatter.removeInlineStyle(AztecTextFormat.FORMAT_ITALIC, start, end) + inlineFormatter.removeInlineStyle(AztecTextFormat.FORMAT_EMPHASIS, start, end) inlineFormatter.removeInlineStyle(AztecTextFormat.FORMAT_CITE, start, end) inlineFormatter.removeInlineStyle(AztecTextFormat.FORMAT_STRIKETHROUGH, start, end) inlineFormatter.removeInlineStyle(AztecTextFormat.FORMAT_UNDERLINE, start, end)