Skip to content

Commit

Permalink
v0.1.30
Browse files Browse the repository at this point in the history
  • Loading branch information
gadicc committed Dec 15, 2014
1 parent bd5c9e3 commit 69bfef0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
19 changes: 12 additions & 7 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## vNEXT

## v0.1.30

* ~~Fix some flicker that snuck back (use Engine.nextTick instead of .defer)~~
(not yet; was in some of the .rc releases)

Expand Down Expand Up @@ -34,11 +36,13 @@
Document pattern to retrigger `true`-sized Surface size calculations.
(#163)

* XXX finalize names before release
registerables: onRenderTree() callback (not used in the end)
views: postRender() callback (was only for modifiers until now)
surfaces: Template.x.onDocumentDom() callback
internal: when called with inclusion, store fview.template
* Registerables: onRenderTree() callback (not used for anything yet)
Views: postRender() callback (was only available for modifiers until now)
~~Surfaces: Template.x.onDocumentDom() callback, but this is now the
default behaviour for .rendered() - so rather use that~~

* Internal: when called with inclusion, store a link to the used template
in `fview.template`.

* `FView.from()` and `FView.fromBlazeView()` now return an fview on the
given blazeView if it exists, and not only from it's ancestors.
Expand All @@ -49,8 +53,9 @@
* For **Surfaces**, Template.x.rendered now runs after the template has
been rendered *and added to the document*. This is later than before,
but more in line with how Meteor does things and allows for more
intuitive use. XXX should get rid of Template.x.onDocumentDom and
store elsewhere before release. (#192)
intuitive use. E.g. jQuery plugins work better. Note, even though
`$()` will work here now, you should **always** use `this.$()` when
possible, for performance. (#192)

* Start recording ChangeLog on View pages too (e.g. Surfaces, Views README)

Expand Down
6 changes: 4 additions & 2 deletions demo-base/client/views/Surface.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@
### v0.1.30

* Template.x.rendered now runs after the template has
been rendered *and added to the document*. This is later than before,
been rendered **and added to the document**. This is later than before,
but more in line with how Meteor does things and allows for more
intuitive use.
intuitive use. E.g. jQuery plugins work better. Note, even though
`$()` will work here now, you should **always** use `this.$()` when
possible, for performance.

* Surfaces now store a `fview.surfaceBlazeView` for the blazeView used
to render the Surface's contents.
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: "gadicohen:famous-views",
summary: 'Blaze Views for Famous; doing Famous Meteor-style',
version: "0.1.30-rc.5",
version: "0.1.30",
git: "https://github.com/gadicc/meteor-famous-views.git"
});

Expand Down

0 comments on commit 69bfef0

Please sign in to comment.