Skip to content

Releases: PoslinskiNet/ember-introjs

Bye Bye jQuery πŸ‘‹

04 Apr 17:18
Compare
Choose a tag to compare

Features:

  • Ember 3.0 upgrade
  • Better test helpers (:new: IntroJSSkip test helper)
  • jQuery - not anymore
  • New test API (more sync-like specs) with greater readability
  • Bump IntroJS to 2.18-beta (jQuery free)

Merged pull requests:

Tiny Rick

03 Feb 15:14
de3aaa1
Compare
Choose a tag to compare

Features:

  • Ember 2.18.x update
  • Test helpers rebuild
  • Code clean up
  • Minified version of IntroJs (js & css - 7KB less than the previous release)

Merged pull requests:

v2.2.1

28 Jan 22:38
Compare
Choose a tag to compare

Merged pull requests:

Modules update

19 Oct 19:45
Compare
Choose a tag to compare

Implemented enhancements:

Closed issues:

  • 'steps' property may be invalid #28

Merged pull requests:

2.1.1

01 Jul 15:42
Compare
Choose a tag to compare

Implemented enhancements:

Closed issues:

  • Fix breaking changes in FastBoot 1.0 #22

2.1.0

16 Jun 16:52
Compare
Choose a tag to compare

Implemented enhancements:

2.0.0

23 Apr 09:41
Compare
Choose a tag to compare

Transition guide

The biggest change introduced in the version 2.0.0 is exchanging IntroJS bower dependency to NPM equivalent. The new version has support for FastBoot, and doesn't cause any deprecation errors when is used with the current version of Ember CLI.

To upgrade from version 1.x to 2.0.0 you should:

  1. Update the current version of ember-introjs:
    npm install ember-introjs --save-dev
  2. If you are only using IntroJS via ember-introjs addon then run:
    bower uninstall intro.js --save
    to remove bower dependency, and keep build directory clean, you can reinstall all bower packages with:
    bower prune & bower install
  3. If for some reason, you would like to use IntroJS directly, keep in mind that it is not globally available anymore. You can add it with:
    import introJs from 'ember-introjs/intro-js';