new tabby-web release

This commit is contained in:
Eugene Pankov 2022-11-07 22:57:40 +01:00
parent 4e0cc12f83
commit 1b1445bf20
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4
15 changed files with 22 additions and 14 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "tabby-community-color-schemes", "name": "tabby-community-color-schemes",
"version": "1.0.171-nightly.3", "version": "1.0.187-nightly.1",
"description": "Community color schemes for Tabby", "description": "Community color schemes for Tabby",
"keywords": [ "keywords": [
"tabby-builtin-plugin" "tabby-builtin-plugin"

View File

@ -1,6 +1,6 @@
{ {
"name": "tabby-core", "name": "tabby-core",
"version": "1.0.171-nightly.3", "version": "1.0.187-nightly.1",
"description": "Tabby core", "description": "Tabby core",
"keywords": [ "keywords": [
"tabby-builtin-plugin" "tabby-builtin-plugin"

View File

@ -1,6 +1,6 @@
{ {
"name": "tabby-electron", "name": "tabby-electron",
"version": "1.0.171-nightly.3", "version": "1.0.187-nightly.1",
"description": "Electron-specific bindings", "description": "Electron-specific bindings",
"keywords": [ "keywords": [
"tabby-builtin-plugin" "tabby-builtin-plugin"

View File

@ -1,6 +1,6 @@
{ {
"name": "tabby-linkifier", "name": "tabby-linkifier",
"version": "1.0.171-nightly.3", "version": "1.0.187-nightly.1",
"description": "Makes URLs, IPs and file paths clickable in Tabby", "description": "Makes URLs, IPs and file paths clickable in Tabby",
"keywords": [ "keywords": [
"tabby-builtin-plugin" "tabby-builtin-plugin"

View File

@ -1,6 +1,6 @@
{ {
"name": "tabby-local", "name": "tabby-local",
"version": "1.0.171-nightly.3", "version": "1.0.187-nightly.1",
"description": "Tabby's local shell plugin", "description": "Tabby's local shell plugin",
"keywords": [ "keywords": [
"tabby-builtin-plugin" "tabby-builtin-plugin"

View File

@ -1,6 +1,6 @@
{ {
"name": "tabby-plugin-manager", "name": "tabby-plugin-manager",
"version": "1.0.171-nightly.3", "version": "1.0.187-nightly.1",
"description": "Tabby's plugin manager", "description": "Tabby's plugin manager",
"keywords": [ "keywords": [
"tabby-builtin-plugin" "tabby-builtin-plugin"

View File

@ -1,6 +1,6 @@
{ {
"name": "tabby-serial", "name": "tabby-serial",
"version": "1.0.171-nightly.3", "version": "1.0.187-nightly.1",
"description": "Serial connections for Tabby", "description": "Serial connections for Tabby",
"keywords": [ "keywords": [
"tabby-builtin-plugin" "tabby-builtin-plugin"

View File

@ -1,6 +1,6 @@
{ {
"name": "tabby-settings", "name": "tabby-settings",
"version": "1.0.171-nightly.3", "version": "1.0.187-nightly.1",
"description": "Tabby terminal settings page", "description": "Tabby terminal settings page",
"keywords": [ "keywords": [
"tabby-builtin-plugin" "tabby-builtin-plugin"

View File

@ -1,6 +1,6 @@
{ {
"name": "tabby-ssh", "name": "tabby-ssh",
"version": "1.0.171-nightly.3", "version": "1.0.187-nightly.1",
"description": "SSH connections for Tabby", "description": "SSH connections for Tabby",
"keywords": [ "keywords": [
"tabby-builtin-plugin" "tabby-builtin-plugin"

View File

@ -1,6 +1,6 @@
{ {
"name": "tabby-telnet", "name": "tabby-telnet",
"version": "1.0.171-nightly.3", "version": "1.0.187-nightly.1",
"description": "Telnet/socket connections for Tabby", "description": "Telnet/socket connections for Tabby",
"keywords": [ "keywords": [
"tabby-builtin-plugin" "tabby-builtin-plugin"

View File

@ -1,6 +1,6 @@
{ {
"name": "tabby-terminal", "name": "tabby-terminal",
"version": "1.0.171-nightly.4", "version": "1.0.187-nightly.1",
"description": "Tabby's terminal emulation core", "description": "Tabby's terminal emulation core",
"keywords": [ "keywords": [
"tabby-builtin-plugin" "tabby-builtin-plugin"

View File

@ -1,6 +1,6 @@
{ {
"name": "tabby-web-demo", "name": "tabby-web-demo",
"version": "1.0.171-nightly.3", "version": "1.0.187-nightly.1",
"main": "dist/index.js", "main": "dist/index.js",
"typings": "dist/index.d.ts", "typings": "dist/index.d.ts",
"scripts": { "scripts": {

View File

@ -1,6 +1,6 @@
{ {
"name": "tabby-web", "name": "tabby-web",
"version": "1.0.171-nightly.3", "version": "1.0.187-nightly.1",
"description": "Web-specific bindings", "description": "Web-specific bindings",
"keywords": [ "keywords": [
"tabby-builtin-plugin" "tabby-builtin-plugin"

View File

@ -20,5 +20,5 @@
"scripts": { "scripts": {
"postinstall": "patch-package" "postinstall": "patch-package"
}, },
"version": "1.0.171-nightly.3" "version": "1.0.187-nightly.1"
} }

View File

@ -42,6 +42,7 @@ export class SocketProxy extends Duplex {
} }
Tabby.registerMock('fs', { Tabby.registerMock('fs', {
rmdirSync: () => null,
realpathSync: () => null, realpathSync: () => null,
readdir: () => null, readdir: () => null,
stat: () => null, stat: () => null,
@ -71,6 +72,10 @@ Tabby.registerMock('os', {
arch: () => 'web', arch: () => 'web',
platform: () => 'web', platform: () => 'web',
homedir: () => '/home', homedir: () => '/home',
tmpdir: () => '/tmp',
constants: {
errno: {},
},
}) })
Tabby.registerModule('buffer', { Tabby.registerModule('buffer', {
Buffer: window['Buffer'], Buffer: window['Buffer'],
@ -141,8 +146,11 @@ Tabby.registerModule('rxjs/operators', require('rxjs'))
Tabby.registerModule('string_decoder', require('string_decoder')) Tabby.registerModule('string_decoder', require('string_decoder'))
Tabby.registerModule('js-yaml', require('js-yaml')) Tabby.registerModule('js-yaml', require('js-yaml'))
Tabby.registerModule('zone.js/dist/zone.js', require('zone.js/dist/zone.js')) Tabby.registerModule('zone.js/dist/zone.js', require('zone.js/dist/zone.js'))
Tabby.registerModule('any-promise', require('any-promise'))
Object.assign(window, { Object.assign(window, {
__dirname: '__dirname', __dirname: '__dirname',
setImmediate: setTimeout as any, setImmediate: setTimeout as any,
}) })
process.addListener = () => null