Changelog
io.Connect Desktop 10.4.2
Release date: 15.09.2026
| Components | Version |
|---|---|
| Electron | 43.2.0 |
| Chromium | 150.0.7871.129 |
| Node.js | 24.18.0 |
The following libraries are bundled with io.Connect Desktop 10.4.2 and will be used for auto injection:
| Injected Library | Version |
|---|---|
@interopio/desktop |
6.22 |
@interopio/fdc3 |
2.11 |
New Features
Awaited Apps in the Boot Sequence Signals
The data returned by the
"T42.AppManager.AutoStart.Stage"Interop method used for receiving app batch start and completion signals during the boot sequence now containsawaitedandnotAwaitedproperties. These properties are available only when the current run priority batch of apps has completed loading (i.e., whenphaseis"stageCompleted").The
awaitedandnotAwaitedproperties hold the names of the apps in the batch for which the platform respectively did and didn't wait before continuing the boot sequence:const methodName = "T42.AppManager.AutoStart.Stage"; const handler = ({ phase, awaited, notAwaited }) => { if (phase === "stageCompleted") { // The platform has waited for these apps. console.log(`Awaited: ${awaited}`); // These apps may still be starting. console.log(`Not awaited: ${notAwaited}`); }; }; await io.interop.register(methodName, handler);
Improvements & Bug Fixes
Fixed an issue related to properly respecting the values of the
"waitForInitialization"property in the boot sequence configuration of an app.Fixed an issue on Windows that could cause the platform to freeze during startup on machines on which security software delays the first load of the platform binaries.
Fixed an issue related to starting io.Connect Desktop via a protocol handler while the platform is already running.