Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

first draft of release notes #1847

Merged
merged 4 commits into from
Jan 24, 2025
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
42 changes: 42 additions & 0 deletions docs/docs/releasenotes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,48 @@ sidebar_position: 200

# Release Notes

### v0.11.0 — Jan 24, 2025

Wave Terminal v0.11.0 includes a major rewrite of our connections infrastructure, with changes to both our backend and remote file protocol systems, alongside numerous features, bug fixes, and stability improvements.

A key addition in this release is the new shell initialization system, which enables customization of your shell environment across local and remote connections. You can now configure environment variables and shell-specific init scripts on both a per-block and per-connection basis.

For day-to-day use, we've added search functionality across both terminal and web blocks, along with a terminal multi-input feature for simultaneous input to all terminals within a tab. We've also added support for Google Gemini to Wave AI, expanding our suite of AI integrations.

Behind the scenes, we've redesigned our remote file protocol, laying the groundwork for upcoming S3 (and S3-compatible system) support in our preview widget. This architectural change sets the stage for adding more file backends in the future.

- **Shell Environment Customization** -- Configure your shell environment using environment variables and init scripts, with support for both local and remote connections
- **Connection Backend Improvements** -- Major rewrite with improved shell detection, better error logging, and reduced 2FA prompts when using ForceCommand
- **Multi-Shell Support** -- Enhanced support for bash, zsh, pwsh, and fish shells, with shell-specific initialization capabilities
- **Terminal Search** -- use Cmd-F to search for text in terminal widgets
- **Web Search** -- use Cmd-F to search for text in web views
- **Terminal Multi-Input** -- Use Ctrl-Shift-I to allow multi-input to all terminals in the same tab
- **Wave AI now supports Google Gemini**
- Improved WSL support with wsh-free connection options
- Added inline connection debugging information
- Fixed file permission handling issues on Windows systems
- Connection related popups are now delivered only to the initiating window
- Improved timeout handling for SSH connections which require 2FA prompts
- Fixed escape key handling in global event handlers (closing modals)
- Directory preview now fills the entire block width
- Custom widgets can now be launched in magnified mode
- Various workspace UX improvements around closing/deleting
- file:/// urls now work in web widget
- Increased size of files allowed in `wsh ai`
- Increased maximum allowed term:scrollback to 50k lines
- [build] Switched to free Ubuntu ARM runners for better ARM64 build support
- [build] Windows builds now use zig, simplifying Windows dev setup
- [bugfix] Connections dropdown now populated even when ssh config is missing or invalid
- [bugfix] Disabled bracketed paste mode by default (configuration option to turn it back on)
- [bugfix] Timeout for `wsh ssh` increased to 60s
- [bugfix] Fix for sysinfo widget when displaying a huge number of CPU graphs
- [bugfix] Fixes XDG variables for Snap installs
- [bugfix] Honor SSH IdentitiesOnly flag (useful when many keys are loaded into ssh-agent)
- [bugfix] Better shell environment variable setup when running local shells
- [bugfix] Fix preview for large text files
- [bugfix] Fix URLs in terminal (now clickable again)
- [bugfix] Windows URLs now work properly for Wave background images

### v0.10.4 — Dec 20, 2024

Quick update with bug fixes and new configuration options
Expand Down
6 changes: 3 additions & 3 deletions frontend/app/view/term/term.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -968,7 +968,7 @@ const TerminalView = ({ blockId, model }: TerminalViewProps) => {
const termTransparency = globalStore.get(model.termTransparencyAtom);
const termBPMAtom = getOverrideConfigAtom(blockId, "term:allowbracketedpaste");
const [termTheme, _] = computeTheme(fullConfig, termThemeName, termTransparency);
let termScrollback = 1000;
let termScrollback = 2000;
if (termSettings?.["term:scrollback"]) {
termScrollback = Math.floor(termSettings["term:scrollback"]);
}
Expand All @@ -978,8 +978,8 @@ const TerminalView = ({ blockId, model }: TerminalViewProps) => {
if (termScrollback < 0) {
termScrollback = 0;
}
if (termScrollback > 10000) {
termScrollback = 10000;
if (termScrollback > 50000) {
termScrollback = 50000;
}
const termAllowBPM = globalStore.get(termBPMAtom) ?? false;
const wasFocused = model.termRef.current != null && globalStore.get(model.nodeModel.isFocused);
Expand Down
Loading