Skip to content

Commit

Permalink
Merge pull request #9050 from wordpress-mobile/release/11.6
Browse files Browse the repository at this point in the history
Merge Release/11.6 into master
  • Loading branch information
jtreanor authored Jan 22, 2019
2 parents 3345816 + ef0e223 commit 01fdb61
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions WordPress/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ android {

defaultConfig {
applicationId "org.wordpress.android"
versionName "11.6-rc-3"
versionCode 668
versionName "11.6-rc-4"
versionCode 670
minSdkVersion 21
targetSdkVersion 26

Expand Down
2 changes: 1 addition & 1 deletion WordPress/metadata/PlayStoreStrings.po
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ msgid ""
"* The Notifications list layout is more readable, as is the Me tab on tablets and large devices.\n"
"* New privacy settings let you remove of geolocation from uploaded images.\n"
"* Better messaging when there is no data to show in the stats screen adds clarity.\n"
"* There was an issue where only admins of self-hosted sites could update their password. Now all users can.\n"
"* There was an issue where some users of self-hosted sites couldn’t update their password. Now all users can.\n"
msgstr ""

msgctxt "release_note_115"
Expand Down
2 changes: 1 addition & 1 deletion WordPress/metadata/release_notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
* The Notifications list layout is more readable, as is the Me tab on tablets and large devices.
* New privacy settings let you remove of geolocation from uploaded images.
* Better messaging when there is no data to show in the stats screen adds clarity.
* There was an issue where only admins of self-hosted sites could update their password. Now all users can.
* There was an issue where some users of self-hosted sites couldn’t update their password. Now all users can.
10 changes: 8 additions & 2 deletions libs/editor/WordPressEditor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,15 @@ dependencies {
api ('com.github.wordpress-mobile.WordPress-Aztec-Android:wordpress-comments:v1.3.14')

if (rootProject.ext.buildGutenbergFromSource) {
implementation project(':react-native-gutenberg-bridge')
implementation (project(':react-native-gutenberg-bridge')) {
exclude group: 'com.squareup.okhttp3'
}
} else {
implementation (waitJitpack('com.github.wordpress-mobile', 'gutenberg-mobile', submoduleGitHash('../../../', 'libs/gutenberg-mobile')))
implementation (waitJitpack('com.github.wordpress-mobile', 'gutenberg-mobile', submoduleGitHash('../../../', 'libs/gutenberg-mobile'))) {
// Inheriting RN's okhttp version can interfere with FluxC SSL handling
// See https://github.com/wordpress-mobile/WordPress-Android/issues/9032 and https://github.com/wordpress-mobile/WordPress-FluxC-Android/issues/919
exclude group: 'com.squareup.okhttp3'
}
}

// Required Aztec dependencies (they should be included but Jitpack seems to be stripping these out)
Expand Down

0 comments on commit 01fdb61

Please sign in to comment.