What's New
Binary Response Support:
You can now work with binary responses (images, PDFs, protobuf, etc.) directly in Resterm:
- Automatic detection with size and type info
- Switch between Text, Hex, and Base64 views with
g bshortcut (must be in response pane focus) - Save to file with
g Shift+S - Open response preview via default preview app with
g Shift+E
Scripting:
New response helpers for binary data:
response.isBinary // true if binary
response.bytes() // raw bytes
response.base64() // base64 string
response.saveBody(path) // save to disk
Navigation:
Vim-style gg and G now work everywhere - jump to top/bottom in response panes and sidebar lists.
Fixes:
- gRPC responses now always show readable JSON while preserving raw wire bytes for scripts
- fixed screen flicker when switching raw view modes
- binary data no longer corrupts history entries