Skip to content

Commit 5c754b4

Browse files
committedMar 18, 2013
Update BUILDING, CHANGELOG and README files
1 parent 0d2e341 commit 5c754b4

File tree

3 files changed

+128
-20
lines changed

3 files changed

+128
-20
lines changed
 

‎BUILDING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You just need to have [Node.js](http://nodejs.org/) and [Git](http://git-scm.com
1515

1616
### PhantomJS
1717

18-
(optional, just for running test units)
18+
(optional, just for running unit tests)
1919

2020
* [Install PhantomJS](http://phantomjs.org/download.html)
2121
* In modern Debian/Ubuntu systems PhantomJS can be installed via `apt-get install phantomjs`
@@ -51,9 +51,9 @@ $ grunt
5151
The built version of JsSIP will be available in the `dist/` subdirectory in both flavors: normal (uncompressed) and minified, both linted with [JSLint](http://jslint.com/). There will be also a file named `dist/jssip-devel.js` which is an exact copy of the uncompressed file.
5252

5353

54-
## Faster development
54+
## Development version
5555

56-
Run `grunt devel` for just generating the `dist/jssip-devel.js` file.
56+
Run `grunt devel` for just generating the `dist/jssip-devel.js` file. An uncompressed JsSIP source file named `jssip-devel.js` will be created in `dist` directory.
5757

5858

5959
## Test units
@@ -73,4 +73,4 @@ If you modify `src/Grammar/src/Grammar.pegjs` then you need to recompile JsSIP g
7373
```
7474
$ grunt grammar
7575
```
76-
And then build JsSIP again by running `grunt`.
76+
And then build JsSIP again as explained above.

‎CHANGELOG.md

+78
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,84 @@ CHANGELOG
22
=========
33

44

5+
Version 0.3.0 (released in 2013-03-18)
6+
-------------------------------
7+
8+
* [(fea1326)](https://github.com/versatica/JsSIP/commit/fea1326) Don't validate configuration.password against SIP URI password BNF grammar (fix #74).
9+
* [(3f84b30)](https://github.com/versatica/JsSIP/commit/3f84b30) Make RTCSession local_identity and remote_identity NameAddrHeader instances
10+
* [(622f46a)](https://github.com/versatica/JsSIP/commit/622f46a) remove 'views' argument from UA.call()
11+
* [(940fb34)](https://github.com/versatica/JsSIP/commit/940fb34) Refactored Session
12+
* [(71572f7)](https://github.com/versatica/JsSIP/commit/71572f7) Rename causes.IN_DIALOG_408_OR_481 to causes.DIALOG_ERROR and add causes.RTP_TIMEOUT.
13+
* [(c79037e)](https://github.com/versatica/JsSIP/commit/c79037e) Added 'registrar_server' UA configuration parameter.
14+
* [(2584140)](https://github.com/versatica/JsSIP/commit/2584140) Don't allow SIP URI without username in configuration.uri.
15+
* [(87357de)](https://github.com/versatica/JsSIP/commit/87357de) Digest authentication refactorized.
16+
* [(6867f51)](https://github.com/versatica/JsSIP/commit/6867f51) Add 'cseq' and 'call_id' attributes to OutgoingRequest.
17+
* [(cc97fee)](https://github.com/versatica/JsSIP/commit/cc97fee) Fix. Delete session from UA sessions collection when closing
18+
* [(947b3f5)](https://github.com/versatica/JsSIP/commit/947b3f5) Remove RTCPeerConnection.onopen event handler
19+
* [(6029e45)](https://github.com/versatica/JsSIP/commit/6029e45) Enclose every JsSIP component with an inmediate function
20+
* [(7f523cc)](https://github.com/versatica/JsSIP/commit/7f523cc) JsSIP.Utils.MD5() renamed to JsSIP.Utils.calculateMD5() (a more proper name for a function).
21+
* [(1b1ab73)](https://github.com/versatica/JsSIP/commit/1b1ab73) Fix. Reply '200' to a CANCEL 'before' replying 487 to the INVITE
22+
* [(88fa9b6)](https://github.com/versatica/JsSIP/commit/88fa9b6) New way to handle Streams
23+
* [(38d4312)](https://github.com/versatica/JsSIP/commit/38d4312) Add Travis CI support.
24+
* [(50d7bf1)](https://github.com/versatica/JsSIP/commit/50d7bf1) New `grunt grammar` task for automatically building customized Grammar.js and Grammar.min.js.
25+
* [(f19842b)](https://github.com/versatica/JsSIP/commit/f19842b) Fix #60, #61. Add optional parameters to ua.contact.toString(). Thanks @ibc
26+
* [(8f5acb1)](https://github.com/versatica/JsSIP/commit/8f5acb1) Enhance self contact handling
27+
* [(5e7d815)](https://github.com/versatica/JsSIP/commit/5e7d815) Fix. ACK was being replied when not pointing to us. Thanks @saghul
28+
* [(1ab6df3)](https://github.com/versatica/JsSIP/commit/1ab6df3) New method JsSIP.NameAddrHeader.parse() which returns a JsSIP.NameAddrHeader instance.
29+
* [(a7b69b8)](https://github.com/versatica/JsSIP/commit/a7b69b8) Use a random user in the UA's contact.
30+
* [(f67872b)](https://github.com/versatica/JsSIP/commit/f67872b) Extend the use of the 'options' argument
31+
* [(360c946)](https://github.com/versatica/JsSIP/commit/360c946) Test units for URI and NameAddrHeader classes.
32+
* [(826ce12)](https://github.com/versatica/JsSIP/commit/826ce12) Improvements and some bug fixes in URI and NameAddrHeader classes.
33+
* [(e385840)](https://github.com/versatica/JsSIP/commit/e385840) Make JsSIP.URI and JsSIP.NameAddrHeader more robust.
34+
* [(b0603e3)](https://github.com/versatica/JsSIP/commit/b0603e3) Separate qunitjs tests with and without WebRTC. Make "grunt test" to run "grunt testNoWebRTC".
35+
* [(659c331)](https://github.com/versatica/JsSIP/commit/659c331) New way to handle InvalidTargetErorr and WebRtcNotSupportedError
36+
* [(d3bc91a)](https://github.com/versatica/JsSIP/commit/d3bc91a) Don't run qunit task by default (instead require "grunt test").
37+
* [(e593396)](https://github.com/versatica/JsSIP/commit/e593396) Added qunitjs based test unit (for now a parser test) and integrate it in grunt.js.
38+
* [(da58bff)](https://github.com/versatica/JsSIP/commit/da58bff) Enhance URI and NameAddrHeader
39+
* [(df6dd98)](https://github.com/versatica/JsSIP/commit/df6dd98) Automate qunit tests into grunt process
40+
* [(babc331)](https://github.com/versatica/JsSIP/commit/babc331) Fix. Accept multiple headers with same hader name in SIP URI.
41+
* [(716d164)](https://github.com/versatica/JsSIP/commit/716d164) Pass full multi-header header fields to the grammar
42+
* [(2e18a6b)](https://github.com/versatica/JsSIP/commit/2e18a6b) Fix contact match in 200 response to REGISTER
43+
* [(3f7b02f)](https://github.com/versatica/JsSIP/commit/3f7b02f) Fix stun_host grammar rule.
44+
* [(7867baf)](https://github.com/versatica/JsSIP/commit/7867baf) Allow using a JsSIP.URI instance everywhere specting a destination.
45+
* [(a370c78)](https://github.com/versatica/JsSIP/commit/a370c78) Fix 'maddr' and 'method' URI parameters handling
46+
* [(537d2f2)](https://github.com/versatica/JsSIP/commit/537d2f2) Give some love to "console.log|warn|info" messages missing the JsSIP class/module prefix.
47+
* [(8cb6963)](https://github.com/versatica/JsSIP/commit/8cb6963) In case null, emptry string, undefined or NaN is passed as parameter value then its default value is applied. Also print to console the processed value of all the parameters after validating them.
48+
* [(f306d3c)](https://github.com/versatica/JsSIP/commit/f306d3c) hack_ip_in_contact now generates a IP in the range of Test-Net as stated in RFC 5735 (192.0.2.0/24).
49+
* [(528d989)](https://github.com/versatica/JsSIP/commit/528d989) Add DTMF feature
50+
* [(777a48f)](https://github.com/versatica/JsSIP/commit/777a48f) Change API methods to make use of generic 'options' argument
51+
* [(3a6971d)](https://github.com/versatica/JsSIP/commit/3a6971d) Fix #26. Fire 'unregistered' event correctly.
52+
* [(5616837)](https://github.com/versatica/JsSIP/commit/5616837) Rename 'outbound_proxy_set' parameter by 'ws_servers'
53+
* [(37fe9f4)](https://github.com/versatica/JsSIP/commit/37fe9f4) Fix #54. Allow configuration.uri username start with 'sip'
54+
* [(a612987)](https://github.com/versatica/JsSIP/commit/a612987) Add 'stun_servers' and 'turn_servers' configuration parameters
55+
* [(9fad09b)](https://github.com/versatica/JsSIP/commit/9fad09b) Add JsSIP.URI and JsSIP.NameAddrHeader classes
56+
* [(f35376a)](https://github.com/versatica/JsSIP/commit/f35376a) Add 'Content-Length' header to every SIP response
57+
* [(3081a21)](https://github.com/versatica/JsSIP/commit/3081a21) Enhance 'generic_param' grammar rule
58+
* [(e589002)](https://github.com/versatica/JsSIP/commit/e589002) Fix. Allow case-insentivity in SIP grammar, when corresponds
59+
* [(aec55a2)](https://github.com/versatica/JsSIP/commit/aec55a2) Enhance transport error handling
60+
* [(d0dbde3)](https://github.com/versatica/JsSIP/commit/d0dbde3) New stun_servers and turn_servers parameters
61+
* [(47cdb66)](https://github.com/versatica/JsSIP/commit/47cdb66) Add 'extraHeaders' parameter to UA.register() and UA.unregister() methods
62+
* [(69fbdbd)](https://github.com/versatica/JsSIP/commit/69fbdbd) Enhance in-dialog request management
63+
* [(da23790)](https://github.com/versatica/JsSIP/commit/da23790) Fix 'UTF8-NONASCII' grammar rule
64+
* [(3f86b94)](https://github.com/versatica/JsSIP/commit/3f86b94) Require a single grunt task for packaging
65+
* [(81595be)](https://github.com/versatica/JsSIP/commit/81595be) Add some log lines into sanity check code for clarity
66+
* [(a8a7627)](https://github.com/versatica/JsSIP/commit/a8a7627) Enhance RTCPeerconnection SDP error handling. Thanks @ibc for reporting.
67+
* [(3acc474)](https://github.com/versatica/JsSIP/commit/3acc474) Add turn configuration parameters for RTCPeerConnection
68+
* [(9fccaf5)](https://github.com/versatica/JsSIP/commit/9fccaf5) Enhance 'boolean' comparison
69+
* [(24fcdbb)](https://github.com/versatica/JsSIP/commit/24fcdbb) Make preloaded Route header optional.
70+
* [(defeabe)](https://github.com/versatica/JsSIP/commit/defeabe) Automatic connection recovery.
71+
* [(a45293b)](https://github.com/versatica/JsSIP/commit/a45293b) Improve reply() method.
72+
* [(f05795b)](https://github.com/versatica/JsSIP/commit/f05795b) Fix. Prevent outgoing CANCEL messages from being authenticated
73+
* [(5ed6122)](https://github.com/versatica/JsSIP/commit/5ed6122) Update credentials with the new authorization upon 401/407 reception
74+
* [(2c9a310)](https://github.com/versatica/JsSIP/commit/2c9a310) Do not allow reject-ing a Message or Session with an incorrect status code
75+
* [(35e5874)](https://github.com/versatica/JsSIP/commit/35e5874) Make optional the reason phrase when reply-ing
76+
* [(85ca354)](https://github.com/versatica/JsSIP/commit/85ca354) Implement credential reuse
77+
* [(351ca06)](https://github.com/versatica/JsSIP/commit/351ca06) Fix Contact header aggregation for incoming messages
78+
* [(d6428e7)](https://github.com/versatica/JsSIP/commit/d6428e7) Fire UA 'newMessage' event for incoming MESSAGE requests regardless they are out of dialog or in-dialog.
79+
* [(1ab3423)](https://github.com/versatica/JsSIP/commit/1ab3423) Intelligent 'Allow' header field value. Do not set a method in the 'Allow' header field if its corresponding event is not defined or has zero listeners.
80+
* [(4e70a25)](https://github.com/versatica/JsSIP/commit/4e70a25) Allow 'text/plain' and 'text/html' content types for incoming SIP MESSAGE Fixed incoming SIP MESSAGE processing when the Content-Type header contains parameters
81+
* [(d5f3432)](https://github.com/versatica/JsSIP/commit/d5f3432) Fixed the message header split when a parsing error occurs. Parsing error log enhanced.
82+
583
Version 0.2.1 (released in 2012-11-15)
684
-------------------------------
785

‎README.md

+46-16
Original file line numberDiff line numberDiff line change
@@ -32,26 +32,50 @@ coolPhone.start();
3232

3333
// Make an audio/video call:
3434

35-
var useAudio = true;
36-
var useVideo = true;
37-
35+
// HTML5 <video> elements in which local and remote video will be shown
3836
var views = {
39-
'selfView': document.getElementById('my-video'),
37+
'selfView': document.getElementById('my-video'),
4038
'remoteView': document.getElementById('peer-video')
4139
};
4240

41+
// Register callbacks to desired call events
4342
var eventHandlers = {
44-
'connecting': function(e){ // Your code here },
45-
'progress': function(e){ // Your code here },
46-
'failed': function(e){ // Your code here },
47-
'started': function(e){ // Your code here },
48-
'ended': function(e){ // Your code here }
43+
'progress': function(e){
44+
console.log('call is in progress');
45+
},
46+
'failed': function(e){
47+
console.log('call failed with cause: '+ e.data.cause);
48+
},
49+
'started': function(e){
50+
var rtcSession = e.data.session;
51+
52+
console.log('call started');
53+
54+
// Attach local stream to selfView
55+
if (rtcSession.getLocalStreams().length > 0) {
56+
selfView.src = window.URL.createObjectURL(rtcSession.getLocalStreams()[0]);
57+
}
58+
59+
// Attach remote stream to remoteView
60+
if (rtcSession.getRemoteStreams().length > 0) {
61+
remoteView.src = window.URL.createObjectURL(rtcSession.getRemoteStreams()[0]);
62+
}
63+
},
64+
'ended': function(e){
65+
console.log('call ended with cause: '+ e.data.cause);
66+
}
67+
};
68+
69+
var options = {
70+
'eventHandlers': eventHandlers,
71+
'userMediaTypes': {'audio': true, 'video': true}
4972
};
5073

51-
coolPhone.call('sip:bob@example.com', useAudio, useVideo, eventHandlers, views);
74+
75+
coolPhone.call('sip:bob@example.com', options);
5276
```
5377

54-
Want to see more? Check the full [Getting Started](http://jssip.net/documentation/0.2.x/getting_started/) section in the project website.
78+
Want to see more? Check the full [Getting Started](http://jssip.net/documentation/0.3.x/getting_started/) section in the project website.
5579

5680

5781
## Online Demo
@@ -73,14 +97,20 @@ Check our **Tryit JsSIP** online demo:
7397

7498
## Authors
7599

76-
### Main Author
100+
### José Luis Millán
101+
102+
* Main author. Core Designer and Developer.
103+
* <jmillan@aliax.net> (Github [@jmillan](https://github.com/jmillan))
104+
105+
### Iñaki Baz Castillo
77106

78-
* José Luis Millán (<jmillan@aliax.net> | [github](https://github.com/jmillan) | [twitter](https://twitter.com/jomivi))
107+
* Core Designer and Developer.
108+
* <ibc@aliax.net> (Github [@ibc](https://github.com/ibc))
79109

80-
### Contributors
110+
### Saúl Ibarra Corretgé
81111

82-
* Iñaki Baz Castillo (<ibc@aliax.net> | [github](https://github.com/ibc) | [twitter](https://twitter.com/ibc_tw))
83-
* Saúl Ibarra Corretgé (<saghul@gmail.com> | [github](https://github.com/saghul) | [twitter](https://twitter.com/saghul))
112+
* Core Designer.
113+
* <saghul@gmail.com> (Github [@saghul](https://github.com/saghul))
84114

85115

86116
## License

0 commit comments

Comments
 (0)
Please sign in to comment.