mirror of
https://github.com/Eugeny/tabby
synced 2024-11-14 08:57:21 +00:00
plugin version bump
This commit is contained in:
parent
893d9a9887
commit
a82a65ed46
15 changed files with 16 additions and 32 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tabby-core",
|
||||
"version": "1.0.147-nightly.4",
|
||||
"version": "1.0.147",
|
||||
"description": "Tabby core",
|
||||
"keywords": [
|
||||
"tabby-builtin-plugin"
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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<Profile> {
|
||||
id = 'demo'
|
||||
name = 'Demo'
|
||||
// settingsComponent = SerialProfileSettingsComponent
|
||||
|
||||
async getBuiltinProfiles (): Promise<Profile[]> {
|
||||
async getBuiltinProfiles (): Promise<PartialProfile<Profile>[]> {
|
||||
return [
|
||||
{
|
||||
id: 'demo',
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -16,5 +16,5 @@
|
|||
"resolutions": {
|
||||
"**/util": "^0.12.0"
|
||||
},
|
||||
"version": "1.0.147-nightly.4"
|
||||
"version": "1.0.147"
|
||||
}
|
||||
|
|
|
@ -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`),
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in a new issue