summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md14
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--README.md14
-rw-r--r--config.yaml2
-rw-r--r--src/help.rs2
6 files changed, 23 insertions, 13 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5b3dfc8..522e172 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,15 +4,21 @@
## Unreleased
+## v2.2.1 (2022-12-15)
+
+### Fixed
+
+- Fix the compilation on NetBSD.
+
## v2.2.0 (2022-12-12)
### Changed
-- **IMPORTANT**: Trash and log directory path changed.
+- **IMPORTANT**: Trash, log directory, and session file path changed.
- from v2.2.0, felix will use `dirs::data_local_dir()` to store the deleted items and log files, instead of `dirs::config_dir()`.
- - Due to this change, the path for linux will be `$XDG_DATA_HOME/felix/{Trash, log}`, in most case `/home/user/.local/share/felix/{Trash, log}`. For Windows `{FOLDERID_LocalAppData}\felix\{Trash, log}`, typically `C:\Users\user\AppData\Local\felix\{Trash, log}`. No change for macOS users.
- - Note that config file path is unchanged for any OS!
- - Please don't forget deleting old trash diretory and log files if you don't want them anymore.
+ - Due to this change, the path for linux will be `$XDG_DATA_HOME/felix/{Trash, log, .session}`, in most case `/home/user/.local/share/felix/{Trash, log, .session}`. For Windows `{FOLDERID_LocalAppData}\felix\{Trash, log, .session}`, typically `C:\Users\user\AppData\Local\felix\{Trash, log, .session}`. No change for macOS users.
+ - Note that config file path does not change on any OS!
+ - Please don't forget deleting old trash directory and log files if you don't want them anymore.
- Refactoring overall.
### Added
diff --git a/Cargo.lock b/Cargo.lock
index 4e7f98f..09cdd7f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -325,7 +325,7 @@ dependencies = [
[[package]]
name = "felix"
-version = "2.2.0"
+version = "2.2.1"
dependencies = [
"chrono",
"content_inspector",
diff --git a/Cargo.toml b/Cargo.toml
index 9e94277..2dc590e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "felix"
-version = "2.2.0"
+version = "2.2.1"
authors = ["Kyohei Uto <im@kyoheiu.dev>"]
edition = "2021"
description = "tui file manager with vim-like key mapping"
diff --git a/README.md b/README.md
index 72bf3d5..4be0ab3 100644
--- a/README.md
+++ b/README.md
@@ -23,15 +23,21 @@ For more detailed document, visit https://kyoheiu.dev/felix.
## New release
+## v2.2.1 (2022-12-15)
+
+### Fixed
+
+- Fix the compilation on NetBSD.
+
## v2.2.0 (2022-12-12)
### Changed
-- **IMPORTANT**: Trash and log directory path changed.
+- **IMPORTANT**: Trash, log directory, and session file path changed.
- from v2.2.0, felix will use `dirs::data_local_dir()` to store the deleted items and log files, instead of `dirs::config_dir()`.
- - Due to this change, the path for linux will be `$XDG_DATA_HOME/felix/{Trash, log}`, in most case `/home/user/.local/share/felix/{Trash, log}`. For Windows `{FOLDERID_LocalAppData}\felix\{Trash, log}`, typically `C:\Users\user\AppData\Local\felix\{Trash, log}`. No change for macOS users.
- - Note that config file path is unchanged for any OS!
- - Please don't forget deleting old trash diretory and log files if you don't want them anymore.
+ - Due to this change, the path for linux will be `$XDG_DATA_HOME/felix/{Trash, log, .session}`, in most case `/home/user/.local/share/felix/{Trash, log, .session}`. For Windows `{FOLDERID_LocalAppData}\felix\{Trash, log, .session}`, typically `C:\Users\user\AppData\Local\felix\{Trash, log, .session}`. No change for macOS users.
+ - Note that config file path does not change on any OS!
+ - Please don't forget deleting old files if you don't want them anymore.
### Added
diff --git a/config.yaml b/config.yaml
index 9832fe7..f55710c 100644
--- a/config.yaml
+++ b/config.yaml
@@ -1,5 +1,3 @@
-# v2.1.1
-
# (Optional)
# Default exec command when opening file.
# If not set, will default to $EDITOR.
diff --git a/src/help.rs b/src/help.rs
index be869a6..9dd5f2a 100644
--- a/src/help.rs
+++ b/src/help.rs
@@ -1,5 +1,5 @@
/// Help text.
-pub const HELP: &str = "# felix v2.2.0
+pub const HELP: &str = "# felix v2.2.1
A simple TUI file manager with vim-like keymapping.
## Usage