Skip to content

Releases: ocombe/ocLazyLoad

0.3.6 (2014-09-02)

02 Sep 15:44
Compare
Choose a tag to compare

Bug Fixes

  • concurrency lazy loads (thanks @BenBlazely)
    (4899ea1a,
    #44)

Documentation

  • added a few links to other examples

0.3.5 (2014-08-26)

26 Aug 16:37
Compare
Choose a tag to compare

Bug Fixes

  • fixed cases where the config block would not be called
    (1e29c9d4,
    #5).
    The config block would not be called if:
    • defined multiple times (only the first 1 would be invoked)
    • defined with an auto injected module: ['...', function() {}]
    • defined after another component: angular.module().controler().config()

0.3.4 (2014-08-26)

26 Aug 09:42
Compare
Choose a tag to compare

Bug Fixes

  • make sure reconfig:true always run all invoke blocks
    (361ae6b7,
    #54)
  • the config/run blocks were not invoked without reconfig: true
    (300882a0,
    #5)
  • indexOf polyfill for IE8
    (5f71c09c,
    #52)

Features

  • more log messages for debug
    (bcbca814)

0.3.3 (2014-07-23)

23 Jul 17:40
Compare
Choose a tag to compare

Bug Fixes

0.3.1 (2014-07-14)

14 Jul 13:14
Compare
Choose a tag to compare

Bug Fixes

  • don't reject file load with custom file loaders such as requirejs
    (91ed522f,
    #33)

Features

  • auto changelog from commits msg
    (c089e085)
  • prevent duplicate loadings & add a cache busting param
    (5a5d7f10,
    #38)

0.3.0 (17 June 2014)

16 Jun 23:03
Compare
Choose a tag to compare

Features

  • $ocLazyLoad will now reject promises on errors
  • Use the parameter debug to show log messages in the console
  • JS / CSS / Template loaders are available by default in $ocLazyLoad but you can overwrite them with the config
  • Better doc (finally! \o/)
  • Example1 is now much better !
  • Events broadcasted on module / component / file load (#21)

0.2.0 (20 May 2014)

20 May 16:05
Compare
Choose a tag to compare
  • Added support for $animateProvider #19
  • Added support for CSS Loading (And perhaps other file types in the future) #19
  • Added loadAll function for use when a state requires resolve on more than one asset. #19
  • FIX: Angular JS 1.3.0-beta.8 changed the way config blocks are handled (now invoked last) #19
  • Adopted the MIT license as requested in #20
  • Added a gulpfile to build dist files and update the examples (and, in the future, to do tests before the build). Run npm install to install the new dependencies and npm build to build the dist files.
  • Breaking change moved the src files to /src and the dist files to /dist. Installations via bower will only see the dist folder
  • Moved the examples to /examples

0.1.3 (30 April 2014)

30 Apr 06:50
Compare
Choose a tag to compare
  • Fix for bug #18: merged files and incorrect module loading

0.1.2 (14 April 2014)

14 Apr 12:16
Compare
Choose a tag to compare
  • Fix for bug #16: config blocks didn't work for module dependencies

0.1.1 (08 April 2014)

08 Apr 14:36
Compare
Choose a tag to compare
  • Fix for bug #8: runBlocks can now load new modules (thanks to @rolandzwaga)
  • Added an example that makes use of requirejs and uses ngGrid as a lazy loaded module (thanks to @rolandzwaga)