All Versions
149
Latest Version
Avg Release Cycle
116 days
Latest Release
1254 days ago

Changelog History
Page 14

  • v0.4.8 Changes

    • Don't re-render an ItemView when the view's model "change" event is triggered
  • v0.4.7 Changes

    • ๐Ÿ‘ Allow RegionManager to be instantiated with an el specified in the options
    • ๐Ÿ”„ Change how RegionManagers are added to an Application instance, to reduce memory usage from extraneous types
  • v0.4.6 Changes

    • AppRouter can have it's controller specified directly in the router definition or in the construction function call
    • Extracted Marionette.EventAggregator out in to it's own explicit object
  • v0.4.5 Changes

    • CollectionView closes existing child views before re-rendering itself, when "reset" event of collection is triggered
    • ๐Ÿ”ง CollectionView now has "initialEvents" method which configures it's initial events
    • ๐Ÿ”ง ItemView now has "initialEvents" method which configures it's initial events
  • v0.4.4 Changes

    • CollectionView renders itself when the view's collection "reset" event is fired
    • ItemView renders itself when the view's model "change" event is fired
    • ItemView renders itself when the view's collection "reset" event is fired
  • v0.4.3 Changes

    • ๐Ÿ›  Fixed bug with RegionManagers trying to select element before DOM is ready, to lazy-select the element on first use of show
  • v0.4.2 Changes

    • ๐Ÿ’ฅ BREAKING: Removed the setOptions method from the Callbacks object
    • ๐Ÿ”จ Refactored Callbacks object to use a jQuery Deferred instead of my own code
    • ๐Ÿ›  Fixed template manager's clear so it properly clears a single template, when only one is specified
    • ๐Ÿ”จ Refactored the RegionManager code to support several new features
      • now support returning a jQuery deferred object from a view's render method
      • now have a close method that you can call to close the current view
      • now trigger a "view:show" and "view:close" event
      • correctly remove reference to previous views, allowing garbage collection of the view
      • now support the bindTo and unbindAll methods, for binding/unbinding region manager events
  • v0.4.1 Changes

    • Minor fix to context of template manager callback, to fix issue w/ async template loading
  • v0.4.0 Changes

    • ๐Ÿ’ฅ BREAKING: Rewrote the template manager to be async-template loading friendly
    • ๐Ÿ’ฅ BREAKING: Dropping support for Backbone v0.5.3 and below
    • โž• Added Marionette.Callbacks to manage a collection of callbacks in an async-friendly way
    • Guarantee the execution of app initializer functions, even if they are added after the app has been started.
    • App triggers "start" event after initializers and initializer events
    • โšก๏ธ Updated to Backbone v0.9.1
  • v0.3.1 Changes

    • ๐Ÿ‘‰ Make region managers initialize immediately when calling app.addRegions