diff --git a/Cargo.lock b/Cargo.lock index 9eb4dc6..7e50172 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -303,7 +303,7 @@ dependencies = [ [[package]] name = "czkawka_cli" -version = "2.0.0" +version = "2.1.0" dependencies = [ "czkawka_core", "structopt", @@ -311,7 +311,7 @@ dependencies = [ [[package]] name = "czkawka_core" -version = "2.0.0" +version = "2.1.0" dependencies = [ "audiotags", "bitflags", @@ -329,7 +329,7 @@ dependencies = [ [[package]] name = "czkawka_gui" -version = "2.0.0" +version = "2.1.0" dependencies = [ "chrono", "crossbeam-channel", diff --git a/Changelog.md b/Changelog.md index 6b0686d..e2015c2 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,13 @@ +## Version 2.1.0 - 31.12.2020r +- Hide preview when deleting images or symlinking it - [#167](https://github.com/qarmin/czkawka/pull/167) +- Add manual adding of directories - [#165](https://github.com/qarmin/czkawka/pull/165), [#168](https://github.com/qarmin/czkawka/pull/168) +- Add resizable top panel - [#164](https://github.com/qarmin/czkawka/pull/164) +- Add support for delete button - [#159](https://github.com/qarmin/czkawka/pull/159) +- Allow to select multiple entries in File Chooser - [#154](https://github.com/qarmin/czkawka/pull/154) +- Add cache support for similar images - [#139](https://github.com/qarmin/czkawka/pull/139) +- Add selecting images with it's size - [#138](https://github.com/qarmin/czkawka/pull/138) +- Modernize popovers code and simplify later changes - [#137](https://github.com/qarmin/czkawka/pull/137) + ## Version 2.0.0 - 23.12.2020r - Add Snap support - [ee3d4](https://github.com/qarmin/czkawka/commit/ee3d450552cd0c37a114b05c557ff9381ef92466) - Select longer names by default - [#113](https://github.com/qarmin/czkawka/pull/113) diff --git a/czkawka_cli/Cargo.toml b/czkawka_cli/Cargo.toml index 425ff32..c84cdaa 100644 --- a/czkawka_cli/Cargo.toml +++ b/czkawka_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_cli" -version = "2.0.0" +version = "2.1.0" authors = ["Rafał Mikrut "] edition = "2018" description = "CLI frontend of Czkawka" diff --git a/czkawka_core/Cargo.toml b/czkawka_core/Cargo.toml index d0c22bc..be012dd 100644 --- a/czkawka_core/Cargo.toml +++ b/czkawka_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_core" -version = "2.0.0" +version = "2.1.0" authors = ["Rafał Mikrut "] edition = "2018" description = "Core of Czkawka app" diff --git a/czkawka_gui/Cargo.toml b/czkawka_gui/Cargo.toml index af15259..6386d00 100644 --- a/czkawka_gui/Cargo.toml +++ b/czkawka_gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_gui" -version = "2.0.0" +version = "2.1.0" authors = ["Rafał Mikrut "] edition = "2018" description = "GTK frontend of Czkawka" diff --git a/czkawka_gui/czkawka.glade b/czkawka_gui/czkawka.glade index 5ca6192..32ff569 100644 --- a/czkawka_gui/czkawka.glade +++ b/czkawka_gui/czkawka.glade @@ -2387,7 +2387,7 @@ Author: Rafał Mikrut True False False - Czkawka 2.0.0 + Czkawka 2.1.0 1 none False diff --git a/misc/cargo/PublishCore.sh b/misc/cargo/PublishCore.sh index cb7d778..ddf1f1f 100755 --- a/misc/cargo/PublishCore.sh +++ b/misc/cargo/PublishCore.sh @@ -1,5 +1,5 @@ #!/bin/bash -NUMBER="2.0.0" +NUMBER="2.1.0" CZKAWKA_PATH="/home/rafal" cd "$CZKAWKA_PATH" diff --git a/misc/cargo/PublishOther.sh b/misc/cargo/PublishOther.sh index ea5826f..2f63e56 100755 --- a/misc/cargo/PublishOther.sh +++ b/misc/cargo/PublishOther.sh @@ -1,5 +1,5 @@ #!/bin/bash -NUMBER="2.0.0" +NUMBER="2.1.0" CZKAWKA_PATH="/home/rafal" cd "$CZKAWKA_PATH" diff --git a/snap/local/CreateSnap.sh b/snap/local/CreateSnap.sh index ce197c3..e2b1c04 100755 --- a/snap/local/CreateSnap.sh +++ b/snap/local/CreateSnap.sh @@ -1,5 +1,5 @@ #!/bin/bashmisc -NUMBER="2.0.0" +NUMBER="2.1.0" CZKAWKA_PATH="/home/rafal" cd "$CZKAWKA_PATH" diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index d3d279e..0c47c0b 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,6 +1,6 @@ name: czkawka # you probably want to 'snapcraft register ' base: core18 # the base snap is the execution environment for this snap -version: '2.0.0' # just for humans, typically '1.2+git' or '1.3.2' +version: '2.1.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. @@ -13,7 +13,7 @@ parts: czkawka: plugin: nil source: https://github.com/qarmin/czkawka.git - source-tag: 2.0.0 + source-tag: 2.1.0 build-packages: - libgtk-3-dev - curl