podchat-browser 12.8.0 → 12.8.1-snapshot.0
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/changelog.md +29 -0
- package/dist/node/chat.js +393 -393
- package/dist/node/lib/constants.js +207 -208
- package/dist/node/lib/store/eventEmitter.js +23 -23
- package/dist/node/lib/store/index.js +15 -15
- package/dist/node/lib/store/threads.js +120 -120
- package/dist/podchat-browser-bundle.js +47553 -47553
- package/package.json +1 -1
- package/src/chat.js +218 -247
- package/src/lib/constants.js +0 -1
- package/dist/node/lib/call/webrtcPeer.js +0 -277
package/changelog.md
CHANGED
|
@@ -5,6 +5,35 @@ to see complete list of changelog please visit [ChangeLog](http://gp.fanapsoft.i
|
|
|
5
5
|
|
|
6
6
|
##[Unreleased]
|
|
7
7
|
|
|
8
|
+
## [12.8.0] - 2023-03-12
|
|
9
|
+
### Added
|
|
10
|
+
- Prevent request when socket not connected
|
|
11
|
+
- Method: inqueryCallState
|
|
12
|
+
- Event: THREAD_UNREAD_COUNT_UPDATED on chat: LAST_MESSAGE_DELETED
|
|
13
|
+
- Method: resetCallStream
|
|
14
|
+
- Event: CALL_RECORDING_FAILED
|
|
15
|
+
- unreadCount cache, threads cached
|
|
16
|
+
- Parameters: isGroup, type to getThreads
|
|
17
|
+
- uniqueId to async messages
|
|
18
|
+
- Parameters: username, cellphoneNumber to getThreadParticipants
|
|
19
|
+
- Event: CALL_RECORDING_FAILED
|
|
20
|
+
- Method: reGrantMediaStreams
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- Implemented new poor connection event for audio and video
|
|
24
|
+
- audioLevel improvement
|
|
25
|
+
- Modified chat ping and async
|
|
26
|
+
- Improved socket connection error
|
|
27
|
+
- Refactor call request handling
|
|
28
|
+
- Parameter: coreUserId to getContacts
|
|
29
|
+
- Parameter: onlyNewMessages to getHistory
|
|
30
|
+
-
|
|
31
|
+
### Fixed
|
|
32
|
+
- Removed unnecessary call to getAllThreads on asyncReady
|
|
33
|
+
- Improved functionality of field: ownerId
|
|
34
|
+
- Bug in CALL_DIVS event in groupCall
|
|
35
|
+
- Modified method exportChat due to the chat server changes
|
|
36
|
+
|
|
8
37
|
## [12.7.2-snapshot.0] - 2022-11-01
|
|
9
38
|
### Added
|
|
10
39
|
- Added possibility to accept incoming call while user is in an existing call
|