Skip to content

Commit

Permalink
Merge pull request #11550 from wordpress-mobile/issue/untangle-deepli…
Browse files Browse the repository at this point in the history
…nking-urls

Untangle http:// and wordpress:// deeplinking URLs
  • Loading branch information
hypest committed Mar 30, 2020
2 parents a2d3389 + 330037f commit 63c6399
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
9 changes: 5 additions & 4 deletions RELEASE-NOTES.txt
@@ -1,6 +1,7 @@
14.6
-----
* Block editor: You can now crop, zoom in/out and rotate images that are already inserted in a post.
* Fix a deeplinking issue that could lead to the app not being open after clicking on some special "wordpress://" URLs.

14.5
-----
Expand All @@ -22,7 +23,7 @@
14.4
-----
* Fix an issue where image is sometimes uploaded with a path to local storage

14.3
-----
* Added search to set page parent screen
Expand All @@ -35,7 +36,7 @@
* Block editor: Fix issue where adding emojis to the post title added strong HTML elements to the title of the post
* Block editor: We’ve introduced a new toolbar that floats above the block you’re editing, which makes navigating your blocks easier — especially complex ones.
* Reader Information Architecture: added tab filtering; added bottom sheet to filter and navigate the followed sites/tags posts.

14.2
-----
* Block editor: Long-press Inserter icon to show options to add before/after
Expand Down Expand Up @@ -69,7 +70,7 @@
* Block Editor: Add support for the Preformatted block.
* Block Editor: Add support for changing Settings in the List Block.
* Block Editor: Add support for Video block settings.

13.8
-----
* Modified Blog Post search to search for posts under all categories.
Expand All @@ -86,7 +87,7 @@
* Fixed time displayed on Post Conflict Detected and Unpublished Revision dialogs
* Block editor: Fix issue when removing image/page break block crashes the app
* Fixed a crash on Samsung devices running Android 5 (Lollipop)

* Removed support for Giphy

13.6
Expand Down
8 changes: 8 additions & 0 deletions WordPress/src/main/AndroidManifest.xml
Expand Up @@ -360,6 +360,13 @@
<data
android:host="notifications"
android:scheme="wordpress" />
</intent-filter>

<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data
android:host="public-api.wordpress.com"
Expand All @@ -376,6 +383,7 @@
android:pathPattern="/post/..*"
android:scheme="http" />
</intent-filter>

</activity>

<!-- Reader Activities -->
Expand Down

0 comments on commit 63c6399

Please sign in to comment.