termscp/CHANGELOG.md

341 lines
14 KiB
Markdown
Raw Normal View History

2020-12-06 15:07:52 +01:00
# Changelog
- [Changelog](#changelog)
2021-06-06 14:19:20 +02:00
- [0.5.1](#051)
2021-04-23 22:05:05 +02:00
- [0.5.0](#050)
2021-04-13 09:06:22 +02:00
- [0.4.2](#042)
2021-03-29 20:59:55 +02:00
- [0.4.1](#041)
2021-03-04 15:05:27 +01:00
- [0.4.0](#040)
- [0.3.3](#033)
2021-01-19 09:12:59 +01:00
- [0.3.2](#032)
2021-01-16 10:31:24 +01:00
- [0.3.1](#031)
2020-12-22 17:14:44 +01:00
- [0.3.0](#030)
2020-12-13 10:27:21 +01:00
- [0.2.0](#020)
- [0.1.3](#013)
2020-12-12 10:06:11 +01:00
- [0.1.2](#012)
2020-12-09 16:17:11 +01:00
- [0.1.1](#011)
2020-12-06 15:07:52 +01:00
- [0.1.0](#010)
---
2021-06-06 14:19:20 +02:00
## 0.5.1
Released on FIXME: ??
- Enhancements:
- **CI now uses containers to test file transfers (SSH/FTP)**
- Improved coverage
- Found many bugs which has now been fixed
- Build in CI won't fail due to test servers not responding
- We're now able to test all the functionalities of the file transfers
2021-06-06 14:19:20 +02:00
- Bugfix:
- Fixed broken input cursor when typing UTF8 characters (tui-realm 0.3.2)
2021-06-13 10:20:16 +02:00
- Fixed [Issue 44](https://github.com/veeso/termscp/issues/44): Could not move files to other paths in FTP
2021-06-13 09:47:17 +02:00
- Fixed [Issue 43](https://github.com/veeso/termscp/issues/43): Could not remove non-empty directories in FTP
- Fixed [Issue 39](https://github.com/veeso/termscp/issues/39): Help panels as `ScrollTable` to allow displaying entire content on small screens
- Fixed [Issue 37](https://github.com/veeso/termscp/issues/37): progress bar not visible when editing remote files
2021-06-06 14:19:20 +02:00
- Dependencies:
2021-06-07 22:09:33 +02:00
- Updated `textwrap` to `0.14.0`
- Updated `tui-realm` to `0.4.2`
2021-06-06 14:19:20 +02:00
2021-04-23 22:05:05 +02:00
## 0.5.0
2021-05-23 15:42:51 +02:00
Released on 23/05/2021
2021-04-23 22:05:05 +02:00
2021-05-21 12:45:25 +02:00
> 🌸 Spring Update 2021 🌷
2021-05-21 12:08:53 +02:00
2021-05-03 22:24:17 +02:00
- **Synchronized browsing**:
- Added the possibility to enabled the synchronized brower navigation
- when you enter a directory, the same directory will be entered on the other tab
- Enable sync browser with `<Y>`
2021-05-15 17:43:33 +02:00
- Read more on manual: [Synchronized browsing](docs/man.md#Synchronized-browsing-)
2021-05-01 17:12:48 +02:00
- **Remote and Local hosts file formatter**:
- Added the possibility to set different formatters for local and remote hosts
2021-05-15 17:43:33 +02:00
- **Work on multiple files**:
- Added the possibility to work on **multiple files simultaneously**
- Select a file with `<M>`, the file when selected will have a `*` prepended to its name
- Select all files in the current directory with `<CTRL+A>`
- Read more on manual: [Work on multiple files](docs/man.md#Work-on-multiple-files-)
2021-05-17 22:35:28 +02:00
- **Logging**:
- termscp now writes a log file, useful to debug and to contribute to fix issues.
- Read more on [manual](docs/man.md)
- **File transfer changes**
- *SFTP*
- Added **COPY** command to SFTP (Please note that Copy command is not supported by SFTP natively, so here it just uses the `cp` shell command as it does in SCP).
- *FTP*
- Added support for file copy (achieved through *tricky-copy*: the file is first downloaded, then uploaded with a different file name)
2021-05-21 12:08:53 +02:00
- **Double progress bar**:
- From now one two progress bar will be displayed:
- the first, on top, displays the full transfer state (e.g. when downloading a directory of 10 files, the progress of the entire transfer)
- the second, on bottom, displays the transfer of the individual file being written (as happened for the old versions)
- changed the progress bar colour from `LightGreen` to `Green`
2021-05-03 22:24:17 +02:00
- Enhancements
- Added a status bar in the file explorer showing whether the sync browser is enabled and which file sorting mode is selected
- Removed the goold old figlet title
- Protocol input as first field in UI
- Port is now updated to standard for selected protocol
2021-05-21 12:59:42 +02:00
- when you change the protocol in the authentication form and the current port is standard (`< 1024`), the port will be automatically changed to default value for the selected protocol (e.g. current port: `123`, protocol changed to `FTP`, port becomes `21`)
2021-04-24 11:38:28 +02:00
- Bugfix:
- Fixed wrong text wrap in log box
- Fixed empty bookmark name causing termscp to crash
- Fixed error message not being shown after an upload failure
- Fixed default protocol not being loaded from config
- [Issue 23](https://github.com/veeso/termscp/issues/23): Remove created file if transfer failed or was abrupted
2021-04-24 11:38:28 +02:00
- Dependencies:
2021-05-15 18:04:51 +02:00
- Added `tui-realm 0.3.0`
2021-05-02 12:09:32 +02:00
- Removed `tui` (as direct dependency)
2021-05-15 18:04:51 +02:00
- Updated `regex` to `1.5.4`
2021-04-24 11:38:28 +02:00
2021-04-13 09:06:22 +02:00
## 0.4.2
Released on 13/04/2021
- Enhancements:
- Use highlight symbol for logbox of `tui-rs` instead of adding a `Span`
2021-04-13 09:06:22 +02:00
- Bugfix:
- removed `eprintln!` in ftp transfer causing UI to break in Windows
2021-03-29 20:59:55 +02:00
## 0.4.1
2021-04-06 21:00:03 +02:00
Released on 07/04/2021
2021-03-29 20:59:55 +02:00
- Enhancements:
- SCP file transfer:
- Added possibility to stat directories.
2021-03-29 21:16:14 +02:00
- Bugfix:
2021-04-04 16:32:39 +02:00
- [Issue 18](https://github.com/veeso/termscp/issues/18): Set file transfer type to `Binary` for FTP
- [Issue 17](https://github.com/veeso/termscp/issues/17)
- SCP: fixed symlink not properly detected
- FTP: added symlink support for Linux targets
2021-03-29 21:16:14 +02:00
- [Issue 10](https://github.com/veeso/termscp/issues/10): Fixed port not being loaded from bookmarks into gui
2021-04-02 22:09:58 +02:00
- [Issue 9](https://github.com/veeso/termscp/issues/9): Fixed issues related to paths on remote when using Windows
- Dependencies:
- Added `path-slash 0.1.4` (Windows only)
- Added `thiserror 1.0.24`
2021-04-03 17:45:02 +02:00
- Updated `edit` to `0.1.3`
- Updated `magic-crypt` to `3.1.7`
- Updated `rand` to `0.8.3`
- Updated `regex` to `1.4.5`
- Updated `textwrap` to `0.13.4`
- Updated `ureq` to `2.1.0`
- Updated `whoami` to `1.1.1`
- Updated `wildmatch` to `2.0.0`
2021-03-29 21:16:14 +02:00
2021-03-04 15:05:27 +01:00
## 0.4.0
2021-03-26 22:19:24 +01:00
Released on 27/03/2021
2021-03-04 15:05:27 +01:00
> The UI refactoring update
2021-03-08 17:03:53 +01:00
- **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).
2021-03-26 22:19:24 +01:00
- **Find**: search for files pressing `F` using wild matches.
2021-03-14 20:59:35 +01:00
- Enhancements:
- Input fields will now support **"input keys"** (such as moving cursor, DEL, END, HOME, ...)
2021-03-08 12:01:40 +01:00
- Improved performance regarding configuration I/O (config client is now shared in the activity context)
2021-03-08 14:20:13 +01:00
- Fetch latest version from Github once; cache previous value in the Context Storage.
2021-03-08 17:03:53 +01:00
- 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`)
- Fixed a bug causing termscp to crash if removing a bookmark
2021-03-08 12:01:40 +01:00
- Fixed file format cursor position in the GUI
- Fixed a bug causing termscp to show two equal bookmarks when overwriting one.
- Fixed system tests which deleted the termscp configuration when launched
2021-03-26 22:25:10 +01:00
- **LICENSE**: changed license to MIT
2021-03-21 16:01:12 +01:00
- Dependencies:
- Removed `unicode-width`
2021-03-25 22:59:42 +01:00
- Added `wildmatch 1.0.13`
- 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.
2021-03-04 15:05:27 +01:00
## 0.3.3
2021-02-27 20:57:07 +01:00
Released on 28/02/2021
2021-02-28 13:10:59 +01:00
- **Format key attributes**:
2021-02-25 17:47:50 +01:00
- Added `EXTRA` and `LENGTH` parameters to format keys.
- Now keys are provided with this syntax `{KEY_NAME[:LEN[:EXTRA]}`
2021-02-28 13:10:59 +01:00
- **Check for updates**:
2021-05-05 22:13:57 +02:00
- termscp will now check for updates on startup and will show in the main page if there is a new version available
2021-02-28 13:10:59 +01:00
- This feature may be disabled from setup (Check for updates => No)
- Enhancements:
- Default choice for deleting file set to "NO" (way too easy to delete files by mistake)
- Added CLI options to set starting workind directory on both local and remote hosts
- Parse remote host now uses a Regex to gather parts (increased stability).
- Now bookmarks and recents are sorted in the UI (bookmarks are sorted by name; recents are sorted by connection datetime)
2021-02-27 20:57:07 +01:00
- Improved stability
2021-01-19 09:12:59 +01:00
## 0.3.2
2021-01-24 20:31:24 +01:00
Released on 24/01/2021
2021-01-19 09:12:59 +01:00
2021-01-23 16:38:46 +01:00
- **Explorer Formatter**:
- Added possibility to customize the format when listing files in the explorers (Read more on README)
- Added `file_fmt` key to configuration (if missing, default will be used).
- Added the text input to the Settings view to set the value for `file_fmt`.
2021-01-19 09:12:59 +01:00
- Bugfix:
- Solved file index in explorer files at start of termscp, in case the first entry is an hidden file
- SCP File transfer: when listing directory entries, check if a symlink points to a directory or to a file
2021-01-24 12:04:27 +01:00
- Dependencies:
- updated `crossterm` to `0.19.0`
- updated `rand` to `0.8.2`
- updated `rpassword` to `5.0.1`
- updated `serde` to `1.0.121`
- updated `tui` to `0.14.0`
- updated `whoami` to `1.1.0`
2021-01-19 09:12:59 +01:00
2021-01-16 10:31:24 +01:00
## 0.3.1
2021-01-18 17:36:53 +01:00
Released on 18/01/2021
2021-01-16 10:31:24 +01:00
2021-01-16 17:13:41 +01:00
- **Keyring to store secrets**
- On both MacOS and Windows, the secret used to encrypt passwords in bookmarks it is now store in the OS secret vault. This provides much more security to store the password
- Enhancements:
- Added connection timeout to 30 seconds to SFTP/SCP clients and improved name lookup system.
- Bugfix:
- Solved index in explorer files list which was no more kept after 0.3.0
- SCP file transfer: fixed possible wrong file size when sending file, due to a possible incoherent size between the file explorer and the actual file size.
2021-01-16 17:13:41 +01:00
- Breaking changes: on **MacOS / Windows systems only**, the password you saved for bookmarks won't be working anymore if you have support for the keyring crate. Because of the migration to keyring, the previously used secret hasn't been migrated to the storage, instead a new secret will be used. To solve this, just save the bookmark again with the password.
2020-12-22 17:14:44 +01:00
## 0.3.0
2021-01-09 20:35:55 +01:00
Released on 10/01/2021
2020-12-22 17:14:44 +01:00
> The SSH Key Storage Update
- **SSH Key Storage**
- Added the possibility to store SSH private keys to access to remote hosts; this feature is supported in both SFTP and SCP.
- SSH Keys can be manipulated through the new **Setup Interface**
- **Setup Interface**
- Added a new area in the interface, where is possible to customize termscp. Access to this interface is achieved pressing `<CTRL+C>` from the home page (`AuthActivity`).
- **Configuration**:
- Added configuration; configuration is stored at
- Linux: `/home/alice/.config/termscp/config.toml`
- MacOS: `/Users/Alice/Library/Application Support/termscp/config.toml`
- Windows: `C:\Users\Alice\AppData\Roaming\termscp\config.toml`
- Added Text editor to configuration
- Added Default File transfer protocol to configuration
2020-12-27 10:36:48 +01:00
- Added "Show hidden files" to configuration
- Added "Group directories" to configuration
- Added SSH keys to configuration; SSH keys will be stored at
- Linux: `/home/alice/.config/termscp/.ssh/`
- MacOS: `/Users/Alice/Library/Application Support/termscp/.ssh/`
- Windows: `C:\Users\Alice\AppData\Roaming\termscp\.ssh\`
- Enhancements:
- Replaced `sha256` sum with last modification time check, to verify if a file has been changed in the text editor
- **FTP**
- Added `LIST` command parser for Windows server (DOS-like syntax)
- Default protocol changed to default protocol in configuration when providing address as CLI argument
- Explorers:
- Hidden files are now not shown by default; use `A` to show hidden files.
- Append `/` to directories name.
2020-12-26 10:16:01 +01:00
- Keybindings:
- `A`: Toggle hidden files
- `B`: Sort files by (name, size, creation time, modify time)
2020-12-26 10:16:01 +01:00
- `N`: New file
- Bugfix:
- SCP client didn't show file types for files
- FTP client didn't show file types for files
2021-01-09 15:05:49 +01:00
- FTP file transfer not working properly with `STOR` and `RETR`.
- Fixed `0 B/S` transfer rate displayed after completing download in less than 1 second
2020-12-26 10:16:01 +01:00
- Dependencies:
- added `bitflags 1.2.1`
- removed `data-encoding`
2021-01-09 15:05:49 +01:00
- updated `ftp` to `4.0.2`
2020-12-22 18:33:38 +01:00
- updated `rand` to `0.8.0`
- removed `ring`
2020-12-22 18:33:38 +01:00
- updated `textwrap` to `0.13.1`
- updated `toml` to `0.5.8`
- updated `whoami` to `1.0.1`
2020-12-13 10:27:21 +01:00
## 0.2.0
2020-12-21 11:11:29 +01:00
Released on 21/12/2020
2020-12-13 10:27:21 +01:00
> The Bookmarks Update
2020-12-18 16:16:23 +01:00
2020-12-15 16:45:34 +01:00
- **Bookmarks**
- Bookmarks and recent connections are now displayed in the home page
- Bookmarks are saved at
- Linux: `/home/alice/.config/termscp/bookmarks.toml`
- MacOS: `/Users/Alice/Library/Application Support/termscp/bookmarks.toml`
- Windows: `C:\Users\Alice\AppData\Roaming\termscp\bookmarks.toml`
2020-12-19 21:04:55 +01:00
- **Text Editor**
- Added text editor feature to explorer view
- Added `o` to keybindings to open a text file
2020-12-21 11:11:29 +01:00
- Keybindings:
- `C`: Copy file/directory
- `O`: Open text file in editor
2020-12-18 16:16:23 +01:00
- Enhancements:
- User interface
- Collpased borders to make everything more *aesthetic*
- Rounded input field boards
- File explorer:
- Log how long it took to upload/download a file and the transfer speed
- Display in progress bar the transfer speed (bytes/seconds)
- Bugfix:
- File mode of file on remote is now reported on local file after being downloaded (unix, linux, macos only)
- Scp: when username was not provided, it didn't fallback to current username
2020-12-18 12:27:37 +01:00
- Explorer: fixed UID format in Windows
2020-12-15 16:45:34 +01:00
## 0.1.3
Released on 14/12/2020
- Enhancements:
2020-12-14 10:03:20 +01:00
- File transfer:
- Read buffer is now 65536 bytes long
- File explorer:
- Fixed color mismatch in local explorer
- Explorer tabs have now 70% of layout height, while logging area is 30%
- Highlight selected entry in tabs, only when the tab is active
2020-12-14 13:39:47 +01:00
- Auth page:
- align popup text to center
2020-12-14 13:52:49 +01:00
- Keybindings:
- `L`: Refresh directory content
- Bugfix:
- Fixed memory vulnerability in Windows version
2020-12-12 10:06:11 +01:00
## 0.1.2
2020-12-12 22:00:12 +01:00
Released on 13/12/2020
2020-12-12 10:06:11 +01:00
- General performance and code improvements
- Improved symlinks management
2020-12-12 22:04:59 +01:00
- Possibility to abort file transfers
- Enhancements:
- File explorer:
- When file index is at the end of the list, moving down will set the current index to the first element and viceversa.
- Selected file has now colourful background, instead of foreground, for a better readability.
- Keybindings:
- `E`: Delete file (Same as `DEL`); added because some keyboards don't have `DEL` (hey, that's my MacBook Air's keyboard!)
2020-12-12 22:00:12 +01:00
- `Ctrl+C`: Abort transfer process
2020-12-12 10:06:11 +01:00
2020-12-09 16:17:11 +01:00
## 0.1.1
2020-12-10 12:38:09 +01:00
Released on 10/12/2020
2020-12-09 16:17:11 +01:00
- enhancements:
- password prompt: ask before performing terminal clear
- file explorer:
- file names are now sorted ignoring capital letters
- file names longer than 23, are now cut to 20 and followed by `...`
- paths which exceed tab size in explorer are elided with the following formato `ANCESTOR[1]/.../PARENT/DIRNAME`
- keybindings:
- `I`: show info about selected file or directory
- Removed `CTRL`; just use keys now.
- bugfix:
- prevent panic in set_progress, for progress values `> 100.0 or < 0.0`
2020-12-10 11:51:49 +01:00
- Fixed FTP get, which didn't finalize the reader
2020-12-10 10:41:13 +01:00
- dependencies:
- updated `textwrap` to `0.13.0`
2020-12-10 11:51:49 +01:00
- updated `ftp4` to `4.0.1`
2020-12-09 16:17:11 +01:00
2020-12-06 15:07:52 +01:00
## 0.1.0
Released on 06/12/2020
- First release