Skip to content

Commit

Permalink
v2.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoheiu committed Apr 7, 2024
1 parent 10a4639 commit 4628a59
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@

## Unreleased

## v2.13.0 (2024-04-07)

### Added
- `ignore_case` option to do case-insensitie search by `/`.
- `ignore_case` option to the do case-insensitie search by `/`.
- Symbolic link destinations are now displayed when the cursor is hovered over them.

### Changed
- Symlink items linked to directory now appears in the directory section, not the file section.
- MSRV is now v1.74.1

### fixed
- `z` command can now receive multiple arguments: `z dot files<CR>` works as in your terminal.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "felix"
version = "2.12.1"
version = "2.13.0"
authors = ["Kyohei Uto <im@kyoheiu.dev>"]
edition = "2021"
description = "tui file manager with vim-like key mapping"
Expand Down
22 changes: 19 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,22 @@ For more detailed document, visit https://kyoheiu.dev/felix.

## New release

## v2.13.0 (2024-04-07)

### Added

- `ignore_case` option to the do case-insensitie search by `/`.
- Symbolic link destinations are now displayed when the cursor is hovered over them.

### Changed

- Symlink items linked to directory now appears in the directory section, not the file section.
- MSRV is now v1.74.1

### fixed

- `z` command can now receive multiple arguments: `z dot files<CR>` works as in your terminal.

## v2.12.1 (2024-02-04)

### Fixed
Expand Down Expand Up @@ -70,16 +86,16 @@ report any problems._

| package | installation command | notes |
| ---------- | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| crates.io | `cargo install felix` | Minimum Supported rustc Version: **1.67.1** |
| crates.io | `cargo install felix` | Minimum Supported rustc Version: **1.74.1** |
| Arch Linux | `pacman -S felix-rs` | The binary name is `felix` if you install via pacman. Alias `fx='felix'` if you want, as this document (and other installations) uses `fx`. |
| NetBSD | `pkgin install felix` | |

### From this repository

- Make sure that `gcc` is installed.
- MSRV(Minimum Supported rustc Version): **1.67.1**
- MSRV(Minimum Supported rustc Version): **1.74.1**

Update Rust if rustc < 1.67.1:
Update Rust if rustc < 1.74.1:

```
rustup update
Expand Down

0 comments on commit 4628a59

Please sign in to comment.