1
0
Fork 0
mirror of synced 2024-05-17 19:03:08 +12:00

Release version 1.2.1

This commit is contained in:
Rafał Mikrut 2020-10-17 12:56:05 +02:00
parent aa63a14f68
commit 2326072222
9 changed files with 20 additions and 14 deletions

16
Cargo.lock generated
View file

@ -345,7 +345,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_cli" name = "czkawka_cli"
version = "1.2.0" version = "1.2.1"
dependencies = [ dependencies = [
"czkawka_core", "czkawka_core",
"structopt", "structopt",
@ -353,7 +353,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_core" name = "czkawka_core"
version = "1.2.0" version = "1.2.1"
dependencies = [ dependencies = [
"bk-tree", "bk-tree",
"blake3", "blake3",
@ -366,7 +366,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_gui" name = "czkawka_gui"
version = "1.2.0" version = "1.2.1"
dependencies = [ dependencies = [
"chrono", "chrono",
"crossbeam-channel", "crossbeam-channel",
@ -381,7 +381,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_gui_orbtk" name = "czkawka_gui_orbtk"
version = "1.2.0" version = "1.2.1"
dependencies = [ dependencies = [
"czkawka_core", "czkawka_core",
"orbtk", "orbtk",
@ -1825,18 +1825,18 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
[[package]] [[package]]
name = "serde" name = "serde"
version = "1.0.116" version = "1.0.117"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96fe57af81d28386a513cbc6858332abc6117cfdb5999647c6444b8f43a370a5" checksum = "b88fa983de7720629c9387e9f517353ed404164b1e482c970a90c1a4aaf7dc1a"
dependencies = [ dependencies = [
"serde_derive", "serde_derive",
] ]
[[package]] [[package]]
name = "serde_derive" name = "serde_derive"
version = "1.0.116" version = "1.0.117"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f630a6370fd8e457873b4bd2ffdae75408bc291ba72be773772a4c2a065d9ae8" checksum = "cbd1ae72adb44aab48f325a02444a5fc079349a8d804c1fc922aed3f7454c74e"
dependencies = [ dependencies = [
"proc-macro2 1.0.24", "proc-macro2 1.0.24",
"quote 1.0.7", "quote 1.0.7",

View file

@ -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 ## Version 1.2.0 - 15.10.2020r
- Replace String with PathBuf for paths [#59](https://github.com/qarmin/czkawka/pull/59) - 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) - Add test suite to PR [#65](https://github.com/qarmin/czkawka/pull/65)

View file

@ -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 - Big Files - Finds provided number of the biggest files in given location
- Empty Files - Looks for empty files across disk - Empty Files - Looks for empty files across disk
- Temporary Files - Allows finding temporary files - Temporary Files - Allows finding temporary files
- Similar Files - Finds files which are not exactly the same
## Usage and requirements ## Usage and requirements
### Requirements ### Requirements

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_cli" name = "czkawka_cli"
version = "1.2.0" version = "1.2.1"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "CLI frontend of Czkawka" description = "CLI frontend of Czkawka"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_core" name = "czkawka_core"
version = "1.2.0" version = "1.2.1"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "Core of Czkawka app" description = "Core of Czkawka app"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_gui" name = "czkawka_gui"
version = "1.2.0" version = "1.2.1"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "GTK frontend of Czkawka" description = "GTK frontend of Czkawka"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_gui_orbtk" name = "czkawka_gui_orbtk"
version = "1.2.0" version = "1.2.1"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "Orbtk frontend of Czkawka" description = "Orbtk frontend of Czkawka"

View file

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
NUMBER="1.2.0" NUMBER="1.2.1"
CZKAWKA_PATH="/home/rafal" CZKAWKA_PATH="/home/rafal"
cd "$CZKAWKA_PATH" cd "$CZKAWKA_PATH"

View file

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
NUMBER="1.2.0" NUMBER="1.2.1"
CZKAWKA_PATH="/home/rafal" CZKAWKA_PATH="/home/rafal"
cd "$CZKAWKA_PATH" cd "$CZKAWKA_PATH"