diff --git a/tabby-core/package.json b/tabby-core/package.json index e0176a6a..9df6b391 100644 --- a/tabby-core/package.json +++ b/tabby-core/package.json @@ -1,6 +1,6 @@ { "name": "tabby-core", - "version": "1.0.147-nightly.4", + "version": "1.0.147", "description": "Tabby core", "keywords": [ "tabby-builtin-plugin" diff --git a/tabby-core/src/theme.scss b/tabby-core/src/theme.scss index 75bbfbd4..856e634f 100644 --- a/tabby-core/src/theme.scss +++ b/tabby-core/src/theme.scss @@ -306,21 +306,6 @@ search-panel { } } -.btn.btn-secondary { - @include button-outline-variant(#9badb9, #fff); - &:hover:not([disabled]), &:active:not([disabled]), &.active:not([disabled]) { - background-color: #3f484e; - border-color: darken(#9badb9, 25%); - } - - border-color: darken(#9badb9, 25%); - - &.disabled, - &:disabled { - color: #9badb9; - } -} - .btn-warning:not(:disabled):not(.disabled) { &.active, &:active { color: $gray-900; diff --git a/tabby-electron/package.json b/tabby-electron/package.json index c85d02ee..e3d95503 100644 --- a/tabby-electron/package.json +++ b/tabby-electron/package.json @@ -1,6 +1,6 @@ { "name": "tabby-electron", - "version": "1.0.147-nightly.4", + "version": "1.0.147", "description": "Electron-specific bindings", "keywords": [ "tabby-builtin-plugin" diff --git a/tabby-local/package.json b/tabby-local/package.json index 1dc16e15..8f34a482 100644 --- a/tabby-local/package.json +++ b/tabby-local/package.json @@ -1,6 +1,6 @@ { "name": "tabby-local", - "version": "1.0.147-nightly.4", + "version": "1.0.147", "description": "Tabby's local shell plugin", "keywords": [ "tabby-builtin-plugin" diff --git a/tabby-plugin-manager/package.json b/tabby-plugin-manager/package.json index 8267555d..e07c306e 100644 --- a/tabby-plugin-manager/package.json +++ b/tabby-plugin-manager/package.json @@ -1,6 +1,6 @@ { "name": "tabby-plugin-manager", - "version": "1.0.147-nightly.4", + "version": "1.0.147", "description": "Tabby's plugin manager", "keywords": [ "tabby-builtin-plugin" diff --git a/tabby-serial/package.json b/tabby-serial/package.json index 44a8e33b..8ef8fe46 100644 --- a/tabby-serial/package.json +++ b/tabby-serial/package.json @@ -1,6 +1,6 @@ { "name": "tabby-serial", - "version": "1.0.147-nightly.4", + "version": "1.0.147", "description": "Serial connections for Tabby", "keywords": [ "tabby-builtin-plugin" diff --git a/tabby-settings/package.json b/tabby-settings/package.json index 93f45f16..49a7ff02 100644 --- a/tabby-settings/package.json +++ b/tabby-settings/package.json @@ -1,6 +1,6 @@ { "name": "tabby-settings", - "version": "1.0.147-nightly.4", + "version": "1.0.147", "description": "Tabby terminal settings page", "keywords": [ "tabby-builtin-plugin" diff --git a/tabby-ssh/package.json b/tabby-ssh/package.json index 34119d1b..16aafe7a 100644 --- a/tabby-ssh/package.json +++ b/tabby-ssh/package.json @@ -1,6 +1,6 @@ { "name": "tabby-ssh", - "version": "1.0.147-nightly.4", + "version": "1.0.147", "description": "SSH connections for Tabby", "keywords": [ "tabby-builtin-plugin" diff --git a/tabby-telnet/package.json b/tabby-telnet/package.json index a66f7a7d..3d6098a7 100644 --- a/tabby-telnet/package.json +++ b/tabby-telnet/package.json @@ -1,6 +1,6 @@ { "name": "tabby-telnet", - "version": "1.0.147-nightly.4", + "version": "1.0.147", "description": "Telnet/socket connections for Tabby", "keywords": [ "tabby-builtin-plugin" diff --git a/tabby-terminal/package.json b/tabby-terminal/package.json index 27866e5b..24158385 100644 --- a/tabby-terminal/package.json +++ b/tabby-terminal/package.json @@ -1,6 +1,6 @@ { "name": "tabby-terminal", - "version": "1.0.147-nightly.4", + "version": "1.0.147", "description": "Tabby's terminal emulation core", "keywords": [ "tabby-builtin-plugin" diff --git a/tabby-web-demo/package.json b/tabby-web-demo/package.json index 74a3537a..52bf00e9 100644 --- a/tabby-web-demo/package.json +++ b/tabby-web-demo/package.json @@ -1,6 +1,6 @@ { "name": "tabby-web-demo", - "version": "1.0.147-nightly.4", + "version": "1.0.147", "main": "dist/index.js", "typings": "dist/index.d.ts", "scripts": { diff --git a/tabby-web-demo/src/profiles.ts b/tabby-web-demo/src/profiles.ts index 8fb7646e..e20601ac 100644 --- a/tabby-web-demo/src/profiles.ts +++ b/tabby-web-demo/src/profiles.ts @@ -1,15 +1,13 @@ import { Injectable } from '@angular/core' -import { ProfileProvider, NewTabParameters, Profile } from 'tabby-core' -// import { SerialProfileSettingsComponent } from './components/serialProfileSettings.component' +import { ProfileProvider, NewTabParameters, Profile, PartialProfile } from 'tabby-core' import { DemoTerminalTabComponent } from './components/terminalTab.component' @Injectable({ providedIn: 'root' }) -export class DemoProfilesService extends ProfileProvider { +export class DemoProfilesService extends ProfileProvider { id = 'demo' name = 'Demo' - // settingsComponent = SerialProfileSettingsComponent - async getBuiltinProfiles (): Promise { + async getBuiltinProfiles (): Promise[]> { return [ { id: 'demo', diff --git a/tabby-web/package.json b/tabby-web/package.json index cbac04c1..a9ccc3e0 100644 --- a/tabby-web/package.json +++ b/tabby-web/package.json @@ -1,6 +1,6 @@ { "name": "tabby-web", - "version": "1.0.147-nightly.4", + "version": "1.0.147", "description": "Web-specific bindings", "keywords": [ "tabby-builtin-plugin" diff --git a/web/package.json b/web/package.json index 6124256d..518904c7 100644 --- a/web/package.json +++ b/web/package.json @@ -16,5 +16,5 @@ "resolutions": { "**/util": "^0.12.0" }, - "version": "1.0.147-nightly.4" + "version": "1.0.147" } diff --git a/webpack.config.js b/webpack.config.js index fb1fedbd..c8e152ce 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,6 +5,7 @@ const paths = [ './app/webpack.config.js', './app/webpack.main.config.js', './web/webpack.config.js', + './tabby-web-demo/webpack.config.js', ...builtinPlugins.map(x => `./${x}/webpack.config.js`), ]