@xterm/xterm 6.1.0-beta.242 → 6.1.0-beta.243

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@xterm/xterm",
3
3
  "description": "Full xterm terminal, in your browser",
4
- "version": "6.1.0-beta.242",
4
+ "version": "6.1.0-beta.243",
5
5
  "main": "lib/xterm.js",
6
6
  "module": "lib/xterm.mjs",
7
7
  "style": "css/xterm.css",
@@ -111,5 +111,5 @@
111
111
  "ws": "^8.2.3",
112
112
  "xterm-benchmark": "^0.3.1"
113
113
  },
114
- "commit": "7dc820f5fae335504e33647224635f9b22b7aa2c"
114
+ "commit": "95d9224b8cf1cbe894b0e5e1d5518adf842118e7"
115
115
  }
@@ -263,7 +263,7 @@ export abstract class CoreTerminal extends Disposable implements ICoreTerminal {
263
263
  private _handleWindowsPtyOptionChange(): void {
264
264
  let value = false;
265
265
  const windowsPty = this.optionsService.rawOptions.windowsPty;
266
- if (windowsPty && windowsPty.buildNumber !== undefined && windowsPty.buildNumber !== undefined) {
266
+ if (windowsPty && windowsPty.backend !== undefined && windowsPty.buildNumber !== undefined) {
267
267
  value = !!(windowsPty.backend === 'conpty' && windowsPty.buildNumber < 21376);
268
268
  }
269
269
  if (value) {
@@ -6,4 +6,4 @@
6
6
  /**
7
7
  * The xterm.js version. This is updated by the publish script from package.json.
8
8
  */
9
- export const XTERM_VERSION = '6.1.0-beta.242';
9
+ export const XTERM_VERSION = '6.1.0-beta.243';