Skip to content

Commit

Permalink
Add initial pwd to history
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanarijit committed Jan 3, 2024
1 parent 50e8185 commit cc578aa
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ path = './benches/criterion.rs'

[package]
name = 'xplr'
version = '0.21.4'
version = '0.21.5'
authors = ['Arijit Basu <[email protected]>']
edition = '2021'
description = 'A hackable, minimal, fast TUI file explorer'
Expand Down Expand Up @@ -90,3 +90,5 @@ panic = 'abort'
strip = true

[features]


4 changes: 2 additions & 2 deletions docs/en/src/upgrade-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ compatibility.

### Instructions

#### [v0.20.2][48] -> [v0.21.4][49]
#### [v0.20.2][48] -> [v0.21.5][49]

- Some plugins might stop rendering colors. Wait for them to update.
- Rename `xplr.config.general.sort_and_filter_ui.search_identifier` to
Expand Down Expand Up @@ -521,5 +521,5 @@ Else do the following:
[46]: https://github.com/sayanarijit/xplr/releases/tag/v0.18.0
[47]: https://github.com/sayanarijit/xplr/releases/tag/v0.19.4
[48]: https://github.com/sayanarijit/xplr/releases/tag/v0.20.2
[49]: https://github.com/sayanarijit/xplr/releases/tag/v0.21.4
[49]: https://github.com/sayanarijit/xplr/releases/tag/v0.21.5
[50]: https://github.com/lotabout/skim#search-syntax
4 changes: 2 additions & 2 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ impl App {
config,
vroot,
initial_vroot,
pwd,
pwd: pwd.clone(),
initial_pwd,
directory_buffer: Default::default(),
last_focus: Default::default(),
Expand All @@ -435,7 +435,7 @@ impl App {
explorer_config,
logs: Default::default(),
logs_hidden: Default::default(),
history: Default::default(),
history: History::default().push(format!("{pwd}/")),
last_modes: Default::default(),
hostname,
hooks,
Expand Down
12 changes: 6 additions & 6 deletions src/lua/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,24 +160,24 @@ mod tests {
assert!(check_version(VERSION, "foo path").is_ok());

// Current release if OK
assert!(check_version("0.21.4", "foo path").is_ok());
assert!(check_version("0.21.5", "foo path").is_ok());

// Prev major release is ERR
// - Not yet

// Prev minor release is ERR (Change when we get to v1)
assert!(check_version("0.20.4", "foo path").is_err());
assert!(check_version("0.20.5", "foo path").is_err());

// Prev bugfix release is OK
assert!(check_version("0.21.3", "foo path").is_ok());
assert!(check_version("0.21.4", "foo path").is_ok());

// Next major release is ERR
assert!(check_version("1.20.4", "foo path").is_err());
assert!(check_version("1.20.5", "foo path").is_err());

// Next minor release is ERR
assert!(check_version("0.22.4", "foo path").is_err());
assert!(check_version("0.22.5", "foo path").is_err());

// Next bugfix release is ERR (Change when we get to v1)
assert!(check_version("0.21.5", "foo path").is_err());
assert!(check_version("0.21.6", "foo path").is_err());
}
}

0 comments on commit cc578aa

Please sign in to comment.