Update: SignalR 2.1

https://github.com/SignalR/SignalR/releases/tag/2.1.0
This commit is contained in:
Gary Sharp
2014-06-19 16:02:42 +10:00
parent 045fb0b65d
commit a3a92245ae
12 changed files with 1083 additions and 830 deletions
File diff suppressed because it is too large Load Diff
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<bundle minify="true" runOnBuild="true">
<file>/ClientSource/Scripts/Modules/jQuery-SignalR/jquery.signalR-2.0.3.js</file>
<file>/ClientSource/Scripts/Modules/jQuery-SignalR/jquery.signalR-2.1.0.js</file>
<file>/ClientSource/Scripts/Modules/jQuery-SignalR/disco-hubs.js</file>
</bundle>
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,5 +1,5 @@
/*!
* ASP.NET SignalR JavaScript Library v2.0.3
* ASP.NET SignalR JavaScript Library v2.1.0
* http://signalr.net/
*
* Copyright Microsoft Open Technologies, Inc. All rights reserved.
@@ -78,37 +78,38 @@
registerHubProxies(proxies, false);
});
proxies.deviceUpdates = this.createHubProxy('deviceUpdates');
proxies.deviceUpdates.client = { };
proxies.deviceUpdates.server = {
proxies['deviceUpdates'] = this.createHubProxy('deviceUpdates');
proxies['deviceUpdates'].client = { };
proxies['deviceUpdates'].server = {
};
proxies.jobUpdates = this.createHubProxy('jobUpdates');
proxies.jobUpdates.client = { };
proxies.jobUpdates.server = {
proxies['jobUpdates'] = this.createHubProxy('jobUpdates');
proxies['jobUpdates'].client = { };
proxies['jobUpdates'].server = {
};
proxies.logNotifications = this.createHubProxy('logNotifications');
proxies.logNotifications.client = { };
proxies.logNotifications.server = {
proxies['logNotifications'] = this.createHubProxy('logNotifications');
proxies['logNotifications'].client = { };
proxies['logNotifications'].server = {
};
proxies.noticeboardUpdates = this.createHubProxy('noticeboardUpdates');
proxies.noticeboardUpdates.client = { };
proxies.noticeboardUpdates.server = {
proxies['noticeboardUpdates'] = this.createHubProxy('noticeboardUpdates');
proxies['noticeboardUpdates'].client = { };
proxies['noticeboardUpdates'].server = {
};
proxies.scheduledTaskNotifications = this.createHubProxy('scheduledTaskNotifications');
proxies.scheduledTaskNotifications.client = { };
proxies.scheduledTaskNotifications.server = {
proxies['scheduledTaskNotifications'] = this.createHubProxy('scheduledTaskNotifications');
proxies['scheduledTaskNotifications'].client = { };
proxies['scheduledTaskNotifications'].server = {
getStatus: function () {
return proxies.scheduledTaskNotifications.invoke.apply(proxies.scheduledTaskNotifications, $.merge(["GetStatus"], $.makeArray(arguments)));
/// <summary>Calls the GetStatus method on the server-side scheduledTaskNotifications hub.&#10;Returns a jQuery.Deferred() promise.</summary>
return proxies['scheduledTaskNotifications'].invoke.apply(proxies['scheduledTaskNotifications'], $.merge(["GetStatus"], $.makeArray(arguments)));
}
};
proxies.userUpdates = this.createHubProxy('userUpdates');
proxies.userUpdates.client = { };
proxies.userUpdates.server = {
proxies['userUpdates'] = this.createHubProxy('userUpdates');
proxies['userUpdates'].client = { };
proxies['userUpdates'].server = {
};
return proxies;