From 232607222254da066ab20b39bc6bbda2226d1d1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Mikrut?= Date: Sat, 17 Oct 2020 12:56:05 +0200 Subject: [PATCH] Release version 1.2.1 --- Cargo.lock | 16 ++++++++-------- Changelog.md | 5 +++++ README.md | 1 + czkawka_cli/Cargo.toml | 2 +- czkawka_core/Cargo.toml | 2 +- czkawka_gui/Cargo.toml | 2 +- czkawka_gui_orbtk/Cargo.toml | 2 +- misc/cargo/PublishCore.sh | 2 +- misc/cargo/PublishOther.sh | 2 +- 9 files changed, 20 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 62d3f1a..da20a61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -345,7 +345,7 @@ dependencies = [ [[package]] name = "czkawka_cli" -version = "1.2.0" +version = "1.2.1" dependencies = [ "czkawka_core", "structopt", @@ -353,7 +353,7 @@ dependencies = [ [[package]] name = "czkawka_core" -version = "1.2.0" +version = "1.2.1" dependencies = [ "bk-tree", "blake3", @@ -366,7 +366,7 @@ dependencies = [ [[package]] name = "czkawka_gui" -version = "1.2.0" +version = "1.2.1" dependencies = [ "chrono", "crossbeam-channel", @@ -381,7 +381,7 @@ dependencies = [ [[package]] name = "czkawka_gui_orbtk" -version = "1.2.0" +version = "1.2.1" dependencies = [ "czkawka_core", "orbtk", @@ -1825,18 +1825,18 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "serde" -version = "1.0.116" +version = "1.0.117" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96fe57af81d28386a513cbc6858332abc6117cfdb5999647c6444b8f43a370a5" +checksum = "b88fa983de7720629c9387e9f517353ed404164b1e482c970a90c1a4aaf7dc1a" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.116" +version = "1.0.117" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f630a6370fd8e457873b4bd2ffdae75408bc291ba72be773772a4c2a065d9ae8" +checksum = "cbd1ae72adb44aab48f325a02444a5fc079349a8d804c1fc922aed3f7454c74e" dependencies = [ "proc-macro2 1.0.24", "quote 1.0.7", diff --git a/Changelog.md b/Changelog.md index 4b92594..64026f7 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,8 @@ +## Version 1.2.1 - 17.10.2020r +- Make image similarity search significantly faster. [#72](https://github.com/qarmin/czkawka/pull/72) +- Improve similar images GUI a little and add sorting to Similarity Enum [#73](https://github.com/qarmin/czkawka/pull/73) +- Improve deleting files in Similar files in GUI [#75](https://github.com/qarmin/czkawka/pull/75) + ## Version 1.2.0 - 15.10.2020r - Replace String with PathBuf for paths [#59](https://github.com/qarmin/czkawka/pull/59) - Add test suite to PR [#65](https://github.com/qarmin/czkawka/pull/65) diff --git a/README.md b/README.md index 26dab8d..e2099ea 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ But the most important thing for me was to learn Rust and create a program usefu - Big Files - Finds provided number of the biggest files in given location - Empty Files - Looks for empty files across disk - Temporary Files - Allows finding temporary files + - Similar Files - Finds files which are not exactly the same ## Usage and requirements ### Requirements diff --git a/czkawka_cli/Cargo.toml b/czkawka_cli/Cargo.toml index 3276abf..0f54d8a 100644 --- a/czkawka_cli/Cargo.toml +++ b/czkawka_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_cli" -version = "1.2.0" +version = "1.2.1" authors = ["Rafał Mikrut "] edition = "2018" description = "CLI frontend of Czkawka" diff --git a/czkawka_core/Cargo.toml b/czkawka_core/Cargo.toml index edab856..2ae287e 100644 --- a/czkawka_core/Cargo.toml +++ b/czkawka_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_core" -version = "1.2.0" +version = "1.2.1" authors = ["Rafał Mikrut "] edition = "2018" description = "Core of Czkawka app" diff --git a/czkawka_gui/Cargo.toml b/czkawka_gui/Cargo.toml index c9b6ee1..37f78c5 100644 --- a/czkawka_gui/Cargo.toml +++ b/czkawka_gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_gui" -version = "1.2.0" +version = "1.2.1" authors = ["Rafał Mikrut "] edition = "2018" description = "GTK frontend of Czkawka" diff --git a/czkawka_gui_orbtk/Cargo.toml b/czkawka_gui_orbtk/Cargo.toml index ef1cb1d..16a2b4e 100644 --- a/czkawka_gui_orbtk/Cargo.toml +++ b/czkawka_gui_orbtk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_gui_orbtk" -version = "1.2.0" +version = "1.2.1" authors = ["Rafał Mikrut "] edition = "2018" description = "Orbtk frontend of Czkawka" diff --git a/misc/cargo/PublishCore.sh b/misc/cargo/PublishCore.sh index 593b7d1..0c1085a 100755 --- a/misc/cargo/PublishCore.sh +++ b/misc/cargo/PublishCore.sh @@ -1,5 +1,5 @@ #!/bin/bash -NUMBER="1.2.0" +NUMBER="1.2.1" CZKAWKA_PATH="/home/rafal" cd "$CZKAWKA_PATH" diff --git a/misc/cargo/PublishOther.sh b/misc/cargo/PublishOther.sh index 271b5c9..28b1bec 100755 --- a/misc/cargo/PublishOther.sh +++ b/misc/cargo/PublishOther.sh @@ -1,5 +1,5 @@ #!/bin/bash -NUMBER="1.2.0" +NUMBER="1.2.1" CZKAWKA_PATH="/home/rafal" cd "$CZKAWKA_PATH"