Skip to content
This repository was archived by the owner on Nov 6, 2024. It is now read-only.

Commit f73e55e

Browse files
authored
v0.8.12 release notes (#79)
* release notes and new config vars * add ai:preset
1 parent e08cceb commit f73e55e

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

docs/config.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ use ":" as level separators.
1313

1414
| Key Name | Type | Function |
1515
|----------|------|----------|
16+
| ai:preset | string | the default AI preset to use |
1617
| ai:baseurl | string | Set the AI Base Url (must be OpenAI compatible) |
1718
| ai:apitoken | string | your AI api token |
1819
| ai:apitype | string | defaults to "open_ai", but can also set to "azure" for special Azure AI handling |
@@ -22,11 +23,13 @@ use ":" as level separators.
2223
| ai:orgid | string ||
2324
| ai:maxtokens | int | max tokens to pass to API |
2425
| ai:timeoutms | int | timeout (in milliseconds) for AI calls |
26+
| conn:askbeforewshinstall | bool | set to false to disable popup asking if you want to install wsh extensions on new machines |
2527
| term:fontsize | float | the fontsize for the terminal block |
2628
| term:fontfamily | string | font family to use for terminal block |
2729
| term:disablewebgl | bool | set to false to disable WebGL acceleration in terminal |
2830
| term:localshellpath | string | set to override the default shell path for local terminals |
2931
| term:localshellopts | string[] | set to pass additional parameters to the term:localshellpath |
32+
| term:copyonselect | bool | set to false to disable terminal copy-on-select |
3033
| editor:minimapenabled | bool | set to false to disable editor minimap |
3134
| editor:stickscrollenabled | bool | |
3235
| web:openlinksinternally | bool | set to false to open web links in external browser |
@@ -53,17 +56,20 @@ For reference this is the current default configuration (v0.8.8):
5356

5457
```json
5558
{
59+
"ai:preset": "ai@global",
5660
"ai:model": "gpt-4o-mini",
5761
"ai:maxtokens": 2048,
5862
"ai:timeoutms": 60000,
5963
"autoupdate:enabled": true,
6064
"autoupdate:installonquit": true,
6165
"autoupdate:intervalms": 3600000,
66+
"conn:askbeforewshinstall": true,
6267
"editor:minimapenabled": true,
6368
"web:defaulturl": "https://github.com/wavetermdev/waveterm",
6469
"web:defaultsearch": "https://www.google.com/search?q={query}",
6570
"window:tilegapsize": 3,
66-
"telemetry:enabled": true
71+
"telemetry:enabled": true,
72+
"term:copyonselect": true
6773
}
6874
```
6975

docs/releasenotes.mdx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ sidebar_position: 9
66

77
# Release Notes
88

9+
### v0.8.12 — Oct 18, 2024
10+
11+
* Added support for multiple AI configurations! You can now run Open AI side-by-side with Ollama models. Can create AI presets in presets.json, and can easily switch between them using a new dropdown in the AI widget
12+
* Fix WebSocket reconnection error. this sometimes caused the terminal to hang when waking up from sleep
13+
* Added memory graphs, and per-CPU graphs to the sysinfo widget (and renamed it from cpuplot)
14+
* Added a new huge red "Config Error" button when there are parse errors in the config JSON file
15+
* Preview/CodeEdit widget now shows errors (squiggly lines) when JSON or YAML files fail to parse
16+
* Added copy-on-select to the terminal (on by default, can disable using "term:copyonselect")
17+
* Added a button to mute audio in webviews
18+
* Added a right-click "Open Clipboard URL" to easily open a webview from an URL stored in your system clipboard
19+
* [bugfix] fixed blank "help" pages when waking from sleep or restarting the app
20+
921
### v0.8.11 — Oct 10, 2024
1022

1123
Hotfix release to address a couple of bugs introduced in v0.8.10

0 commit comments

Comments
 (0)