Skip to content

Commit

Permalink
Version 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Oct 24, 2014
1 parent ca7702e commit 9ea89fe
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

Version 0.4.2 (released in 2014-10-24)
--------------------------------------

* [(ca7702e)](https://github.com/versatica/JsSIP/commit/ca7702e) Fix #257. RTCMediaHandler: fire onIceCompleted() on next tick to avoid events race conditions in Firefox 33.

Version 0.4.1 (released in 2014-10-21)
--------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jssip",
"version": "0.4.1",
"description": "the Javascript SIP library",
"main": "builds/jssip-0.4.1.min.js",
"main": "builds/jssip-0.4.2.min.js",
"homepage": "http://jssip.net",
"authors": [
"José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)",
Expand Down
8 changes: 5 additions & 3 deletions builds/jssip-0.4.1.js → builds/jssip-0.4.2.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* JsSIP 0.4.1
* JsSIP 0.4.2
* Copyright (c) 2012-2014 José Luis Millán - Versatica <http://www.versatica.com>
* Homepage: http://jssip.net
* License: http://jssip.net/license
Expand Down Expand Up @@ -32,7 +32,7 @@ Object.defineProperties(JsSIP, {
* console.log(JsSIP.version)
*/
version: {
get: function(){ return '0.4.1'; }
get: function(){ return '0.4.2'; }
}
});

Expand Down Expand Up @@ -5586,7 +5586,9 @@ RTCMediaHandler.prototype = {
if (e.candidate) {
self.logger.debug('ICE candidate received: '+ e.candidate.candidate);
} else if (self.onIceCompleted !== undefined) {
self.onIceCompleted();
setTimeout(function() {
self.onIceCompleted();
});
}
};

Expand Down
6 changes: 3 additions & 3 deletions builds/jssip-0.4.1.min.js → builds/jssip-0.4.2.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jssip",
"description": "the Javascript SIP library",
"version": "0.4.1",
"version": "0.4.2",
"homepage": "http://jssip.net",
"author": "José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)",
"contributors": [
Expand Down

0 comments on commit 9ea89fe

Please sign in to comment.