Skip to content

Releases: wordpress-clients/hybrid

v3 🔥

19 Dec 10:28
Compare
Choose a tag to compare

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

11 Jul 07:45
Compare
Choose a tag to compare

2.0.3 (2017-07-11)

  • [BUG] Build iOS App: Error: cordovaProject.projectConfig.getFileResources is not a function #353

To upgrade:

$ git fetch --all
$ git checkout v2.0.3
$ yarn
$ rm -rf platforms/ plugins/
$ npm run restore

v2.0.2

12 Apr 08:59
Compare
Choose a tag to compare

To upgrade:

$ git fetch --all
$ git checkout v2.0.2
$ yarn
$ rm -rf platforms/ plugins/
$ npm run restore

v2.0.1

28 Dec 14:37
Compare
Choose a tag to compare
  • [BUG] Rollback appRate version to avoid regressions until v3 #317
  • [ENHANCEMENT] invalidate service worker cache at every build based on the config.xml app version

To upgrade:

$ git fetch --all
$ git checkout v2.0.1
$ yarn
$ npm run restore

v2.0.0

17 Dec 11:34
Compare
Choose a tag to compare

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

12 Nov 12:45
Compare
Choose a tag to compare

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

01 Nov 18:40
Compare
Choose a tag to compare

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

30 Oct 11:27
Compare
Choose a tag to compare

To upgrade checkout git fetch --all && git checkout v2.0.0-beta14 and run npm i

  • [BUG] Fix Pagination on customPosts #283
  • [FEATURE] Custom posts and custom taxos queries are customizale through the conf #288
  • Add a new scss variable $barHasIconTitleMarginLeft

v2.0.0-beta13

22 Oct 20:54
Compare
Choose a tag to compare

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

18 Sep 16:47
Compare
Choose a tag to compare
  • [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