changelog

This commit is contained in:
veeso 2021-03-14 20:59:35 +01:00
parent 2c898a91da
commit 411f734aef
2 changed files with 7 additions and 1 deletions

View file

@ -20,6 +20,12 @@ Released on FIXME: date
- **New explorer features**:
- **Execute** a command pressing `X`. This feature is supported on both local and remote hosts (only SFTP/SCP protocols support this feature).
- Enhancements:
- Input fields will now support **"input keys"** (such as moving cursor, DEL, END, HOME, ...)
- For developers:
- Activity refactoring
- Developed an internal library used to create components, components are then nested inside a View
- The new engine works through properties and states, then returns Messages. I was inspired by both React and Elm.
- Bugfix:
- Prevent resetting explorer index on remote tab after performing certain actions (list dir, exec, ...)
- SCP file transfer: prevent infinite loops while performing `stat` on symbolic links pointing to themselves (e.g. `mylink -> mylink`)

View file

@ -38,7 +38,7 @@ use crate::ui::layout::{Msg, Payload};
use tui::{
layout::{Constraint, Direction, Layout},
style::Color,
widgets::{Borders, Clear},
widgets::Clear,
};
impl AuthActivity {