This commit is contained in:
Eugene Pankov
2021-07-06 23:45:52 +02:00
parent 6bd5aff8b7
commit 3ff34b2618
36 changed files with 76 additions and 83 deletions

View File

@@ -73,7 +73,7 @@
ul
li Multiple #[strong nested panes]
li #[strong Progress bars] and activity notifications for tabs
li Terminus remembers open tabs and panes where you left off
li Tabby remembers open tabs and panes where you left off
li Tabs on #[strong any side of the window]
li Optional #[strong quake mode] (terminal docked to a side of the screen)
li Optional #[strong global hotkey] to focus/hide the terminal

View File

@@ -8,11 +8,13 @@ import { ActivatedRoute } from '@angular/router'
class DemoConnector {
constructor (targetWindow: Window, private version: Version) {
targetWindow['terminusWebDemoDataPath'] = `${this.getDistURL()}/${version.version}/terminus-web-demo/data`
targetWindow['tabbyWebDemoDataPath'] = `${this.getDistURL()}/${version.version}/tabby-web-demo/data`
}
async loadConfig (): Promise<string> {
return '{}'
return `{
recoverTabs: false
}`
}
async saveConfig (content: string): Promise<void> {
@@ -28,12 +30,12 @@ class DemoConnector {
getPluginsToLoad (): string[] {
return [
'terminus-core',
'terminus-settings',
'terminus-terminal',
'terminus-community-color-schemes',
'terminus-web',
'terminus-web-demo',
'tabby-core',
'tabby-settings',
'tabby-terminal',
'tabby-community-color-schemes',
'tabby-web',
'tabby-web-demo',
]
}
}
@@ -46,7 +48,7 @@ class DemoConnector {
export class HomeComponent {
@ViewChild('iframe') iframe: ElementRef
connector: DemoConnector
githubURL = 'https://github.com/Eugeny/terminus'
githubURL = 'https://github.com/Eugeny/tabby'
releaseURL = `${this.githubURL}/releases/latest`
donationURL = 'https://ko-fi.com/eugeny'