diff --git a/archive/v0.1.3/change-log.html b/archive/v0.1.3/change-log.html
index 992906bb..564ee657 100644
--- a/archive/v0.1.3/change-log.html
+++ b/archive/v0.1.3/change-log.html
@@ -61,6 +61,11 @@
Change Log
v0.1.3 - maintenance
+
News:
+
+- Mithril is now available via Component
+- There's now an extra low-level optimization hook called a SubtreeDirective, which allows implementing plugins that only create virtual trees if necessary.
+
Bug Fixes:
- diff no longer touch the DOM when processing
style attributes and event handlers
diff --git a/archive/v0.1.3/component.json b/archive/v0.1.3/component.json
index 10799ed8..b3ef8e7d 100644
--- a/archive/v0.1.3/component.json
+++ b/archive/v0.1.3/component.json
@@ -2,7 +2,7 @@
"name": "mithril",
"description": "A Javascript framework for building brilliant applications",
"keywords": ["mvc", "framework"],
- "repo": "lhorie/mithril",
+ "repository": "lhorie/mithril",
"main": "mithril.min.js",
"scripts": ["mithril.min.js"],
"version": "0.1.3",
diff --git a/archive/v0.1.3/installation.html b/archive/v0.1.3/installation.html
index 50aea470..c8b1fb12 100644
--- a/archive/v0.1.3/installation.html
+++ b/archive/v0.1.3/installation.html
@@ -68,13 +68,22 @@
<script src="/node_modules/mithril/mithril.min.js"></script>
Bower
-
Bower is a package manager for NodeJS. If you're using NodeJS already or planning on using Grunt to create a build system, you can use Bower to conveniently keep up-to-date with Mithril versions.
+
Bower is a package manager for NodeJS. If you're using NodeJS already or planning on using Grunt to create a build system, you can use Bower to conveniently keep up-to-date with Mithril versions.
Assuming you have NodeJS installed, you can install Bower by typing this in the command line:
npm install -g bower
And you can download Mithril by typing this:
bower install mithril
Then, to use Mithril, point a script tag to the downloaded file:
<script src="/bower_components/mithril/mithril.min.js"></script>
+
+
Component
+
Component is another package manager for NodeJS. If you're using NodeJS already or planning on using Grunt to create a build system, you can use Component to conveniently keep up-to-date with Mithril versions.
+
Assuming you have NodeJS installed, you can install Bower by typing this in the command line:
+
npm install -g component
+
And you can download Mithril by typing this:
+
component install lhorie/mithril@gh-pages
+
Then, to use Mithril, point a script tag to the downloaded file:
+
<script src="/components/lhorie/mithril/master/mithril.min.js"></script>
diff --git a/archive/v0.1.3/mithril.min.zip b/archive/v0.1.3/mithril.min.zip
index abb9af89..5d7370e0 100644
Binary files a/archive/v0.1.3/mithril.min.zip and b/archive/v0.1.3/mithril.min.zip differ
diff --git a/docs/change-log.md b/docs/change-log.md
index b6c8cf3b..9ddc7952 100644
--- a/docs/change-log.md
+++ b/docs/change-log.md
@@ -2,6 +2,11 @@
[v0.1.3](/mithril/archive/v0.1.3) - maintenance
+### News:
+
+- Mithril is now available via [Component](http://component.io)
+- There's now an extra low-level optimization hook called a SubtreeDirective, which allows implementing plugins that only create virtual trees if necessary.
+
### Bug Fixes:
- diff no longer touch the DOM when processing `style` attributes and event handlers
diff --git a/docs/installation.md b/docs/installation.md
index 1c5fe733..23b2c0fb 100644
--- a/docs/installation.md
+++ b/docs/installation.md
@@ -58,7 +58,7 @@ Then, to use Mithril, point a script tag to the downloaded file:
### Bower
-[Bower](http://http://bower.io) is a package manager for [NodeJS](http://nodejs.org/). If you're using NodeJS already or planning on using [Grunt](http://gruntjs.com/) to create a build system, you can use Bower to conveniently keep up-to-date with Mithril versions.
+[Bower](http://bower.io) is a package manager for [NodeJS](http://nodejs.org/). If you're using NodeJS already or planning on using [Grunt](http://gruntjs.com/) to create a build system, you can use Bower to conveniently keep up-to-date with Mithril versions.
Assuming you have NodeJS installed, you can install Bower by typing this in the command line:
@@ -77,3 +77,27 @@ Then, to use Mithril, point a script tag to the downloaded file:
```markup
```
+
+---
+
+### Component
+
+[Component](http://component.io) is another package manager for [NodeJS](http://nodejs.org/). If you're using NodeJS already or planning on using [Grunt](http://gruntjs.com/) to create a build system, you can use Component to conveniently keep up-to-date with Mithril versions.
+
+Assuming you have NodeJS installed, you can install Bower by typing this in the command line:
+
+```
+npm install -g component
+```
+
+And you can download Mithril by typing this:
+
+```
+component install lhorie/mithril@gh-pages
+```
+
+Then, to use Mithril, point a script tag to the downloaded file:
+
+```markup
+
+```
diff --git a/docs/layout/component.json b/docs/layout/component.json
index 484349e5..489ab5ce 100644
--- a/docs/layout/component.json
+++ b/docs/layout/component.json
@@ -2,7 +2,7 @@
"name": "mithril",
"description": "A Javascript framework for building brilliant applications",
"keywords": ["mvc", "framework"],
- "repo": "lhorie/mithril",
+ "repository": "lhorie/mithril",
"main": "mithril.min.js",
"scripts": ["mithril.min.js"],
"version": "$version",