All Versions
12
Latest Version
Avg Release Cycle
8 days
Latest Release
3939 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.5.3 Changes
July 09, 2014- Optionally use
new
when creating views - ๐ Fixed issue with expressions failing and not returning null
- Optionally use
-
v0.5.2 Changes
June 16, 2014- Added
initialize
. If this method exists, it will be called after thecreated
event.
- Added
-
v0.5.1 Changes
June 15, 2014- ๐ Fixed issue with text bindings not rendering elements if there was whitespace around it
-
v0.5.0 Changes
June 14, 2014- โ removed the
scope
option. This cleaned up a lot of code, but it means the each plugin won't work in it's current state. Instead, we'll prefer to pass in views instead of just building sub-views from templates. It makes the library smaller and the code more maintainable. - โ Removed the need to use
.parse
. - Views now have the signature
new View(attrs, options)
instead of using thedata
property. - ๐ New
View.attr
method for defining attributes. This lets us create getters/setters and means plugins can do cool things with the attributes (like making them required, setting defaults or enforcing a type). - Once attributes are defined using
attr
you can access them likeview.name = 'foo'
instead of doingview.set('name', 'foo')
. Although the get and set methods still exist. - โ Removed a bunch of the files and make it simpler. Specifically removed the
model
. - Views now have a unique ID
- Consistent code formatting
- Owner can only be set once and can't be changed. If this restriction doesn't work in practice we can revisit.
- Text bindings will render objects that have a .el property. This means you can set other views as attributes on a view and it will render it.
- โ Removed
create
and the ability to create child views. This was only used for the each plugin. Instead, create views and add their plugins manually. Less magic. - Interpolator can't be accessed now, meaning you can't change delimiters. This is an edge case and probably doesn't need to be used, it now means we don't need a different interpolator for every view created.
- โฌ๏ธ Bumped component to v1.
- ๐ Directives now remove the attributes from the template before rendering
- โ removed the
-
v0.4.0 Changes
April 29, 2014- Allow watching for all changes with
view.watch(callback)
- Using an updated/simplified path observer -
0.2.0
- Added
view.create
method for creating child views with the same bindings - Moved
render
into the view so it can be modified by plugins. eg. virtual dom
- Allow watching for all changes with
-
v0.3.5 Changes
April 23, 2014- Added make targets for releases
-
v0.3.4 Changes
April 23, 2014- Fixed before/after helper methods
- Updated examples README.md
- Updated clock example
-
v0.3.3 Changes
April 20, 2014- Merge pull request #11 from olivoil/master
- Continue walking DOM nodes after child binding
- Merge pull request #6 from Nami-Doc/patch-1
- Fix small typo
- Added docs on composing views
- Updated docs
-
v0.3.2 Changes
April 18, 2014- Using raf-queue which is a simpler version of fastdom
- Made requirable by browserify
- Added docs and examples
-
v0.3.1
April 13, 2014