@todesktop/plugin-recall 1.3.6 → 1.3.7
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/README.md +3 -0
- package/dist/main.js +1 -1
- package/dist/preload.js +1 -1
- package/package.json +2 -2
- package/src/main.ts +1 -1
- package/src/preload.ts +1 -1
package/README.md
CHANGED
|
@@ -267,6 +267,9 @@ Use `recallDesktop.addEventListener(eventType, callback)` to subscribe. Availabl
|
|
|
267
267
|
```
|
|
268
268
|
|
|
269
269
|
## Changelog
|
|
270
|
+
- 1.3.7
|
|
271
|
+
- Updated `@recallai/desktop-sdk` to v2.0.13
|
|
272
|
+
- Pulled in upstream app-hang fixes, performance improvements, Google Meet PIP black-recording fixes, Arc window capture support, audio-pipeline fixes, and Google Meet detection fixes
|
|
270
273
|
- 1.3.6
|
|
271
274
|
- Updated `@recallai/desktop-sdk` to v2.0.12
|
|
272
275
|
- Pulled in upstream crash fixes, TLS handling fixes, audio-pipeline telemetry, Teams/Chromium/Safari capture fixes, Zoom multiwindow sharing, and Chrome vertical-tab meeting detection
|
package/dist/main.js
CHANGED
|
@@ -161,7 +161,7 @@ const setPluginContext = (input) => {
|
|
|
161
161
|
*/
|
|
162
162
|
class RecallDesktopMain {
|
|
163
163
|
constructor() {
|
|
164
|
-
this.version = "1.3.
|
|
164
|
+
this.version = "1.3.7";
|
|
165
165
|
this.isInitialized = false;
|
|
166
166
|
this.subscriptions = new Map();
|
|
167
167
|
this.trackedWebContents = new Map();
|
package/dist/preload.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@todesktop/plugin-recall",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.7",
|
|
4
4
|
"description": "ToDesktop plugin for Recall.ai Desktop Recording SDK - Plugin package",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"rimraf": "^5.0.0"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@recallai/desktop-sdk": "2.0.
|
|
68
|
+
"@recallai/desktop-sdk": "2.0.13",
|
|
69
69
|
"@types/node": "20.19.2"
|
|
70
70
|
},
|
|
71
71
|
"repository": {
|
package/src/main.ts
CHANGED
|
@@ -30,7 +30,7 @@ import { recallSdkStore, setPluginContext } from "./store";
|
|
|
30
30
|
import RecallAiSdk from "@recallai/desktop-sdk";
|
|
31
31
|
|
|
32
32
|
class RecallDesktopMain {
|
|
33
|
-
private version = "1.3.
|
|
33
|
+
private version = "1.3.7";
|
|
34
34
|
private isInitialized = false;
|
|
35
35
|
private subscriptions: Map<RecallSdkEventType, Map<number, number>> =
|
|
36
36
|
new Map();
|
package/src/preload.ts
CHANGED