new documentation for sidebar, add v0.5.2 releasenotes

This commit is contained in:
sawka
2023-12-18 23:58:10 -08:00
parent 5987838a5a
commit f2604ddfcf
3 changed files with 56 additions and 0 deletions
+1
View File
@@ -14,6 +14,7 @@ title: Keyboard Shortcuts
* **Cmd-DownArrow** or **Cmd-PageDown** - move selected command down
* **Cmd-[digit]** - select nth tab
* **Cmd-Control-[digit]** - select nth workspace
* **Cmd-Ctrl-S** - toggle sidebar on/off
* **Esc** - close/toggle extra info panel
## When Command Input is Focused
+36
View File
@@ -342,6 +342,42 @@ Update client settings, currently only supports termfont size. This will update
`Usage: /client:set termfontsize=10`
## /sidebar
### /sidebar:open
Opens the sidebar. Takes an optional width param that specifies the preferred width of sidebar (can be either in percentage or px units). Note that the sidebar will not shrink past 200px, also note that percentage must be between 10-90%.
```
Usage:
/sidebar:open
/sidebar:open width=40%
/sidebar:open width=600px
```
### /sidebar:close
Closes the sidebar
`Usage: /sidebar:close`
### /sidebar:add
Adds a line to the sidebar. Width can also be specified with this call (functions the same as for /sidebar:open). Line is required (can be a line number or a line id).
```
Usage:
/sidebar:add line=22
/sidebar:add line=a78de32c
/sidebar:add line=5 width=600px
```
### /sidebar:remove
Removes the current line from the sidebar.
`Usage: /sidebar:remove`
## /telemetry
Commands that deal with client telemetry.
+19
View File
@@ -2,6 +2,25 @@
title: Release Notes
---
Download the latest build here: https://waveterm.dev/download
### v0.5.2 - 12/18/2023
* **ChatGPT Support** - run `/chat [question]` in your terminal to get quick answers to questions right inline in your terminal
* Drag and drop tabs to reorder them within a workspace
* Experimental sidebar support: move any command to the sidebar by clicking the right arrow icon.
* Run commands directly in the sidebar by prefixing them with `[sidebar=1] ...`
* Automatic update checking: Wave now pings the github releases page to see if there is a newer build available
* Always show new tab "+" icon even when there are a large number of tabs open
* Improvement: allow users to override OpenAI baseurl [github #133](https://github.com/wavetermdev/waveterm/issues/133)
* Bug fix: ssh keys with passphrases should now work properly [github #128](https://github.com/wavetermdev/waveterm/issues/128)
* Bug fix: allow '@' signs in ssh user names [github #127](https://github.com/wavetermdev/waveterm/issues/127)
* Bug fix: ignore spurious ssh output when connecting [github #99](https://github.com/wavetermdev/waveterm/issues/99)
* Bug fix: use user configured bash shell on MacOS [github #137](https://github.com/wavetermdev/waveterm/issues/137)
* Bug fix: fix rtnstate detection for complex commands and conda [github #163](https://github.com/wavetermdev/waveterm/issues/163)
# Bug fix: fix the ability to change the port number of a new connection on certain keyboards [github #162](https://github.com/wavetermdev/waveterm/issues/162)
* Other minor UI improvements and bug fixes
### v0.5.1 - 12/5/2023
* **Big update to Connections UI** (Connections Screen)