@codingame/monaco-vscode-xterm-addons-common 25.0.1 → 25.1.0

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-xterm-addons-common",
3
- "version": "25.0.1",
3
+ "version": "25.1.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - common package depending on xterm addons",
6
6
  "keywords": [],
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "25.0.1",
18
+ "@codingame/monaco-vscode-api": "25.1.0",
19
19
  "@xterm/addon-clipboard": "0.3.0-beta.97",
20
20
  "@xterm/addon-image": "0.10.0-beta.97",
21
21
  "@xterm/addon-ligatures": "0.11.0-beta.97",
@@ -660,7 +660,8 @@ let XtermTerminal = class XtermTerminal extends Disposable {
660
660
  this._webglAddonCustomGlyphs = this._terminalConfigurationService.config.customGlyphs;
661
661
  const Addon = await this._xtermAddonLoader.importAddon('webgl');
662
662
  this._webglAddon = ( new Addon({
663
- customGlyphs: this._terminalConfigurationService.config.customGlyphs
663
+ customGlyphs: this._terminalConfigurationService.config.customGlyphs,
664
+ preserveDrawingBuffer: this._terminalConfigurationService.config.preserveDrawingBuffer
664
665
  }));
665
666
  try {
666
667
  this.raw.loadAddon(this._webglAddon);