podchat-browser 12.9.20-snapshot.8 → 12.9.20
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 +13 -0
- package/dist/node/buildConfig.json +1 -1
- package/dist/node/chat.js +2 -1
- package/dist/node/lib/call/multitrack/deviceManager.js +391 -391
- package/dist/node/lib/chat/folderMethods.js +53 -3
- package/dist/node/lib/store/folders.js +105 -0
- package/dist/node/lib/store/index.js +3 -0
- package/dist/podchat-browser-bundle.js +38251 -38443
- package/package.json +2 -2
- package/src/buildConfig.json +1 -1
- package/src/chat.js +1 -0
- package/src/lib/chat/folderMethods.js +56 -3
- package/src/lib/store/folders.js +72 -0
- package/src/lib/store/index.js +2 -0
package/changelog.md
CHANGED
|
@@ -5,6 +5,19 @@ to see complete list of changelog please visit [ChangeLog](http://gp.fanapsoft.i
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [12.9.20] 28-06-2026
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- New file download methods
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Bugs in new contact methods and contacts cache
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- Updated internal packages
|
|
18
|
+
- Improved chat ping functionality
|
|
19
|
+
|
|
20
|
+
|
|
8
21
|
## [12.9.19] 30-05-2026
|
|
9
22
|
|
|
10
23
|
### Added
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"12.9.20
|
|
1
|
+
{"version":"12.9.20","date":"۱۴۰۵/۴/۷","VersionInfo":"Release: true, Snapshot: false, Is For Test: false"}
|
package/dist/node/chat.js
CHANGED
|
@@ -276,7 +276,8 @@ function Chat(params) {
|
|
|
276
276
|
case 3:
|
|
277
277
|
// CLOSED
|
|
278
278
|
app.store.reactionSummaries.removeAllMessages();
|
|
279
|
-
app.store.reactionsList.removeAllMessages();
|
|
279
|
+
app.store.reactionsList.removeAllMessages();
|
|
280
|
+
app.store.folders.removeAll(); // store.reactionsList.invalidateCache();
|
|
280
281
|
|
|
281
282
|
app.messenger.chatState = false;
|
|
282
283
|
app.messenger.stopChatPing();
|