Releases: wordpress-clients/hybrid
v3 🔥
Complete rewrite with Ionic 2+ (Angular 2+)
Details: #344
There is no way to upgrade v2 to v3.
To start a new project follow the docs: https://wordpress-clients.gitbooks.io/pwa-hybrid/
v2.0.3
v2.0.2
- Downgrade Android-cordova due to http://stackoverflow.com/questions/43195668/cordova-error-using-cordova-android-6-2-0-getfileresources-is-not-a-function
To upgrade:
$ git fetch --all
$ git checkout v2.0.2
$ yarn
$ rm -rf platforms/ plugins/
$ npm run restore
v2.0.1
v2.0.0
2.0.0 REQUIRES WORDPRESS 4.7 or higher!
To upgrade:
$ git fetch --all
$ git checkout v2.0.0
$ yarn
$ npm run restore
- [ENHANCEMENT] WordPress 4.7 ready! #308
- [ENHANCEMENT] Upgrade Cordova plugins #310
- [BUG] Links in Comments open in app instead of safari #306
Breaking changes:
If you upgrade to WordPress 4.7, you can remove WP-API plugin.
filter
params is deprecated, if you use custom query filters here is the changes you need to make:
- "filter[orderby]": "date"
- "filter[order]": "desc"
- "filter[post_status]": "publish"
+ "orderby": "date"
+ "order": "desc"
+ "status": "publish"
in menu.json
you need to change public.taxonomies.slug
by public.taxonomies.id
and replace the slug
of the taxonomie per its id
.
For example:
- "route": "public.taxonomies.slug({ term: 'category', slug: 'uncategorized', postType: 'post' })",
+ "route": "public.taxonomies.id({ term: 'categories', id: 1, postType: 'post' })",
Also terms changed. category
is now categories
and post_tag
is now tags
.
v2.0.0-beta16
To upgrade:
$ git fetch --all
$ git checkout v2.0.0-beta16
$ yarn
$ npm run restore
If you upgrade you will need to remove this crosswalk rule from your config.xml
=> 8143a93#diff-b6bb989dd6bb152b38e30e84f2d7e195L25
- upgrade cordova-ios
- upgrade cordova-android (API 25)
- upgrade crosswalk
- add more logs to admobs
Learn how to reduce the apk size, with Crosswalk lite => https://github.com/shprink/wordpress-hybrid-client/blob/develop/BUILD.md#crosswalk
v2.0.0-beta15
To upgrade checkout git fetch --all && git checkout v2.0.0-beta15
and run npm i
- [BUG] Remove Object.assign ... #294
v2.0.0-beta14
v2.0.0-beta13
To upgrade checkout git checkout v2.0.0-beta13
and run npm i
- [FEATURE] Display app icon in the menu header #5
- [FEATURE] Progressive Web App support (Manifest & service workers)
- Remove share button on browser
v2.0.0-beta12
- [BUG] Display category/tag title instead of slug #59
- [BUG] Fix Russian/Chinese author title encoding
- [BUG] Removing Native transitions
- iOS 10 ready. See notes on BUILD.md