Skip to content
This repository has been archived by the owner on Nov 27, 2020. It is now read-only.

Commit

Permalink
Update version and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
mwwhited committed Sep 3, 2015
1 parent b3337bf commit f0cdc94
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 25 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -4,4 +4,5 @@
bin/
obj/
src/
node_modules/
node_modules/
WhitedUS.SignalR/WhitedUS.signalR/npm-debug.log
7 changes: 3 additions & 4 deletions WhitedUS.SignalR/WhitedUS.signalR/README.md
@@ -1,6 +1,6 @@
# signalr-client

By: [Matthew Whited](mailto:matt@whited.us?subject=signalr-client) (c) 2015
By: [Matthew Whited](mailto:matt@whited.us?subject=signalr-client) (c) 2015
_____________________________________

## Summary
Expand Down Expand Up @@ -106,7 +106,6 @@ _see signalR-sample.js for more examples_

*These are all found under client.serviceHandlers*


bound: void function(){}
connectFailed: void function(error){}
connected: void function(connection){}
Expand Down Expand Up @@ -134,7 +133,6 @@ _see signalR-sample.js for more examples_
//if false the client handler will be raised.
}


#### Handler Unauthorized Access

client.serviceHandlers.onUnauthorized = function (res) {
Expand All @@ -156,7 +154,6 @@ _see signalR-sample.js for more examples_
return false; // Retry
}


_____________________________________

## Change History
Expand Down Expand Up @@ -205,6 +202,8 @@ _____________________________________
* Thanks to Guilherme Ferreira
* v0.0.15: Update to signalR Client Protocol 1.5
* Thanks to Guilherme Ferreira
* v0.0.16: Fixed lastMessageId issues
* Thanks to Sergey Buturlakin
_____________________________________

## Known Issues
Expand Down
2 changes: 1 addition & 1 deletion WhitedUS.SignalR/WhitedUS.signalR/package.json
@@ -1,6 +1,6 @@
{
"name": "signalr-client",
"version": "0.0.15",
"version": "0.0.16",
"description": "signalR client for node.js",
"license": "MIT",
"url" : "https://github.com/mwwhited/signalr-client-nodejs/",
Expand Down
22 changes: 3 additions & 19 deletions WhitedUS.SignalR/WhitedUS.signalR/signalR.js
@@ -1,20 +1,12 @@
//# signalr-client
//By: [Matthew Whited](mailto:matt@whited.us?subject=signalr-client) (c) 2014
//By: [Matthew Whited](mailto:matt@whited.us?subject=signalr-client) (c) 2015
// v0.0.16

//modifications made to add support for https/wss By: Anthony DiPierro

//TODO: Fix HTTPS Proxy
// https://newspaint.wordpress.com/2012/11/05/node-js-http-and-https-proxy/
/*
* Matt,
*
* I also believe that the proxy setting are only working correctly for when the signalr host is set for "http://127.0.0.1". My signalr hub is at "wss://iotbridge.azurewebsites.net/signalr". When the proxy settings are set for fidder's standard host and port of 127.0.0.1 and 8888, and the signalr host is not local no messages arrive to fiddler. The proxy host name is not used but the port is, thus yielding a connection that tries to go to "wss://iotbridge.azurewebsites.net/signalr:8888".
* Let me know if I'm too many emails.
*
* thanks,
* vince. (Vincent Miceli) vjm@orchardparksoftware.com
*/

/* ~Vincent Miceli */
//TODO: consider changing binding/start order

var url = require('url'),
Expand Down Expand Up @@ -534,17 +526,11 @@ function clientInterface(baseUrl, hubs, reconnectTimeout, doNotStart) {

});



req.on('error', function (e) {
handlerErrors('Can\'t abort connection', e, abortUrlOptions);
});




req.end();

}

};
Expand Down Expand Up @@ -586,8 +572,6 @@ function clientInterface(baseUrl, hubs, reconnectTimeout, doNotStart) {
onError('HTTP Error', e);
}
});


}

var startErrorFunction = function (e) {
Expand Down

0 comments on commit f0cdc94

Please sign in to comment.