@openfin/node-adapter 41.83.3 → 41.100.17
Sign up to get free protection for your applications and to get access to all the features.
- package/out/node-adapter.js +7 -7
- package/package.json +4 -3
- package/resources/darwin/OpenFinRVM.app/Contents/CodeResources +0 -0
- package/resources/darwin/OpenFinRVM.app/Contents/Helpers/FinLinksHandler.app/Contents/Info.plist +2 -2
- package/resources/darwin/OpenFinRVM.app/Contents/Helpers/FinLinksHandler.app/Contents/MacOS/FinLinksHandler +0 -0
- package/resources/darwin/OpenFinRVM.app/Contents/Info.plist +2 -2
- package/resources/darwin/OpenFinRVM.app/Contents/MacOS/OpenFinRVM +0 -0
- package/resources/darwin/OpenFinRVM.app/Contents/_CodeSignature/CodeResources +1 -1
- package/resources/win/OpenFinRVM.exe +0 -0
package/out/node-adapter.js
CHANGED
@@ -1410,7 +1410,7 @@ class WebContents extends base_1$j.EmitterBase {
|
|
1410
1410
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
1411
1411
|
* });
|
1412
1412
|
*
|
1413
|
-
* await view.navigate('
|
1413
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
1414
1414
|
*
|
1415
1415
|
* const sharedWorkers = await view.getSharedWorkers();
|
1416
1416
|
* ```
|
@@ -1421,7 +1421,7 @@ class WebContents extends base_1$j.EmitterBase {
|
|
1421
1421
|
* name:'child',
|
1422
1422
|
* defaultWidth: 300,
|
1423
1423
|
* defaultHeight: 300,
|
1424
|
-
* url: '
|
1424
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
1425
1425
|
* frame: true,
|
1426
1426
|
* autoShow: true
|
1427
1427
|
* };
|
@@ -1448,7 +1448,7 @@ class WebContents extends base_1$j.EmitterBase {
|
|
1448
1448
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
1449
1449
|
* });
|
1450
1450
|
*
|
1451
|
-
* await view.navigate('
|
1451
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
1452
1452
|
*
|
1453
1453
|
* await view.inspectSharedWorker();
|
1454
1454
|
* ```
|
@@ -1459,7 +1459,7 @@ class WebContents extends base_1$j.EmitterBase {
|
|
1459
1459
|
* name:'child',
|
1460
1460
|
* defaultWidth: 300,
|
1461
1461
|
* defaultHeight: 300,
|
1462
|
-
* url: '
|
1462
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
1463
1463
|
* frame: true,
|
1464
1464
|
* autoShow: true
|
1465
1465
|
* };
|
@@ -1487,7 +1487,7 @@ class WebContents extends base_1$j.EmitterBase {
|
|
1487
1487
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
1488
1488
|
* });
|
1489
1489
|
*
|
1490
|
-
* await view.navigate('
|
1490
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
1491
1491
|
*
|
1492
1492
|
* const sharedWorkers = await view.getSharedWorkers();
|
1493
1493
|
* await view.inspectSharedWorkerById(sharedWorkers[0].id);
|
@@ -1499,7 +1499,7 @@ class WebContents extends base_1$j.EmitterBase {
|
|
1499
1499
|
* name:'child',
|
1500
1500
|
* defaultWidth: 300,
|
1501
1501
|
* defaultHeight: 300,
|
1502
|
-
* url: '
|
1502
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
1503
1503
|
* frame: true,
|
1504
1504
|
* autoShow: true
|
1505
1505
|
* };
|
@@ -17760,7 +17760,7 @@ class NodeEnvironment extends BaseEnvironment_1 {
|
|
17760
17760
|
};
|
17761
17761
|
}
|
17762
17762
|
getAdapterVersionSync() {
|
17763
|
-
return "41.
|
17763
|
+
return "41.100.17";
|
17764
17764
|
}
|
17765
17765
|
observeBounds(element, onChange) {
|
17766
17766
|
throw new Error('Method not implemented.');
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@openfin/node-adapter",
|
3
|
-
"version": "41.
|
3
|
+
"version": "41.100.17",
|
4
4
|
"description": "See README.md",
|
5
5
|
"main": "out/node-adapter.js",
|
6
6
|
"types": "out/node-adapter.d.ts",
|
@@ -14,7 +14,8 @@
|
|
14
14
|
"watch": "rollup --config --watch --environment MODE:development",
|
15
15
|
"ci:prepublish": "of-npm prepublish",
|
16
16
|
"ci:postpublish": "of-npm postpublish",
|
17
|
-
"ci:publish": "npm publish"
|
17
|
+
"ci:publish": "npm publish",
|
18
|
+
"version:update": "of-npm version --allow-same-version '$RMAJOR.$RMINOR.$RPATCH'"
|
18
19
|
},
|
19
20
|
"files": [
|
20
21
|
"out/*",
|
@@ -23,7 +24,7 @@
|
|
23
24
|
"author": "OpenFin",
|
24
25
|
"dependencies": {
|
25
26
|
"@types/node": "^20.14.2",
|
26
|
-
"@openfin/core": "41.
|
27
|
+
"@openfin/core": "41.100.17",
|
27
28
|
"lodash": "^4.17.21",
|
28
29
|
"ws": "^7.3.0"
|
29
30
|
}
|
Binary file
|
package/resources/darwin/OpenFinRVM.app/Contents/Helpers/FinLinksHandler.app/Contents/Info.plist
CHANGED
@@ -11,11 +11,11 @@
|
|
11
11
|
<key>CFBundlePackageType</key>
|
12
12
|
<string>APPL</string>
|
13
13
|
<key>CFBundleShortVersionString</key>
|
14
|
-
<string>
|
14
|
+
<string>15.1.0.2</string>
|
15
15
|
<key>CFBundleSignature</key>
|
16
16
|
<string>????</string>
|
17
17
|
<key>CFBundleVersion</key>
|
18
|
-
<string>
|
18
|
+
<string>15.1.0.2</string>
|
19
19
|
<key>LSUIElement</key>
|
20
20
|
<true/>
|
21
21
|
<key>NSAppTransportSecurity</key>
|
Binary file
|
@@ -11,11 +11,11 @@
|
|
11
11
|
<key>CFBundlePackageType</key>
|
12
12
|
<string>APPL</string>
|
13
13
|
<key>CFBundleShortVersionString</key>
|
14
|
-
<string>
|
14
|
+
<string>15.1.0.2</string>
|
15
15
|
<key>CFBundleSignature</key>
|
16
16
|
<string>ORVM</string>
|
17
17
|
<key>CFBundleVersion</key>
|
18
|
-
<string>
|
18
|
+
<string>15.1.0.2</string>
|
19
19
|
<key>LSUIElement</key>
|
20
20
|
<true/>
|
21
21
|
<key>NSAppTransportSecurity</key>
|
Binary file
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<dict>
|
16
16
|
<key>cdhash</key>
|
17
17
|
<data>
|
18
|
-
|
18
|
+
/Hb64aWF/Isx7Chu1El7wKSeBuo=
|
19
19
|
</data>
|
20
20
|
<key>requirement</key>
|
21
21
|
<string>identifier "com.openfin.finlinks-handler" and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = W2JK4V99Y5</string>
|
Binary file
|