@openfin/remote-adapter 41.100.17 → 41.100.18
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/out/remote-adapter.js +19 -0
- package/package.json +2 -2
package/out/remote-adapter.js
CHANGED
|
@@ -6463,6 +6463,25 @@ function requireInstance$2 () {
|
|
|
6463
6463
|
})
|
|
6464
6464
|
.then(() => undefined);
|
|
6465
6465
|
}
|
|
6466
|
+
/**
|
|
6467
|
+
* Set hover text for this application's system tray icon.
|
|
6468
|
+
* Note: Application must first set a tray icon with {@link Application.setTrayIcon}.
|
|
6469
|
+
* @param toolTip
|
|
6470
|
+
*
|
|
6471
|
+
* @example
|
|
6472
|
+
*
|
|
6473
|
+
* ```js
|
|
6474
|
+
* const app = fin.Application.getCurrentSync();
|
|
6475
|
+
* const iconUrl = "http://cdn.openfin.co/assets/testing/icons/circled-digit-one.png";
|
|
6476
|
+
*
|
|
6477
|
+
* await app.setTrayIcon(iconUrl);
|
|
6478
|
+
*
|
|
6479
|
+
* await app.setTrayIconToolTip('My Application');
|
|
6480
|
+
* ```
|
|
6481
|
+
*/
|
|
6482
|
+
async setTrayIconToolTip(toolTip) {
|
|
6483
|
+
await this.wire.sendAction('set-tray-icon-tooltip', { ...this.identity, toolTip });
|
|
6484
|
+
}
|
|
6466
6485
|
/**
|
|
6467
6486
|
* Sets new application's shortcut configuration. Windows only.
|
|
6468
6487
|
* @param config New application's shortcut configuration.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfin/remote-adapter",
|
|
3
|
-
"version": "41.100.
|
|
3
|
+
"version": "41.100.18",
|
|
4
4
|
"description": "Establish intermachine runtime connections using webRTC.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"private": false,
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
"author": "OpenFin",
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"lodash": "^4.17.21",
|
|
23
|
-
"@openfin/core": "41.100.
|
|
23
|
+
"@openfin/core": "41.100.18"
|
|
24
24
|
}
|
|
25
25
|
}
|