Commit Graph
334 Commits
Author SHA1 Message Date
Yoshua Wuyts 8e38595144 2.3.1 2016-06-25 12:23:56 +02:00
Yoshua Wuyts b86e755fa3 changelog: 2.3.1 2016-06-25 12:23:51 +02:00
Tim Wisniewski f9bbc7a507 Merge pull request #83 from yoshuawuyts/irc-badge
Add IRC badge
2016-06-24 21:36:42 -04:00
Tim Wisniewski 7e38108df7 squareify 2016-06-24 21:31:55 -04:00
Tim Wisniewski f2aff430c7 Add IRC badge
Unless there's somewhere else it's advertised?
2016-06-24 21:21:41 -04:00
Yoshua Wuyts e30b186df4 Merge pull request #76 from yoshuawuyts/fix-router-arguments-bug
router: fix arguments bug
2016-06-25 03:20:55 +02:00
Yoshua Wuyts cba66026de Merge pull request #79 from tgfjt/patch-1
fix typo on README
2016-06-24 18:55:33 +02:00
Yoshua Wuyts 9a970798e2 Merge pull request #80 from Velds/master
Minor grammatical correction in README.md
2016-06-24 17:23:20 +02:00
Velds 2b7315a7bc Minor grammatical correction in README.md 2016-06-24 18:46:45 +04:00
Takashi Fujita bd24a12a9c fix typo on README 2016-06-24 14:13:01 +09:00
Yoshua Wuyts bca9d46f61 router: fix arguments bug 2016-06-23 23:54:02 +02:00
Yoshua Wuyts bfbc445c1e 2.3.0 2016-06-23 16:35:51 +02:00
Yoshua Wuyts 174a6fc084 changelog: update to v2.3.0 2016-06-23 16:35:38 +02:00
Yoshua Wuyts 08d9d0c69f docs: fix typo in comparing choo 2016-06-23 16:27:24 +02:00
Yoshua Wuyts ce02d7a923 docs: be less harsh with the comparisons ❤️ 2016-06-23 16:26:14 +02:00
Yoshua Wuyts d760240833 Merge pull request #74 from mattijsbliek/patch-1
Fix typo in server rendering example
2016-06-23 13:00:19 +02:00
Mattijs Bliek 25926d0667 Fix typo in view 2016-06-23 11:34:27 +02:00
zigomir 51a9c4488e Fix full reload on specific message. 2016-06-22 17:39:13 -07:00
zigomir cf1548e61d Add tachyons dependency. 2016-06-22 17:38:55 -07:00
Yoshua Wuyts e0cc76e5f6 Merge pull request #62 from yoshuawuyts/readme-views
Add views section to readme
2016-06-22 18:30:04 +02:00
Yoshua Wuyts 68a09054a4 Merge pull request #56 from yoshuawuyts/examples-sse
Examples sse
2016-06-22 18:29:30 +02:00
Yoshua Wuyts 020b5698b6 docs: add cycle,vue 2016-06-22 18:18:18 +02:00
Yoshua Wuyts 68931d33bd Merge pull request #67 from latentflip/patch-1
Idempotent -> Isomorphic
2016-06-22 17:34:14 +02:00
Philip Roberts bdacff55b1 Idempotent -> Isomorphic 2016-06-22 10:48:41 +01:00
Yoshua Wuyts 1315216a0a Merge pull request #64 from pguth/patch-3
Update README.md
2016-06-22 00:14:42 +02:00
Per 14e905fb4e Update README.md
Can't set namespace under `effects`.
2016-06-21 22:35:11 +02:00
Tim Wisniewski 237144db7f Add views section to readme
There are probably additional things we can add to this section, but hopefully this is a good start. #11

I left out `params` because it looks like [it's going away](https://github.com/yoshuawuyts/choo/issues/35).
2016-06-20 23:57:46 -04:00
Yoshua Wuyts d1e6185fa4 docs: fix effects param order
Closes https://github.com/yoshuawuyts/choo/issues/59
2016-06-21 02:02:23 +01:00
Yoshua Wuyts 9486df4725 examples: add sse 2016-06-20 23:51:29 +01:00
Yoshua Wuyts b6b41bc031 script/test-size: bump for more opts 2016-06-20 22:23:11 +01:00
Yoshua Wuyts 9ae648c3f5 Merge pull request #58 from pguth/patch-2
Update README.md
2016-06-20 22:49:24 +02:00
Per 25a3e6ad8f Update README.md
`every second` => `setInterval` not timeout.
2016-06-20 22:31:54 +02:00
Yoshua Wuyts feb798ec1f Merge pull request #57 from pguth/patch-1
Update README.md
2016-06-20 21:55:16 +02:00
Per 72d37450dd Update README.md
Small error: `choo.model` -> `app.model`.
2016-06-20 21:38:38 +02:00
Yoshua Wuyts bae31831fe subscriptions: load on DOM ready 2016-06-20 15:11:28 +01:00
Yoshua Wuyts b6eb994357 changelog: 2.2.2 2016-06-19 21:27:46 +01:00
Yoshua Wuyts ff330783cb 2.2.2 2016-06-19 21:26:48 +01:00
Yoshua Wuyts 30726b4277 Merge pull request #53 from toddself/fix-assert-call
Fix assert call for subscriptions
2016-06-19 22:16:02 +02:00
Yoshua Wuyts 87871781ff Merge pull request #52 from toddself/accept-name
Allow for naming the rootId with no options
2016-06-19 22:15:32 +02:00
Todd Kennedy 02c3c81f37 Fix assert call for subscriptions 2016-06-19 11:38:36 -07:00
Todd Kennedy 1d38ab9f22 Allow for naming the rootId with no options
Right now if you want to name your rootId something different, but don't pass
in any options, it doesn't change the name of your rootId (see confusion in
github #49.

This would allow someone to use

```js
const app = choo()
app.start('myRootNode')
```

Rather than having to use

```js
const app = choo()
app.start('myRootNode', {name: 'myRootNode'})
```
2016-06-19 08:35:41 -07:00
Yoshua Wuyts 129221e8ab Merge pull request #51 from johnotander/fix-typo
Fix typo in server rendering view
2016-06-19 12:38:23 +02:00
John Otander ec81364906 Fix typo in server rendering view 2016-06-18 18:55:12 -06:00
Yoshua Wuyts cd6144123a 2.2.1 2016-06-16 11:52:41 +01:00
Yoshua Wuyts b0b8bf7d03 Merge pull request #47 from yoshuawuyts/greenkeeper-send-action-2.0.2
Update send-action to version 2.0.2 🚀
2016-06-16 12:51:30 +02:00
Yoshua Wuyts 848724983a Merge pull request #48 from toddself/choo-root-note
Clarify documentation on id overwrite
2016-06-16 12:50:50 +02:00
Todd Kennedy 85d2ec3632 Clarify documentation on id overwrite 2016-06-15 20:16:03 -07:00
greenkeeperio-bot 52993422ea chore(package): update send-action to version 2.0.2
https://greenkeeper.io/
2016-06-15 19:11:32 +02:00
Yoshua Wuyts 8059e7ddbc Merge pull request #43 from toddself/documentation-fix
Fix order of arguments to effects
2016-06-14 00:40:14 +02:00
Seth Vincent 7f9441a97f small typo fix: model -> state 2016-06-13 11:01:55 -07:00