From 0047a02ba73ae455c4c035e57468492564412e2f Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Sun, 14 Oct 2012 12:19:24 -0700 Subject: [PATCH] Release 0.3.5 --- History.md | 5 +++++ dist/engine.io-dev.js | 4 ++-- dist/engine.io.js | 4 ++-- package.json | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/History.md b/History.md index 8d341aed..ac17066e 100644 --- a/History.md +++ b/History.md @@ -1,4 +1,9 @@ +0.3.5 / 2012-10-14 +================== + + * new build + 0.3.4 / 2012-10-14 ================== diff --git a/dist/engine.io-dev.js b/dist/engine.io-dev.js index 7f48e8c6..ff09c9cc 100644 --- a/dist/engine.io-dev.js +++ b/dist/engine.io-dev.js @@ -563,7 +563,7 @@ function Socket (opts) { var uri = util.parseUri(opts); opts = arguments[1] || {}; opts.host = uri.host; - opts.secure = uri.scheme == 'https' || uri.scheme == 'wss'; + opts.secure = uri.protocol == 'https' || uri.protocol == 'wss'; opts.port = uri.port || (opts.secure ? 443 : 80); } @@ -2494,5 +2494,5 @@ exports.qs = function (obj) { return str; }; -});eio = require('engine.io-client'); +});var exp = require('engine.io-client');if ("undefined" != typeof module) module.exports = exp;else eio = exp; })(); diff --git a/dist/engine.io.js b/dist/engine.io.js index d93de3c2..4a63ff1c 100644 --- a/dist/engine.io.js +++ b/dist/engine.io.js @@ -442,7 +442,7 @@ function Socket (opts) { var uri = util.parseUri(opts); opts = arguments[1] || {}; opts.host = uri.host; - opts.secure = uri.scheme == 'https' || uri.scheme == 'wss'; + opts.secure = uri.protocol == 'https' || uri.protocol == 'wss'; opts.port = uri.port || (opts.secure ? 443 : 80); } @@ -2373,5 +2373,5 @@ exports.qs = function (obj) { return str; }; -});eio = require('engine.io-client'); +});var exp = require('engine.io-client');if ("undefined" != typeof module) module.exports = exp;else eio = exp; })(); diff --git a/package.json b/package.json index e82e5f42..a743bc2f 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "engine.io-client", "description": "Client for the realtime Engine", "main": "./lib/engine.io-client", - "version": "0.3.4", + "version": "0.3.5", "contributors": [ { "name": "Guillermo Rauch", "email": "rauchg@gmail.com" }, { "name": "Vladimir Dronnikov", "email": "dronnikov@gmail.com" }