Releases
0.2.5 (unreleased)
- Shell integration.
- OSC 7 Escape sequences to advise the terminal of the working directory.
- OSC 133 Escape sequence to define Input, Output and Prompt zones.
- OSC 1337 Escape sequences to set user vars for tracking additional shell state.
- Property
option-as-alt
is now default forboth
on MacOS.
0.2.4
- Breaking: Rio now doesn't allow anymore disable kitty keyboard protocol.
- Fullwidth semantic escape characters.
- Fix: report of Enter/Tab/Backspace in kitty keyboard.
- Fix: use-kitty-keyboard-protocol = true doesn't work with tmux #599.
- Fix: use-kitty-keyboard-protocol breaks F[5-12] on macOS #904.
- Downgrade MSRV to 1.80.1
- Update wgpu to 24.0.0.
0.2.3
- Rio now allows you to configure window title through configuration via template. Possible options:
TITLE
: terminal title via OSC sequences for setting terminal titlePROGRAM
: (e.gfish
,zsh
,bash
,vim
, etc...)ABSOLUTE_PATH
: (e.g/Users/rapha/Documents/a/rio
)
COLUMNS
: current columnsLINES
: current lines- So, for example if you have:
{{COLUMNS}}x{{LINES}}
would show something like88x66
.
- So, for example if you have:
- Perf improvement on text selection #898 by @marc2332.
- Window title is now updated regardless the Navigation Mode.
- Performance: Background and foreground data are only retrieved if is asked (either color automation is enabled or
window.title
contains any request for it). - Fixed: Nix build #853.
- Support to
window.macos-use-shadow
(enable or disable shadow on MacOS). - Support to
window.windows-corner-preference
(options:Default
,DoNotRound
,Round
andRoundSmall
). - Support to
window.windows-use-undecorated-shadow
(default is enabled). - Support to
window.windows-use-no-redirection-bitmap
(This setsWS_EX_NOREDIRECTIONBITMAP
). - Minimal stable rust version 1.84.0.
- Support for Unicode 16 characters.
- Support to line height.
- Renamed
--title
to--title-placeholder
on CLI. - Fixed: Deb package name 'rio' conflicts with existing one in Ubuntu #876.
- Fixed: Unremovable bottom padding when using line-height #449.
- On macOS, fixed undocumented cursors (e.g. zoom, resize, help) always appearing to be invalid and falling back to the default cursor.
- Introduce
SwitchCurrentTabToPrev
andSwitchCurrentTabToNext
actions #854 by @agjini. - On X11, Wayland, Windows and macOS, improved scancode conversions for more obscure key codes.
- On macOS, fixed the scancode conversion for audio volume keys.
- On macOS, fixed the scancode conversion for
IntlBackslash
.
- Kitty keyboard protocol is now enabled by default.
- Allow
Renderer
to be configured cross-platform byPlatform
property. - Add
ToggleFullscreen
to configurable actions. - Escape sequence to move cursor forward tabs ( CSI Ps I ).
- Always emit
1
for the first parameter when having modifiers in kitty keyboard protocol. - Microsoft Windows: fix the event loop not waking on accessibility requests.
- Wayland: disable title text drawn with crossfont crate, use ab_glyph crate instead.
- Sugarloaf: Expose wgpu.
0.2.2
- Fix iterm2 image protocol.
- Allow setting initial window title #806 by @xsadia.
- Fix runtime error after changing to a specific retroarch shader on windows #788 by @chyyran.
- Makes editor.args and shell.args optional in config.toml #801 by @Nylme.
- Introduce
navigation.open-config-with-split
.
0.2.1
- Fix: Search seems broken in 0.2.0 #785.
- Regular font is now 400 as default weight.
- Support to chooseing font width #507.
- Support to multiconfiguration. Rio now allows you to have different configurations per OS, you can write ovewrite
Shell
,Navigation
andWindow
.
Example:
[shell]
# default (in this case will be used only on MacOS)
program = "/bin/fish"
args = ["--login"]
[platform]
# Microsoft Windows overwrite
windows.shell.program = "pwsh"
windows.shell.args = ["-l"]
# Linux overwrite
linux.shell.program = "tmux"
linux.shell.args = ["new-session", "-c", "/var/www"]
- Fix: Grey triangle in the titlebar #778
- Update window title straight away (#779 by @hunger)
- Always update the title on windows and MacOS (#780 by @hunger)
0.2.0
- Note: The migration from 0.1.x to v0.2.x changed considerably the renderer source code, although it was tested for 3 weeks it's entirely possible that introduced bugs (hopefully not!).
- Performance gains!
- Sugarloaf: Major rewrite of font glyph logic.
- Sugarloaf: Removal of some unnecessary processing on shaping logic.
- Sugarloaf: Rewrite/Change of render architecture, now sugarloaf does not have any reference to column/lines logic.
- Breaking: Minimum MacOS version went from El Captain to Big Sur on ARM64 and Catalina on Intel x86.
- Microsoft Windows: Rio terminal is now available on WinGet packages.
- Microsoft Windows: Rio terminal is now available on MINGW packages.
- Microsoft Windows: Rio support on ARM architecture by @andreban.
- Allow MacOS automation via events.
- MacOS: Support titlebar unified:
window.macos-use-unified-titlebar = false
, - Support disable font hinting:
fonts.hinting = false
. - Fix: Configuration updates triggered multiple times on one save.
- Support to RetroArch shaders @igorsaux.
- Fix: Set notepad as a default editor on Windows by @igorsaux.
- Increased Linux font fallbacks list.
- Early initial split support (this feature is not yet stable).
- Fix: Preserve current working directory when opening new tabs #725.
- Added
SplitDown
,SplitRight
,CloseSplitOrTab
,SelectNextSplit
andSelectPrevSplit
actions. - Fix: Window doesn't receive mouse events on Windows 11 by @igorsaux.
- Support to hex RGBA (example:
#43ff64d9
) on colors/theme by @bio on #696. - Introduced
renderer.strategy
, options areEvents
andContinuous
. - Microsoft Windows: make
ControlFlow::WaitUntil
work more precisely usingCREATE_WAITABLE_TIMER_HIGH_RESOLUTION
. - Fix: Window output lost when rio loses focus #706.
- Updated wgpu to
23.0.0
.