diff --git a/Cargo.lock b/Cargo.lock index 49633ac..26e13d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -458,7 +458,7 @@ dependencies = [ [[package]] name = "czkawka_cli" -version = "3.2.0" +version = "3.3.0" dependencies = [ "czkawka_core", "img_hash", @@ -467,7 +467,7 @@ dependencies = [ [[package]] name = "czkawka_core" -version = "3.2.0" +version = "3.3.0" dependencies = [ "audiotags", "bitflags", @@ -490,7 +490,7 @@ dependencies = [ [[package]] name = "czkawka_gui" -version = "3.2.0" +version = "3.3.0" dependencies = [ "chrono", "crossbeam-channel", diff --git a/Changelog.md b/Changelog.md index 04c40ca..2ff12b1 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,15 @@ +## Version 3.3.0 - 20.11.2021r +- Select files by pressing space key [#415](https://github.com/qarmin/czkawka/pull/415) +- Add additional info to printed errors [#446](https://github.com/qarmin/czkawka/pull/446) +- Add support for multiple image filters, hashes and sizes in similar images tool [#447](https://github.com/qarmin/czkawka/pull/447), [#448](https://github.com/qarmin/czkawka/pull/448) +- Button to move files/folders to provided location [#449](https://github.com/qarmin/czkawka/pull/449) +- Add non clickable button to fix white theme [#450](https://github.com/qarmin/czkawka/pull/450) +- Fixed freeze when opening in same thread file/folder [#448](https://github.com/qarmin/czkawka/pull/448) +- Tool to check performance of different image filters and hash types and sizes [#447](https://github.com/qarmin/czkawka/pull/447) +- Add scheduled CI and pin it to support Rust 1.53.0 [7bb](https://github.com/qarmin/czkawka/commit/7bbdf742739a513b80d0cc06ba61dfafec976b23), [#431](https://github.com/qarmin/czkawka/pull/431) +- Update snap file to use builtin rust plugin and update gnome extension [8f2](https://github.com/qarmin/czkawka/commit/8f232285e5c34bee6d5da8e1453d7f40a0ffd08d) +- Disable from checking in similar images `webp`, `gif`, `bmp`, `ico` extension which caused crashes [#445](https://github.com/qarmin/czkawka/pull/446), [49e](https://github.com/qarmin/czkawka/commit/49effca169adb57b33f666757966d43b244319cc) + ## Version 3.2.0 - 07.08.2021r - Use checkbox instead selection to select files [#392](https://github.com/qarmin/czkawka/pull/392) - Re-enable hardlink on windows - [#410](https://github.com/qarmin/czkawka/pull/410) diff --git a/czkawka_cli/Cargo.toml b/czkawka_cli/Cargo.toml index 5279a30..04b017f 100644 --- a/czkawka_cli/Cargo.toml +++ b/czkawka_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_cli" -version = "3.2.0" +version = "3.3.0" authors = ["Rafał Mikrut "] edition = "2018" description = "CLI frontend of Czkawka" diff --git a/czkawka_core/Cargo.toml b/czkawka_core/Cargo.toml index e57af80..52ca477 100644 --- a/czkawka_core/Cargo.toml +++ b/czkawka_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_core" -version = "3.2.0" +version = "3.3.0" authors = ["Rafał Mikrut "] edition = "2018" description = "Core of Czkawka app" diff --git a/czkawka_core/src/similar_images.rs b/czkawka_core/src/similar_images.rs index b07c6ea..d85c75e 100644 --- a/czkawka_core/src/similar_images.rs +++ b/czkawka_core/src/similar_images.rs @@ -524,6 +524,7 @@ impl SimilarImages { let mut master_of_group: BTreeSet> = Default::default(); // Lista wszystkich głównych hashy, które odpowiadają za porównywanie // TODO optimize this for big temp_max_similarity values + // TODO maybe Simialar(u32) is enough instead SIMILAR_VALUES value? let temp_max_similarity = match self.hash_size { 4 => SIMILAR_VALUES[0][5], 8 => SIMILAR_VALUES[1][5], diff --git a/czkawka_gui/Cargo.toml b/czkawka_gui/Cargo.toml index 92658c6..dae4892 100644 --- a/czkawka_gui/Cargo.toml +++ b/czkawka_gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_gui" -version = "3.2.0" +version = "3.3.0" authors = ["Rafał Mikrut "] edition = "2018" description = "GTK frontend of Czkawka" diff --git a/czkawka_gui/ui/about_dialog.glade b/czkawka_gui/ui/about_dialog.glade index 948a424..29fad63 100644 --- a/czkawka_gui/ui/about_dialog.glade +++ b/czkawka_gui/ui/about_dialog.glade @@ -37,7 +37,7 @@ Author: Rafał Mikrut center dialog Czkawka - 3.2.0 + 3.3.0 2020 - 2021 Rafał Mikrut(qarmin) This program is free to use and will always be. diff --git a/czkawka_gui/ui/main_window.glade b/czkawka_gui/ui/main_window.glade index 814141b..8e15152 100644 --- a/czkawka_gui/ui/main_window.glade +++ b/czkawka_gui/ui/main_window.glade @@ -2244,7 +2244,7 @@ Author: Rafał Mikrut True False False - Czkawka 3.2.0 + Czkawka 3.3.0 1 none False diff --git a/data/com.github.qarmin.czkawka.metainfo.xml b/data/com.github.qarmin.czkawka.metainfo.xml index 011dae8..bf7cbc2 100644 --- a/data/com.github.qarmin.czkawka.metainfo.xml +++ b/data/com.github.qarmin.czkawka.metainfo.xml @@ -19,7 +19,7 @@ - + Rafał Mikrut diff --git a/flatpak/com.github.qarmin.czkawka.yaml b/flatpak/com.github.qarmin.czkawka.yaml index 8286e3a..595a87d 100644 --- a/flatpak/com.github.qarmin.czkawka.yaml +++ b/flatpak/com.github.qarmin.czkawka.yaml @@ -29,4 +29,4 @@ modules: - cargo-sources.json - type: git url: https://github.com/qarmin/czkawka.git - tag: 3.2.0 + tag: 3.3.0 diff --git a/misc/cargo/PublishCore.sh b/misc/cargo/PublishCore.sh index 4acc23c..c56834f 100755 --- a/misc/cargo/PublishCore.sh +++ b/misc/cargo/PublishCore.sh @@ -1,5 +1,5 @@ #!/bin/bash -NUMBER="3.2.0" +NUMBER="3.3.0" CZKAWKA_PATH="/home/rafal" cd "$CZKAWKA_PATH" diff --git a/misc/cargo/PublishOther.sh b/misc/cargo/PublishOther.sh index 801c429..2831eb7 100755 --- a/misc/cargo/PublishOther.sh +++ b/misc/cargo/PublishOther.sh @@ -1,5 +1,5 @@ #!/bin/bash -NUMBER="3.2.0" +NUMBER="3.3.0" CZKAWKA_PATH="/home/rafal" cd "$CZKAWKA_PATH" diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 15536ec..8c57b33 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,6 +1,6 @@ name: czkawka # you probably want to 'snapcraft register ' base: core20 # the base snap is the execution environment for this snap -version: '3.2.0' # just for humans, typically '1.2+git' or '1.3.2' +version: '3.3.0' # just for humans, typically '1.2+git' or '1.3.2' summary: Czkawka - fast data cleaner written in Rust # 79 char long summary description: | Czkawka is very fast and feature rich cleaner which finds file duplicates, empty folders and files, duplicated music, similar images or the biggest files in selected directories.