-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[Gutenberg] Disable Story block #20005
Changes from 8 commits
f4983b0
651aef7
dc2b0e8
79018e5
f8d5d41
6f5e57c
df45fc7
8c233d4
4bc201c
a127530
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2490,7 +2490,6 @@ private GutenbergPropsBuilder getGutenbergPropsBuilder() { | |||||||||||||||||||||
false, | ||||||||||||||||||||||
false, | ||||||||||||||||||||||
false, | ||||||||||||||||||||||
false, | ||||||||||||||||||||||
true, | ||||||||||||||||||||||
false, | ||||||||||||||||||||||
!isFreeWPCom, | ||||||||||||||||||||||
|
@@ -2513,7 +2512,6 @@ private GutenbergPropsBuilder getGutenbergPropsBuilder() { | |||||||||||||||||||||
SiteUtils.supportsEmbedVariationFeature(mSite, SiteUtils.WP_INSTAGRAM_EMBED_JETPACK_VERSION), | ||||||||||||||||||||||
SiteUtils.supportsEmbedVariationFeature(mSite, SiteUtils.WP_LOOM_EMBED_JETPACK_VERSION), | ||||||||||||||||||||||
SiteUtils.supportsEmbedVariationFeature(mSite, SiteUtils.WP_SMARTFRAME_EMBED_JETPACK_VERSION), | ||||||||||||||||||||||
SiteUtils.supportsStoriesFeature(mSite, mJetpackFeatureRemovalPhaseHelper), | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The value removed was the one in position 9 corresponding to Lines 12 to 21 in c3f4075
|
||||||||||||||||||||||
mSite.isUsingWpComRestApi(), | ||||||||||||||||||||||
enableXPosts, | ||||||||||||||||||||||
isUnsupportedBlockEditorEnabled, | ||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
gradle.ext.fluxCBinaryPath = "org.wordpress:fluxc" | ||
gradle.ext.wputilsBinaryPath = "org.wordpress:utils" | ||
gradle.ext.gutenbergMobileBinaryPath = "org.wordpress-mobile.gutenberg-mobile:react-native-gutenberg-bridge" | ||
gradle.ext.gutenbergMobileBinaryPath = "org.wordpress.gutenberg-mobile:react-native-gutenberg-bridge" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Following #20042, this change is needed to retrieve the GBM binaries. |
||
gradle.ext.includedBuildGutenbergMobilePath = null | ||
gradle.ext.loginFlowBinaryPath = "org.wordpress:login" | ||
gradle.ext.storiesAndroidPath = "com.automattic:stories" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The value removed was the one in position 9 corresponding to
enableMediaFilesCollectionBlocks
.WordPress-Android/libs/editor/src/main/java/org/wordpress/android/editor/gutenberg/GutenbergPropsBuilder.kt
Lines 12 to 21 in c3f4075
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for this note. 😅 We should consider refactoring this in the future to avoid so many unnamed parameters.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Definitely 😅. Thanks that Android Studio displays the parameter name.