mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
6091305bb3
* fix: allow ssh user to use numbers/capital letters Prior to this change, usernames could not start with numbers and could not contain capital letters at all. Note that the username can also start with capital letters. * fix: update ssh_config with IdentityFiles fix This adds the update that provides the ssh2 defaults for IdentityFiles. This will allow the usual defaults to be searched when none are explicitly provided. * fix: overwrite identity files instead of appending This change makes it so a waveterm configured identity file will overwrite the one in the config instead of attempting to append it. This matches the behavior of openssh. * style: use regular font for markdown user input This makes the Markdown User Input indistinct from user input without markdown. It changes the font and makes a couple small adjustments to the font size and line height. * fix: use font property instead of font-family The markdown css for User Input can be simplified with the font being set by the "font" property rather than the "font-family" property.
38 lines
1.1 KiB
Modula-2
38 lines
1.1 KiB
Modula-2
module github.com/wavetermdev/waveterm/wavesrv
|
|
|
|
go 1.22
|
|
|
|
toolchain go1.22.0
|
|
|
|
require (
|
|
github.com/alessio/shellescape v1.4.1
|
|
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2
|
|
github.com/creack/pty v1.1.18
|
|
github.com/golang-migrate/migrate/v4 v4.16.2
|
|
github.com/google/go-github/v60 v60.0.0
|
|
github.com/google/uuid v1.3.0
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/jmoiron/sqlx v1.3.5
|
|
github.com/kevinburke/ssh_config v1.2.0
|
|
github.com/mattn/go-sqlite3 v1.14.16
|
|
github.com/sashabaranov/go-openai v1.9.0
|
|
github.com/sawka/txwrap v0.1.2
|
|
github.com/wavetermdev/waveterm/waveshell v0.0.0
|
|
golang.org/x/crypto v0.17.0
|
|
golang.org/x/mod v0.10.0
|
|
golang.org/x/sys v0.15.0
|
|
mvdan.cc/sh/v3 v3.7.0
|
|
)
|
|
|
|
require (
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
)
|
|
|
|
replace github.com/wavetermdev/waveterm/waveshell => ../waveshell
|
|
|
|
replace github.com/kevinburke/ssh_config => github.com/wavetermdev/ssh_config v0.0.0-20240306041034-17e2087ebde2
|