Skip to content

Commit

Permalink
update changelog and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
YuliaGrigorieva committed Jul 4, 2018
1 parent 71cf42b commit 323e340
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -29,6 +29,7 @@ npm-debug.log

.npmrc
out/
result.json

# Android/IntelliJ
#
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,18 @@
# Changelog

### 1.0.0
- New APIs with advanced functionality:
- Promises support
- Ability to indicate video directions on call creation or answering
- Easy way to subscribe to Voximplant React Native SDK events with on/off APIs
instead of DeviceEventEmitter
- Extended control for audio devices and camera with ability to handle events
about new audio device, audio device changes, camera errors
- Video resize modes for android
- Endpoints, Video streams and Video views

See official guides for mode details.

### 0.2.2
- Fix for login fail with access token, if previously login was performed via one time key
- Fix for [#40](https://github.com/voximplant/react-native-voximplant/issues/40)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -70,9 +70,9 @@ You can get the demo app from [http://github.com/voximplant/react-native-demo](h
You will need free VoxImplant developer account setup for making and receiving calls using the SDK.
Learn more at [quick start](https://voximplant.com/docs/references/articles/quickstart).

Useful links:
- [React Native SDK quick start quide]()
- [Migration guide]()
Official guides:
- [React Native SDK quick start quide](#)
- [Migration guide](#)


## Todo
Expand Down
7 changes: 6 additions & 1 deletion src/client/Client.js
Expand Up @@ -312,7 +312,12 @@ export default class Client {
}

/**
* Create outgoing call
* Create outgoing call.
*
* Important: There is a difference between rejected promise and the Voximplant.CallEvents.CallFailed event.
* If a promise is rejected, that indicates the issues in the application's code (e.g. a try to make a call without a login to the Voximplant cloud);
* in case the CallFailed event is triggered, that means a telecom-related issue (e.g. another participant rejects a call).
*
* @param {string} number - The number to call. For SIP compatibility reasons it should be a non-empty string even if the number itself is not used by a Voximplant cloud scenario.
* @param {Voximplant.CallSettings} [callSettings] - Optional call settings
* @returns {Promise<Voximplant.Call>}
Expand Down

0 comments on commit 323e340

Please sign in to comment.