Releases: raphamorim/rio
Releases · raphamorim/rio
v0.0.35
- Bump wayland dependencies:
wayland-backend
,wayland-client
,wayland-cursor
andwayland-scanner
. - Refactor: disable cursor blink on selection (ref #437) #441 by @hougesen .
- Rewrite hash logic to use
BuildHasher::hash_one
. - Report focus change https://terminalguide.namepad.de/mode/p1004/.
- update rust version to 1.75.0.
- update winit to 0.29.11.
v0.0.34
- use Fowler–Noll–Vo hash function implementation for sugar cache (more efficient for smaller hash keys)
- update update winit to 0.29.9
v0.0.33
- Breaking: Removed
macos-hide-toolbar-buttons
in favor ofwindow.decorations
api. - Fix: Rio failing to draw blur upon launch #379
- Window transparency does not work on X11 #361
- Added support for path based color automation by @hougesen
- Added
window.decorations
property, available options areEnabled
,Disabled
,Transparent
andButtonless
.
v0.0.32
v0.0.31
-
Breaking: Configuration
performance
has moved torenderer.performance
. -
Breaking: Configuration
disable-renderer-when-unfocused
has moved torenderer.disable-renderer-when-unfocused
. -
Breaking: Configuration
use-kitty-keyboard-protocol
has moved tokeyboard.use-kitty-keyboard-protocol
. -
Introduction of new configuration property called
keyboard
.
[keyboard]
use-kitty-keyboard-protocol = false
disable-ctlseqs-alt = false
-
Introduction of
keyboard.disable-ctlseqs-alt
: Disable ctlseqs with ALT keys. It is useful for example if you would like Rio to replicate Terminal.app, since it does not deal with ctlseqs with ALT keys -
Introduction of new configuration property called
renderer
.
[renderer]
performance = "High"
disable-renderer-when-unfocused = false
backend = "Automatic"
# backend options:
# Automatic: Leave Sugarloaf/WGPU to decide
# GL: Supported on Linux/Android, and Windows and macOS/iOS via ANGLE
# Vulkan: Supported on Windows, Linux/Android
# DX12: Supported on Windows 10
# DX11: Supported on Windows 7+
# Metal: Supported on macOS/iOS
- Fix: update padding top on config change #378 by @hougesen
- Fixed bug where color automation did not work on Linux because of line ending character.
- Fix: Control + Up/Down don't works as expected on neovim #371
- Fix: remove duplicate kitty backspace keybinds #375 by @hougesen
- Fix: Kitty-keyboard-protocol causes Backspace to delete 2 characters. #344 by @hougesen
v0.0.30
- Fix regression with color ansi when transparency is off.
- Breaking: Config
navigation.macos-hide-window-buttons
has moved towindow.macos-hide-toolbar-buttons
. - Breaking: Config property
padding-x
has been updated from 5.0 to 0.0 on MacOS.
v0.0.29
- Fix compiled binary shows nothing inside the app window #366.
- Fix command key + left and right strange behavior #359.
- New scroll API: Scroll calculation for canonical mode will be based on
(accumulated scroll * multiplier / divider)
so if you want quicker scroll, keep increasing the multiplier if you want to reduce you increase the divider. Can use both properties also to find the best scroll for you:
[scroll]
multiplier = 3.0
divider = 1.0
- Corrections for TMUX scroll calculations.
v0.0.28
- Breaking: Settings UI has been removed and
editor
property has been added. - Breaking: default
padding-x
for MacOS has moved from10.0
to5.0
. - Breaking: Background API has moved to Window
Example:
[window]
width = 600
height = 400
mode = "Windowed"
foreground-opacity = 1.0
background-opacity = 1.0
Using image as background:
[window.background-image]
path = "/Users/rapha/Desktop/eastward.jpg"
width = 200.0
height = 200.0
x = 0.0
y = 0.0
- Breaking: MacOS default navigation mode will become
NativeTab
. - Support for blur background.
- Support opacity for foreground and background.
- Cursor hide feature is now behind configuration
hide-cursor-when-typing
. - Confirm before quite (it can be disabled through configuration
confirm-before-quit
). - Close the last tab in MacOS when using
command + w
(Ref: #296) - OSC 8 (Hyperlinks).
- Fix current path on new tab is not working when using Native Tab (Ref #323).
- Change
POLLING_TIMEOUT
for configuration update from 1s to 2s. - Update
.icns
file with more format and add new icon (Ref: #329) by @nix6839. - Update
.ico
files with more resolution and add new icon (Ref: #329) by @nix6839.