Compare commits
2 Commits
master
...
vala-sshwi
| Author | SHA1 | Date | |
|---|---|---|---|
| 6840a25901 | |||
| af24e54ce1 |
@@ -118,7 +118,7 @@ func (d *telnetClient) remote(addr string) {
|
||||
|
||||
buf := [4096]byte{}
|
||||
|
||||
clientConn, clientConnErr := d.cfg.Dial("udp", addr, d.cfg.DialTimeout)
|
||||
clientConn, clientConnErr := d.cfg.Dial("tcp", addr, d.cfg.DialTimeout)
|
||||
|
||||
if clientConnErr != nil {
|
||||
errLen := copy(
|
||||
|
||||
@@ -82,13 +82,13 @@
|
||||
overflow: auto;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#home-hd-title {
|
||||
font-size: 1.1em;
|
||||
padding: 0 0 0 20px;
|
||||
min-width: 150px;
|
||||
font-weight: bold;
|
||||
flex: 0 0 65px;
|
||||
text-align: center;
|
||||
|
||||
25
ui/home.vue
25
ui/home.vue
@@ -20,7 +20,7 @@
|
||||
<template>
|
||||
<div id="home">
|
||||
<header id="home-header">
|
||||
<h1 id="home-hd-title">Shemesh Terminal</h1>
|
||||
<h1 id="home-hd-title">Vala Terminal</h1>
|
||||
|
||||
<a id="home-hd-delay" href="javascript:;" @click="showDelayWindow">
|
||||
<span
|
||||
@@ -32,7 +32,28 @@
|
||||
socket.message
|
||||
}}</span>
|
||||
</a>
|
||||
<a
|
||||
id="home-hd-plus"
|
||||
class="icon icon-plus1"
|
||||
href="javascript:;"
|
||||
:class="{
|
||||
working: connector.inputting,
|
||||
intensify: connector.inputting && !windows.connect,
|
||||
}"
|
||||
@click="showConnectWindow"
|
||||
></a>
|
||||
|
||||
<tabs
|
||||
id="home-hd-tabs"
|
||||
:tab="tab.current"
|
||||
:tabs="tab.tabs"
|
||||
tabs-class="tab1"
|
||||
list-trigger-class="icon icon-more1"
|
||||
@current="switchTab"
|
||||
@retap="retapTab"
|
||||
@list="showTabsWindow"
|
||||
@close="closeTab"
|
||||
></tabs>
|
||||
</header>
|
||||
|
||||
<screens
|
||||
@@ -53,6 +74,8 @@
|
||||
servers without downloading any additional software.
|
||||
</p>
|
||||
|
||||
<h1>Eli Cohen</h1>
|
||||
|
||||
<p>
|
||||
To get started, click the
|
||||
<span
|
||||
|
||||
@@ -2,14 +2,14 @@ import * as history from "./history.js";
|
||||
import { ECHO_FAILED } from "./socket.js";
|
||||
|
||||
export function build(ctx) {
|
||||
const connectionStatusNotConnected = "Shemesh Terminal is ready to connect";
|
||||
const connectionStatusNotConnected = "Vala Terminal is ready to connect";
|
||||
const connectionStatusConnecting =
|
||||
"Connecting to Shemesh Terminal backend server. It should only take " +
|
||||
"Connecting to Vala Terminal backend server. It should only take " +
|
||||
"less than a second, or two";
|
||||
const connectionStatusDisconnected =
|
||||
"Shemesh Terminal is disconnected from it's backend server";
|
||||
"Vala Terminal is disconnected from it's backend server";
|
||||
const connectionStatusConnected =
|
||||
"Shemesh Terminal is connected to it's backend server, user interface operational";
|
||||
"Vala Terminal is connected to it's backend server, user interface operational";
|
||||
const connectionStatusUnmeasurable =
|
||||
"Unable to measure connection delay. The connection maybe very " +
|
||||
"busy or already lost";
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Shemesh Terminal</title>
|
||||
<title>Vala Terminal</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
</head>
|
||||
<body>
|
||||
@@ -28,7 +28,7 @@
|
||||
<div id="landing-message">
|
||||
<div id="landing-message-logo"></div>
|
||||
|
||||
<h1 id="landing-message-title">Loading Shemesh Terminal</h1>
|
||||
<h1 id="landing-message-title">Loading Vala Terminal</h1>
|
||||
|
||||
<div id="landing-message-info">
|
||||
<p>
|
||||
|
||||
@@ -180,16 +180,16 @@ class Term {
|
||||
switch (ev.domEvent.key) {
|
||||
case "Enter":
|
||||
ev.domEvent.preventDefault();
|
||||
// this.writeStr("\r\n");
|
||||
this.writeStr("\r\n");
|
||||
break;
|
||||
case "Backspace":
|
||||
ev.domEvent.preventDefault();
|
||||
// this.writeStr("\b \b");
|
||||
this.writeStr("\b \b");
|
||||
break;
|
||||
default:
|
||||
if (printable) {
|
||||
ev.domEvent.preventDefault();
|
||||
// this.writeStr(ev.key);
|
||||
this.writeStr(ev.key);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user