podchat-browser 12.5.1 → 12.5.2-snapshot.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +4 -0
- package/changelog.md +61 -1
- package/chat-js-browser-sdk.zip +0 -0
- package/dist/node/call.module.js +4111 -0
- package/dist/node/chat.js +2092 -0
- package/dist/node/events.module.js +143 -0
- package/dist/node/lib/call/deviceCheck.js +69 -0
- package/dist/node/lib/constants.js +186 -0
- package/dist/node/lib/sentry.js +28 -0
- package/dist/node/messaging.module.js +308 -0
- package/dist/node/utility/utility.js +594 -0
- package/dist/podchat-12.5.1.js +55921 -55921
- package/{examples/bundle-test.js → dist/podchat-browser-bundle.js} +54886 -74111
- package/examples/index.html +1 -2
- package/examples/load.html +1 -1
- package/package.json +33 -7
- package/src/call.module.js +3567 -3679
- package/src/chat.js +11709 -11919
- package/src/events.module.js +107 -103
- package/src/lib/constants.js +205 -0
- package/src/lib/sentry.js +14 -0
- package/src/messaging.module.js +15 -23
- package/src/utility/utility.js +506 -517
- package/dist/podchat-11.4.2.js +0 -74696
- package/dist/podchat-11.4.3.js +0 -74696
- package/dist/podchat-12.1.0.js +0 -74707
- package/examples/kurento-utils.min.js +0 -55
- package/examples/purify.min.js +0 -3
package/.babelrc
ADDED
package/changelog.md
CHANGED
|
@@ -1,7 +1,67 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented here.
|
|
4
|
-
to see complete list of changelog please visit [ChangeLog](
|
|
4
|
+
to see complete list of changelog please visit [ChangeLog](http://gp.fanapsoft.ir/pod/pod-basic-sdk/chat-js-browser-sdk/-/blob/master/changelog.md)
|
|
5
|
+
|
|
6
|
+
## [12.5.2-snapshot.10] - 2022-06-2
|
|
7
|
+
### Added
|
|
8
|
+
- Do not process some chat messages when subjectId is not equal to current callId
|
|
9
|
+
|
|
10
|
+
## [12.5.2-snapshot.8] - 2022-06-2
|
|
11
|
+
### Changed
|
|
12
|
+
- Building process
|
|
13
|
+
|
|
14
|
+
## [12.5.2-snapshot.7] - 2022-06-1
|
|
15
|
+
### Changed
|
|
16
|
+
- Removed CALL_ENDED from LEAVE_CALL event in GroupCall
|
|
17
|
+
|
|
18
|
+
## [12.5.2-snapshot.6] - 2022-05-31
|
|
19
|
+
### Fixed
|
|
20
|
+
- Mute audio send only not all audio tags (Causes problems in Apple devices)
|
|
21
|
+
|
|
22
|
+
## [12.5.2-snapshot.5] - 2022-05-29
|
|
23
|
+
### Fixed
|
|
24
|
+
- User being muted when muting others
|
|
25
|
+
|
|
26
|
+
## [12.5.2-snapshot.4] - 2022-05-29
|
|
27
|
+
### Changed
|
|
28
|
+
- Improved call error logs in Sentry
|
|
29
|
+
|
|
30
|
+
## [12.5.2-snapshot.3] - 2022-05-24
|
|
31
|
+
### Changed
|
|
32
|
+
- Update sentry url
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## [12.5.2-snapshot.2] - 2022-05-24
|
|
36
|
+
### Changed
|
|
37
|
+
- Update async package
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
## [12.5.2-snapshot.0] - 2022-05-24
|
|
41
|
+
### Changed
|
|
42
|
+
- Changed typeCode handling functionality
|
|
43
|
+
- Updated sentry server URL
|
|
44
|
+
|
|
45
|
+
## [12.5.1] - 2022-05-24
|
|
46
|
+
## [12.5.0] - 2022-05-24
|
|
47
|
+
### Added
|
|
48
|
+
- Config to timeout the call request
|
|
49
|
+
- Failover call turn servers
|
|
50
|
+
- Improved call process handling
|
|
51
|
+
- Event for new participant to detect call is being recorded
|
|
52
|
+
- Events for file download progress
|
|
53
|
+
- Changed resizeScreenShare
|
|
54
|
+
- Event to detect users are speaking in a call
|
|
55
|
+
|
|
56
|
+
### Changed
|
|
57
|
+
- Improved janus servers connectivity (internally)
|
|
58
|
+
- Refactored topic peers handling
|
|
59
|
+
|
|
60
|
+
### Fixed
|
|
61
|
+
- htmlElements is undefined
|
|
62
|
+
- screenShare bugs
|
|
63
|
+
- topic reconnect loop errors
|
|
64
|
+
|
|
5
65
|
|
|
6
66
|
## [12.3.1] - 2022-02-06
|
|
7
67
|
### Added
|
|
Binary file
|