Update version

pull/119/head v0.5.11
Arijit Basu 3 years ago committed by Arijit Basu
parent b57950983c
commit 1c967cfef6

2
Cargo.lock generated

@ -1630,7 +1630,7 @@ dependencies = [
[[package]]
name = "xplr"
version = "0.5.10"
version = "0.5.11"
dependencies = [
"anyhow",
"chrono",

@ -1,6 +1,6 @@
[package]
name = "xplr"
version = "0.5.10" # Update config.yml, config.rs and default.nix
version = "0.5.11" # Update config.yml, config.rs and default.nix
authors = ["Arijit Basu <sayanarijit@gmail.com>"]
edition = "2018"
description = "A hackable, minimal, fast TUI file explorer"

@ -1020,6 +1020,7 @@ impl Config {
pub fn is_compatible(&self) -> Result<bool> {
let result = match self.parsed_version()? {
(0, 5, 11) => true,
(0, 5, 10) => true,
(0, 5, 9) => true,
(0, 5, 8) => true,
@ -1039,7 +1040,8 @@ impl Config {
pub fn upgrade_notification(&self) -> Result<Option<&str>> {
let result = match self.parsed_version()? {
(0, 5, 10) => None,
(0, 5, 11) => None,
(0, 5, 10) => Some("App version updated. Added xplr desktop icon and search navigation"),
(0, 5, 9) => Some("App version updated. Fixed pipes not updating properly"),
(0, 5, 8) => Some("App version updated. Fixed support for filenames starting with - (hiphen)"),
(0, 5, 7) => Some("App version updated. Fixed distorted screen when opening files in GUI"),

@ -1,4 +1,4 @@
version: v0.5.10
version: v0.5.11
general:
show_hidden: false
read_only: false

Loading…
Cancel
Save