# io.Connect Desktop 9.14

Source: https://docs.interop.io/desktop/getting-started/changelog/platform/9-14/index.html

## io.Connect Desktop 9.14

*Release date: 16.06.2026*

| Components | Version |
|------------|---------|
| Electron | [42.3.3](https://releases.electronjs.org/release/v42.3.3) |
| Chromium | 148.0.7778.218 |
| Node.js | 24.15.0 |

The following libraries are bundled with **io.Connect Desktop** 9.14 and will be used for [auto injection](https://docs.interop.io/desktop/getting-started/how-to/interop-enable-your-apps/javascript/index.md#auto_injection):

| Injected Library | Version |
|------------------|---------|
| [`@interopio/desktop`](https://www.npmjs.com/package/@interopio/desktop) | [6.17](https://docs.interop.io/desktop/getting-started/changelog/libraries/interopio-desktop/index.md#617-6170) |
| [`@interopio/fdc3`](https://www.npmjs.com/package/@interopio/fdc3) | 2.7 |

## New Features

> ### Workspace Splitter Size
>
> It's now possible to customize the size of the [Workspace splitters](https://docs.interop.io/desktop/capabilities/windows/workspaces/overview/index.md#extending_workspaces-splitter_size) (the draggable dividers between the windows in a Workspace).
>
> To specify a splitter size in pixels, use the `splitterSize` property of the `settings` object within the `components` prop of the `<Workspaces />` component:
>
> ```javascript
> import Workspaces from "@interopio/workspaces-ui-react";
>
> const App = () => {
>     return (
>         <Workspaces
>             components={{
>                 settings: {
>                     splitterSize: 10
>                 }
>             }}
>         />
>     );
> };
>
> export default App;
> ```
>
> This feature is available in [`@interopio/workspaces-ui-react`](https://www.npmjs.com/package/@interopio/workspaces-ui-react) 4.5 and later.

## Improvements & Bug Fixes

> - Upgraded to Electron 42.3.3 (Chromium 148).
>
> - Improved the App Preferences store to use the Electron networking stack (`net` module) for HTTP requests instead of the Node.js `request` library. This enables proper system proxy resolution for app preferences endpoints.
>
> - Improved handling of the system tray context menu to avoid potential issues.
>
> - Improved handling of Channel change events for hidden windows in the advanced platform mode with web groups enabled.
>
> - Fixed an issue related to startup crashes occurring on machines with outdated Microsoft Visual C++ Redistributable runtime (versions older than 14.40).
>
> - Fixed an issue related to unexpected resizing of app windows when opened from the system tray menu.
>
> - Fixed an issue related to Channel filtering in the Fidessa Adapter.
