diff --git a/debian/README b/debian/README index a4f9ec4..3a1e930 100644 --- a/debian/README +++ b/debian/README @@ -1,6 +1,6 @@ The Debian Package tsshd ---------------------------- -The 'tssh --udp' works like 'mosh', and the 'tsshd' works like 'mosh-server'. +The tsshd works like mosh-server, while the 'tssh --udp' works like mosh. -- Lonny Wong Sun, 30 Jun 2024 17:38:13 +0800 diff --git a/debian/README.Debian b/debian/README.Debian index 00b25a6..ed69a4e 100644 --- a/debian/README.Debian +++ b/debian/README.Debian @@ -1,6 +1,6 @@ tsshd for Debian --------------- -The 'tssh --udp' works like 'mosh', and the 'tsshd' works like 'mosh-server'. +The tsshd works like mosh-server, while the 'tssh --udp' works like mosh. -- Lonny Wong Sun, 30 Jun 2024 17:38:13 +0800 diff --git a/debian/changelog b/debian/changelog index 4ae1f3d..838e08f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +tsshd (0.1.2) trusty; urgency=medium + + * tsshd v0.1.2 + + -- Lonny Wong Sun, 07 Jul 2024 10:27:08 +0800 + tsshd (0.1.1) trusty; urgency=medium * tsshd v0.1.1 diff --git a/debian/control b/debian/control index 6916b80..029eeb5 100644 --- a/debian/control +++ b/debian/control @@ -12,4 +12,4 @@ Vcs-Git: https://github.com/trzsz/tsshd.git Package: tsshd Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Description: The 'tssh --udp' works like 'mosh', and the 'tsshd' works like 'mosh-server'. +Description: The tsshd works like mosh-server, while the 'tssh --udp' works like mosh. diff --git a/tsshd/main.go b/tsshd/main.go index e41db09..e90f30a 100644 --- a/tsshd/main.go +++ b/tsshd/main.go @@ -34,7 +34,7 @@ import ( "github.com/trzsz/go-arg" ) -const kTsshdVersion = "0.1.1" +const kTsshdVersion = "0.1.2" var exitChan = make(chan int, 1)