Skip to content

Commit

Permalink
0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgeny Poberezkin committed Sep 4, 2014
1 parent a648cc1 commit 7215d82
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 181 deletions.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,12 @@ milo(function () {
```


### Note on runtime parameter type checking

Milo uses check module (`milo.util.check` - forked from check package of Meteor framework) for runtime checking of parameter types. It is highly recommended to switch off this checks using: `milo.config({ check: false })`.
Depending on your application, it can improve performance more than twice.


Samples/Tutorials
-----------------

Expand Down Expand Up @@ -232,7 +238,7 @@ See [Connector documentation](http://mailonline.github.io/milo/model/connector.j

### Utilities

- [check](http://mailonline.github.io/milo/util/check.js.html) - check parameter types.
- [check](http://mailonline.github.io/milo/util/check.js.html) - check parameter types (forked from check package of Meteor framework).
- [logger](http://mailonline.github.io/milo/util/logger.js.html) - configurable logger with log levels.
- [request](http://mailonline.github.io/milo/util/request.js.html) - HTTP requests library.
- [dom](http://mailonline.github.io/milo/util/dom.js.html) - library to manipulate DOM elements.
Expand Down Expand Up @@ -333,6 +339,13 @@ http://opensource.org/licenses/BSD-2-Clause
Changes log
-----------

###0.1.6###

- Mixin abstract class: added methods to expose mixin subclass methods on host class prototype rather than on host object instance.
- Messenger methods are exposed on Component, facets, Model, and ModelPath using approach above
- Substantially improved performance


###0.1.5###

- `milo.util.request`
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "milo",
"version": "0.1.5",
"version": "0.1.6",
"homepage": "https://github.com/MailOnline/milo",
"authors": [
"MOL Technical <[email protected]>"
Expand Down
Loading

0 comments on commit 7215d82

Please sign in to comment.