Skip to content
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

Untangle http:// and wordpress:// deeplinking URLs #11550

Merged
merged 3 commits into from Mar 30, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 6 additions & 5 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 @@ -14,11 +15,11 @@

* Site Creation: faster site creation, removed intermediate steps. Just select what kind of site you'd like, enter the domain name and the site will be created.
* Fixed a bug where failed post uploads were sometimes being retried indefinitely

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 @@ -31,7 +32,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 @@ -65,7 +66,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 @@ -82,7 +83,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