Explorar o código

new tabby-web release

Eugene Pankov %!s(int64=2) %!d(string=hai) anos
pai
achega
1b1445bf20

+ 1 - 1
tabby-community-color-schemes/package.json

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

+ 1 - 1
tabby-core/package.json

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

+ 1 - 1
tabby-electron/package.json

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

+ 1 - 1
tabby-linkifier/package.json

@@ -1,6 +1,6 @@
 {
   "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",
   "keywords": [
     "tabby-builtin-plugin"

+ 1 - 1
tabby-local/package.json

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

+ 1 - 1
tabby-plugin-manager/package.json

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

+ 1 - 1
tabby-serial/package.json

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

+ 1 - 1
tabby-settings/package.json

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

+ 1 - 1
tabby-ssh/package.json

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

+ 1 - 1
tabby-telnet/package.json

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

+ 1 - 1
tabby-terminal/package.json

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

+ 1 - 1
tabby-web-demo/package.json

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

+ 1 - 1
tabby-web/package.json

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

+ 1 - 1
web/package.json

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

+ 8 - 0
web/polyfills.ts

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