Skip to content

Commit

Permalink
Added some missing recorder events
Browse files Browse the repository at this point in the history
  • Loading branch information
sambua committed Aug 15, 2022
1 parent d4f7cec commit 9f09d25
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ React SDK supports all of the following events and parameters:
- [Application-wide Embedding Events](https://ziggeo.com/docs/sdks/javascript/browser-interaction/application-embedding-events#javascript-revision=stable)

#### Changelog:
- v4.6.1 Added several missing video recorder embedding events (`onMicrophonehealth, onCamerahealth etc.`).
- v4.6.0 Was upgraded to the stable `r-39` with new features and improvements, where ZiggeoAudioRecorder and ZiggeoAudioPlayer components will support by default.
- v4.5.0 Added new ZiggeoAudioRecorder and ZiggeoAudioPlayer components, could be used only with the lates ziggeo-js-sdk. [Upgrade Instruction](https://github.com/Ziggeo/react-ziggeo#upgrade-ziggeo-sdk)
- v4.3.3 Downgraded to Ziggeo stable revision`~2.35.22`, nothing very serious changes are made on the latest version.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-ziggeo",
"version": "4.6.0",
"version": "4.6.1",
"description": "Ziggeo's react component for easy react application deployment",
"main": "build/index",
"scripts": {
Expand Down
9 changes: 9 additions & 0 deletions src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,15 @@ export const ziggeoRecorderEmbeddingEventsPropTypes = {
onVerified: func,
onNoCamera: func,
onNoMicrophone: func,
onMicrophonehealth: func,
onCamerahealth: func,
onCameraSignal: func,
onBound: func,
onHasCamera: func,
onHasMicrophone: func,
onRecordingStopped: func,
onStopped: func,
onReadyToRecord: func,
onRef: func
};

Expand Down

0 comments on commit 9f09d25

Please sign in to comment.