Skip to content

Commit

Permalink
Minor updates to gitignores, comments and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloFuente committed Sep 28, 2018
1 parent 1f298b4 commit dcb6713
Show file tree
Hide file tree
Showing 9 changed files with 142 additions and 126 deletions.
2 changes: 2 additions & 0 deletions openvidu-browser/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,5 @@ typings/
# dotenv environment variables file
.env

docs/

46 changes: 27 additions & 19 deletions openvidu-browser/npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions openvidu-browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"description": "OpenVidu Browser",
"devDependencies": {
"browserify": "16.2.2",
"browserify": "16.2.3",
"grunt": "1.0.3",
"grunt-autoprefixer": "3.0.4",
"grunt-cli": "1.3.1",
Expand All @@ -25,7 +25,7 @@
"tsify": "4.0.0",
"tslint": "5.11.0",
"typedoc": "0.12.0",
"typescript": "3.0.3",
"typescript": "3.1.1",
"uglify-js": "3.4.9"
},
"license": "Apache-2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,9 @@ public void close() throws OpenViduJavaClientException, OpenViduHttpException {
* ({@link io.openvidu.java.client.Session#getActiveConnections()}) and use
* those values to call
* {@link io.openvidu.java.client.Session#forceDisconnect(Connection)} or
* {@link io.openvidu.java.client.Session#forceUnpublish(Publisher)}
* {@link io.openvidu.java.client.Session#forceUnpublish(Publisher)}. <br>
*
* To update every Session object owned by OpenVidu object, call {@link io.openvidu.java.client.OpenVidu#fetch()}
*
* @return true if the Session status has changed with respect to the server,
* false if not. This applies to any property or sub-property of the
Expand Down
2 changes: 2 additions & 0 deletions openvidu-node-client/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,5 @@ Thumbs.db
*.editorconfig

/lib/

docs/
4 changes: 3 additions & 1 deletion openvidu-node-client/src/Session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,9 @@ export class Session {

/**
* Updates every property of the Session with the current status it has in OpenVidu Server. This is especially useful for accessing the list of active
* connections to the Session ([[Session.activeConnections]]) and use those values to call [[Session.forceDisconnect]] or [[Session.forceUnpublish]]
* connections of the Session ([[Session.activeConnections]]) and use those values to call [[Session.forceDisconnect]] or [[Session.forceUnpublish]].
*
* To update every Session object owned by OpenVidu object, call [[OpenVidu.fetch]]
*
* @returns A promise resolved to true if the Session status has changed with respect to the server, or to false if not.
* This applies to any property or sub-property of the Session object
Expand Down
Loading

0 comments on commit dcb6713

Please sign in to comment.