Skip to content

Releases: knownasilya/ember-toastr

Engines

11 Jul 20:34
Compare
Choose a tag to compare

v1.7.0

  • fix nested addon/engine support
  • teardown toasts on teardown

Actually Fix

10 May 13:29
Compare
Choose a tag to compare

v1.6.2

  • Actually fix the node dependency resolution

Fix add npm package

09 May 03:29
Compare
Choose a tag to compare

v1.6.1

  • It seems i have introduced a bug here by passing an object, whenever you would run ember install ember-toastr it would try to npm install [object Object]

  • up with patch version number

NPM

08 May 13:39
Compare
Choose a tag to compare
NPM

v1.6.0

  • Use npm for the toastr dependency, see #16
  • Able to remove individual toasts, see #12

Remove toasts and toasts property

10 Jan 18:54
Compare
Choose a tag to compare

v1.5.0

Enhancements

  • Allow removing individual toasts
let item = this.toast.info('hello');
this.toast.remove(item);
  • Allow clearing individual toasts
let item = this.toast.info('hello');
this.toast.clear(item);
  • Save toasts to the toasts property and auto remove when hidden

Thanks to @baseballlover723 for PR #11

Nested fix

14 Jun 18:08
Compare
Choose a tag to compare

v1.4.1

  • Fix nested support, see #10

clear and remove methods

08 Jan 13:51
Compare
Choose a tag to compare
  • Add clear and remove methods to service [#8]

Docs

16 Nov 16:19
Compare
Choose a tag to compare

Fixes

  • Update readme to reflect transition to service

Service

16 Nov 14:29
Compare
Choose a tag to compare

New Features

  • toast is now a service (see #7)

Fixes

  • Remove a forgotten console.log (see #7)

Options

16 Nov 04:17
Compare
Choose a tag to compare

New Features

  • Add option argument to all methods (see #5)

Fixes

  • Fix dummy app examples