Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Aug 2, 2012
1 parent 4ff3419 commit a2663e8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
8 changes: 8 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@

0.1.1 / 2012-08-01
==================

* Fixed errors when a socket is closed while upgrade probe is happening.
* Improved WS error handling
* Replaced websocket.io with ws, now that it supports older drafts
* README fixes

0.1.0 / 2012-07-03
==================

Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,16 +288,22 @@ The client class. _Inherits from EventEmitter_.
- **Options**
- `host` (`String`): host name (`localhost`)
- `port` (`Number`): port name (`80`)
- `path` (`String`) default prefix path (`/engine.io`)
- `path` (`String`): path to intercept requests to (`/engine.io`)
- `resource` (`String`): name of resource for this server (`default`).
Setting a resource allows you to initialize multiple engine.io
endpoints on the same host without them interfering, and without
changing the `path` directly.
- `query` (`String`): optional query string addition (eg: `{ a: 'b' }`)
- `query` (`Object`): optional query string addition (eg: `{ a: 'b' }`)
- `secure` (`Boolean): whether the connection is secure
- `upgrade` (`Boolean`): defaults to true, whether the client should try
to upgrade the transport from long-polling to something better.
- `forceJSONP` (`Boolean`): forces JSONP for polling transport.
- `timestampRequests` (`Boolean`): whether to add the timestamp with
each transport request. Note: this is ignored if the browser is
IE or Android, in which case requests are always stamped (`false`)
- `timestampParam` (`String`): timestamp parameter (`t`)
- `flashPath` (`String`): path to flash client files with trailing slash
- `policyPort` (`Number`): port the policy server listens on (`843`)
- `transports` (`Array`): a list of transports to try (in order).
Defaults to `['polling', 'websocket', 'flashsocket']`. `Engine`
always attempts to connect directly with the first one, provided the
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "engine.io"
, "version": "0.1.0"
, "version": "0.1.1"
, "description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server"
, "main": "./lib/engine.io"
, "dependencies": {
"debug": "0.6.0"
, "engine.io-client": "0.1.0"
, "engine.io-client": "0.1.1"
, "ws": "~0.4.21"
}
, "devDependencies": {
Expand Down

0 comments on commit a2663e8

Please sign in to comment.