Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions cmd/wsh/cmd/wshcmd-debugterm.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,13 @@ func debugTermRun(cmd *cobra.Command, args []string) (rtnErr error) {
if err != nil {
return err
}
fmt.Fprintf(os.Stderr, "resolved block %s\n", fullORef)
rtn, err := wshclient.DebugTermCommand(RpcClient, wshrpc.CommandDebugTermData{
BlockId: fullORef.OID,
Size: debugTermSize,
}, &wshrpc.RpcOpts{Timeout: 2000})
if err != nil {
return fmt.Errorf("reading terminal output: %w", err)
}
fmt.Fprintf(os.Stderr, "got rtn: %#v\n", rtn)
termData, err := base64.StdEncoding.DecodeString(rtn.Data64)
if err != nil {
return fmt.Errorf("decoding terminal output: %w", err)
Expand Down
2 changes: 1 addition & 1 deletion pkg/wconfig/defaultconfig/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"window:maxtabcachesize": 10,
"window:nativetitlebar": true,
"window:magnifiedblockopacity": 0.6,
"window:magnifiedblocksize": 0.9,
"window:magnifiedblocksize": 0.95,
"window:magnifiedblockblurprimarypx": 10,
"window:fullscreenonlaunch": false,
"window:magnifiedblockblursecondarypx": 2,
Expand Down
1 change: 1 addition & 0 deletions schema/waveai.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"enum": [
"wave",
"google",
"groq",
"openrouter",
"nanogpt",
"openai",
Expand Down
Loading