Skip to content

Latest commit

 

History

History
94 lines (64 loc) · 2.53 KB

CHANGELOG.md

File metadata and controls

94 lines (64 loc) · 2.53 KB

Changelog

1.3.2

Updated packagr

1.3.1

  • [#24] - Error: Please add a @NgModule annotation in 1.3.0

1.3.0

  • [#23] - Restructure

Breaking change

Distribute now generates different files. Use bundles/ngx-img-fallback.umd.js or its minified version bundles/ngx-img-fallback.umd.min.js.

1.2.0

  • [19] - Support server side rendering

1.1.3

  • [18] - Wrong contents for 1.1.2 in npm

1.1.2

  • [#13] - Fallback image not loaded when the dynamic image source changed

1.1.0

  • Generate UMD bundle

Breaking changes

This breaking change only valid for SYSTEMJS approach,

Now you have to do this in you system.config.js file:

Replace in your packages

var packages = {
    ...
    'ngx-img-fallback': { main: 'dist/bundles/ngx-img-fallback.umd.js' }
}

1.0.0

  • [#15] - Rename project

0.2.3

  • [#14] - Angular 4

0.2.2

  • [#11] - Added (loaded) event

0.2.1

  • [#10] - Error Ionic2 run android device

Breaking changes

Now instead of declaring Ng2ImgFallbackModule you need to import it:

@NgModule({
  imports: [BrowserModule, Ng2ImgFallbackModule],
  declarations: [AppComponent],
  bootstrap: [AppComponent]
})

0.2.0

  • [#10] - Error Ionic2 run android device

Breaking changes

Now instead of declaring Ng2ImgFallback you need to import it:

@NgModule({
  imports: [BrowserModule, Ng2ImgFallback],
  declarations: [AppComponent],
  bootstrap: [AppComponent]
})

0.1.4

  • [#8] - Fixed typings (Can't find main.d.ts file)

0.1.3

  • [#6] - Update to Angular RC6
  • [#7] - Update how-to to Angular RC6
  • Removed version lock from peer dependency

0.1.2

  • [#3] - Update peer dependency
  • [#4] - Update to angular2.0.0-rc.5