mirror of
https://github.com/Eugeny/tabby.git
synced 2024-12-23 18:44:20 +03:00
bumped xterm
This commit is contained in:
parent
475ff14f78
commit
781a4a76c0
@ -16,9 +16,6 @@
|
|||||||
],
|
],
|
||||||
"author": "Eugene Pankov",
|
"author": "Eugene Pankov",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
|
||||||
"opentype.js": "^1.3.3"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ansi-colors": "^4.1.1",
|
"ansi-colors": "^4.1.1",
|
||||||
"binstring": "^0.2.1",
|
"binstring": "^0.2.1",
|
||||||
@ -26,15 +23,16 @@
|
|||||||
"cli-spinner": "^0.2.10",
|
"cli-spinner": "^0.2.10",
|
||||||
"dataurl": "0.1.0",
|
"dataurl": "0.1.0",
|
||||||
"hexer": "^1.5.0",
|
"hexer": "^1.5.0",
|
||||||
|
"opentype.js": "^1.3.4",
|
||||||
"ps-node": "^0.1.6",
|
"ps-node": "^0.1.6",
|
||||||
"runes": "^0.4.2",
|
"runes": "^0.4.2",
|
||||||
"xterm": "npm:@tabby-gang/xterm@4.14.0",
|
"xterm": "npm:@tabby-gang/xterm@^4.15.0",
|
||||||
"xterm-addon-fit": "^0.5.0",
|
"xterm-addon-fit": "^0.5.0",
|
||||||
"xterm-addon-ligatures": "^0.5.0",
|
"xterm-addon-ligatures": "^0.5.0",
|
||||||
"xterm-addon-search": "^0.8.1",
|
"xterm-addon-search": "^0.8.1",
|
||||||
"xterm-addon-serialize": "^0.6.0",
|
"xterm-addon-serialize": "^0.6.1",
|
||||||
"xterm-addon-unicode11": "^0.3.0",
|
"xterm-addon-unicode11": "^0.3.0",
|
||||||
"xterm-addon-webgl": "^0.11.2",
|
"xterm-addon-webgl": "^0.11.3",
|
||||||
"zmodem.js": "^0.1.9"
|
"zmodem.js": "^0.1.9"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@ -257,15 +257,15 @@ export class XTermFrontend extends Frontend {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
this.xterm.setOption('fontFamily', getCSSFontFamily(config))
|
this.xterm.options.fontFamily = getCSSFontFamily(config)
|
||||||
this.xterm.setOption('bellStyle', config.terminal.bell)
|
this.xterm.options.bellStyle = config.terminal.bell
|
||||||
this.xterm.setOption('cursorStyle', {
|
this.xterm.options.cursorStyle = {
|
||||||
beam: 'bar',
|
beam: 'bar',
|
||||||
}[config.terminal.cursor] || config.terminal.cursor)
|
}[config.terminal.cursor] || config.terminal.cursor
|
||||||
this.xterm.setOption('cursorBlink', config.terminal.cursorBlink)
|
this.xterm.options.cursorBlink = config.terminal.cursorBlink
|
||||||
this.xterm.setOption('macOptionIsMeta', config.terminal.altIsMeta)
|
this.xterm.options.macOptionIsMeta = config.terminal.altIsMeta
|
||||||
this.xterm.setOption('scrollback', config.terminal.scrollbackLines)
|
this.xterm.options.scrollback = config.terminal.scrollbackLines
|
||||||
this.xterm.setOption('wordSeparator', config.terminal.wordSeparator)
|
this.xterm.options.wordSeparator = config.terminal.wordSeparator
|
||||||
this.configuredFontSize = config.terminal.fontSize
|
this.configuredFontSize = config.terminal.fontSize
|
||||||
this.configuredLinePadding = config.terminal.linePadding
|
this.configuredLinePadding = config.terminal.linePadding
|
||||||
this.setFontSize()
|
this.setFontSize()
|
||||||
@ -285,7 +285,7 @@ export class XTermFrontend extends Frontend {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (this.xtermCore._colorManager && !deepEqual(this.configuredTheme, theme)) {
|
if (this.xtermCore._colorManager && !deepEqual(this.configuredTheme, theme)) {
|
||||||
this.xterm.setOption('theme', theme)
|
this.xterm.options.theme = theme
|
||||||
this.configuredTheme = theme
|
this.configuredTheme = theme
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -309,7 +309,11 @@ export class XTermFrontend extends Frontend {
|
|||||||
}
|
}
|
||||||
|
|
||||||
saveState (): any {
|
saveState (): any {
|
||||||
return this.serializeAddon.serialize(1000)
|
return this.serializeAddon.serialize({
|
||||||
|
excludeAltBuffer: true,
|
||||||
|
excludeModes: true,
|
||||||
|
scrollback: 1000,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
restoreState (state: string): void {
|
restoreState (state: string): void {
|
||||||
@ -322,9 +326,9 @@ export class XTermFrontend extends Frontend {
|
|||||||
|
|
||||||
private setFontSize () {
|
private setFontSize () {
|
||||||
const scale = Math.pow(1.1, this.zoom)
|
const scale = Math.pow(1.1, this.zoom)
|
||||||
this.xterm.setOption('fontSize', this.configuredFontSize * scale)
|
this.xterm.options.fontSize = this.configuredFontSize * scale
|
||||||
// eslint-disable-next-line @typescript-eslint/restrict-plus-operands
|
// eslint-disable-next-line @typescript-eslint/restrict-plus-operands
|
||||||
this.xterm.setOption('lineHeight', (this.configuredFontSize + this.configuredLinePadding * 2) / this.configuredFontSize)
|
this.xterm.options.lineHeight = (this.configuredFontSize + this.configuredLinePadding * 2) / this.configuredFontSize * scale
|
||||||
this.resizeHandler()
|
this.resizeHandler()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,10 +101,10 @@ opentype.js@^0.8.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
tiny-inflate "^1.0.2"
|
tiny-inflate "^1.0.2"
|
||||||
|
|
||||||
opentype.js@^1.3.3:
|
opentype.js@^1.3.4:
|
||||||
version "1.3.3"
|
version "1.3.4"
|
||||||
resolved "https://registry.yarnpkg.com/opentype.js/-/opentype.js-1.3.3.tgz#65b8645b090a1ad444065b784d442fa19d1061f6"
|
resolved "https://registry.yarnpkg.com/opentype.js/-/opentype.js-1.3.4.tgz#1c0e72e46288473cc4a4c6a2dc60fd7fe6020d77"
|
||||||
integrity sha512-/qIY/+WnKGlPIIPhbeNjynfD2PO15G9lA/xqlX2bDH+4lc3Xz5GCQ68mqxj3DdUv6AJqCeaPvuAoH8mVL0zcuA==
|
integrity sha512-d2JE9RP/6uagpQAVtJoF0pJJA/fgai89Cc50Yp0EJHk+eLp6QQ7gBoblsnubRULNY132I0J1QKMJ+JTbMqz4sw==
|
||||||
dependencies:
|
dependencies:
|
||||||
string.prototype.codepointat "^0.2.1"
|
string.prototype.codepointat "^0.2.1"
|
||||||
tiny-inflate "^1.0.3"
|
tiny-inflate "^1.0.3"
|
||||||
@ -176,25 +176,25 @@ xterm-addon-search@^0.8.1:
|
|||||||
resolved "https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.8.1.tgz#dfc557e9bcf5fd8ed96292c0d271aa865bc545d5"
|
resolved "https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.8.1.tgz#dfc557e9bcf5fd8ed96292c0d271aa865bc545d5"
|
||||||
integrity sha512-OtOaC9gxD2Q4ZnjZrCSRZmKLwwUjXX3gP7mIzq8Rs50317DGRDqgTLuHTYv/Nx/LvI5ceVFRYCxK36Ixs1nXNw==
|
integrity sha512-OtOaC9gxD2Q4ZnjZrCSRZmKLwwUjXX3gP7mIzq8Rs50317DGRDqgTLuHTYv/Nx/LvI5ceVFRYCxK36Ixs1nXNw==
|
||||||
|
|
||||||
xterm-addon-serialize@^0.6.0:
|
xterm-addon-serialize@^0.6.1:
|
||||||
version "0.6.0"
|
version "0.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.6.0.tgz#3c967428de2cfd257a09066ef36e9aeba9817fe9"
|
resolved "https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.6.1.tgz#509335afee1367628dc685b822a1055b1213de83"
|
||||||
integrity sha512-0D7nNdfvRsGhDdLgMIt1jYiYSVlvo18QRVkD4toa+3XcXr4G58FLbKu/gdfCt7da4aj7UIHbnOCexI0BncbVMA==
|
integrity sha512-dKscxAaNU6+cWEpuLrUGEn/IjrRvhdaVbDyJlIN1uQYGTi8HOgoGIoy6D5WtPabl2/CJ0W4OwlOQaUotCktXYA==
|
||||||
|
|
||||||
xterm-addon-unicode11@^0.3.0:
|
xterm-addon-unicode11@^0.3.0:
|
||||||
version "0.3.0"
|
version "0.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.3.0.tgz#e4435c3c91a5294a7eb8b79c380acbb28a659463"
|
resolved "https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.3.0.tgz#e4435c3c91a5294a7eb8b79c380acbb28a659463"
|
||||||
integrity sha512-x5fHDZT2j9tlTlHnzPHt++9uKZ2kJ/lYQOj3L6xJA22xoJsS8UQRw/5YIFg2FUHqEAbV77Z1fZij/9NycMSH/A==
|
integrity sha512-x5fHDZT2j9tlTlHnzPHt++9uKZ2kJ/lYQOj3L6xJA22xoJsS8UQRw/5YIFg2FUHqEAbV77Z1fZij/9NycMSH/A==
|
||||||
|
|
||||||
xterm-addon-webgl@^0.11.2:
|
xterm-addon-webgl@^0.11.3:
|
||||||
version "0.11.2"
|
version "0.11.3"
|
||||||
resolved "https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.11.2.tgz#eeb01f85cb35b0e47d1a3b691d4c6de8b2584c8e"
|
resolved "https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.11.3.tgz#4d13933d8810d146613bbb66d59ea90de561f999"
|
||||||
integrity sha512-eEOKEIMZO0IRb+UTHhTaUwxpD1cu7Zqr+jdUfhDv9cfVieg9c4mcRn9RWvNGlprGdlLmOSTUByhm8ve6qAc4HQ==
|
integrity sha512-Lr6VjLYOrgxLNaUNLDdCBehkr1Vaja/laDMTtvghfRusUMRXTlRKlCb7E3yqx4VgCg5KcV96cArmh88KcwSpUg==
|
||||||
|
|
||||||
"xterm@npm:@tabby-gang/xterm@4.14.0":
|
"xterm@npm:@tabby-gang/xterm@^4.15.0":
|
||||||
version "4.14.0"
|
version "4.15.0"
|
||||||
resolved "https://registry.yarnpkg.com/@tabby-gang/xterm/-/xterm-4.14.0.tgz#4f86c17b5464302f3d011eb79d00b2c7f7b1a548"
|
resolved "https://registry.yarnpkg.com/@tabby-gang/xterm/-/xterm-4.15.0.tgz#8de23d234d076b2b11e65b4a71d96b5156f8d414"
|
||||||
integrity sha512-cUh0GyXdL7FgcdizJ83JItY42OhLyxGvUprG91bpLVGPJ6CBK+9cO+fEOl/Kcfx9fUyGW6Y5EzANg9LxXBoqcQ==
|
integrity sha512-er9SQsNXV42OLQxgDcOxURxLl7DkAI7zSoawCBu9M72C7fl1a3lU/rTNowHgHyJ/7ruaFGTA2+x5ji8IONVY+A==
|
||||||
|
|
||||||
yallist@^4.0.0:
|
yallist@^4.0.0:
|
||||||
version "4.0.0"
|
version "4.0.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user