From 4a202633eef7b6155628bbf7449c03cdf8308169 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Mikrut?= Date: Mon, 22 Nov 2021 06:48:07 +0100 Subject: [PATCH] Release 3.3.1 --- Cargo.lock | 6 +++--- Changelog.md | 3 +++ czkawka_cli/Cargo.toml | 2 +- czkawka_core/Cargo.toml | 2 +- czkawka_gui/Cargo.toml | 2 +- czkawka_gui/src/connect_button_delete.rs | 2 ++ czkawka_gui/ui/about_dialog.glade | 2 +- czkawka_gui/ui/main_window.glade | 2 +- data/com.github.qarmin.czkawka.metainfo.xml | 2 +- flatpak/com.github.qarmin.czkawka.yaml | 2 +- misc/cargo/PublishCore.sh | 2 +- misc/cargo/PublishOther.sh | 2 +- snap/snapcraft.yaml | 2 +- 13 files changed, 18 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 26e13d0..22ef132 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -458,7 +458,7 @@ dependencies = [ [[package]] name = "czkawka_cli" -version = "3.3.0" +version = "3.3.1" dependencies = [ "czkawka_core", "img_hash", @@ -467,7 +467,7 @@ dependencies = [ [[package]] name = "czkawka_core" -version = "3.3.0" +version = "3.3.1" dependencies = [ "audiotags", "bitflags", @@ -490,7 +490,7 @@ dependencies = [ [[package]] name = "czkawka_gui" -version = "3.3.0" +version = "3.3.1" dependencies = [ "chrono", "crossbeam-channel", diff --git a/Changelog.md b/Changelog.md index 2ff12b1..da1bf45 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,6 @@ +## Version 3.3.1 - 22.11.2021r + + ## 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) diff --git a/czkawka_cli/Cargo.toml b/czkawka_cli/Cargo.toml index 04b017f..8d344eb 100644 --- a/czkawka_cli/Cargo.toml +++ b/czkawka_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_cli" -version = "3.3.0" +version = "3.3.1" authors = ["Rafał Mikrut "] edition = "2018" description = "CLI frontend of Czkawka" diff --git a/czkawka_core/Cargo.toml b/czkawka_core/Cargo.toml index 52ca477..51df64c 100644 --- a/czkawka_core/Cargo.toml +++ b/czkawka_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_core" -version = "3.3.0" +version = "3.3.1" authors = ["Rafał Mikrut "] edition = "2018" description = "Core of Czkawka app" diff --git a/czkawka_gui/Cargo.toml b/czkawka_gui/Cargo.toml index dae4892..631b3e4 100644 --- a/czkawka_gui/Cargo.toml +++ b/czkawka_gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_gui" -version = "3.3.0" +version = "3.3.1" authors = ["Rafał Mikrut "] edition = "2018" description = "GTK frontend of Czkawka" diff --git a/czkawka_gui/src/connect_button_delete.rs b/czkawka_gui/src/connect_button_delete.rs index d6d3d27..a7bdb59 100644 --- a/czkawka_gui/src/connect_button_delete.rs +++ b/czkawka_gui/src/connect_button_delete.rs @@ -448,6 +448,8 @@ pub fn tree_remove(tree_view: >k::TreeView, column_file_name: i32, column_path // TODO, this maybe isn't required if we will be sure that any header cannot be selected if model.value(&iter, column_color).get::().unwrap() == MAIN_ROW_COLOR { selection_rows.push(model.path(&iter).unwrap()); + } else { + panic!("Header row shouldn't have selected, selection button"); } } diff --git a/czkawka_gui/ui/about_dialog.glade b/czkawka_gui/ui/about_dialog.glade index 29fad63..879a95a 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.3.0 + 3.3.1 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 8e15152..6ecb1a0 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.3.0 + Czkawka 3.3.1 1 none False diff --git a/data/com.github.qarmin.czkawka.metainfo.xml b/data/com.github.qarmin.czkawka.metainfo.xml index bf7cbc2..8596a70 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 595a87d..e934826 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.3.0 + tag: 3.3.1 diff --git a/misc/cargo/PublishCore.sh b/misc/cargo/PublishCore.sh index c56834f..035d61a 100755 --- a/misc/cargo/PublishCore.sh +++ b/misc/cargo/PublishCore.sh @@ -1,5 +1,5 @@ #!/bin/bash -NUMBER="3.3.0" +NUMBER="3.3.1" CZKAWKA_PATH="/home/rafal" cd "$CZKAWKA_PATH" diff --git a/misc/cargo/PublishOther.sh b/misc/cargo/PublishOther.sh index 2831eb7..1a8f387 100755 --- a/misc/cargo/PublishOther.sh +++ b/misc/cargo/PublishOther.sh @@ -1,5 +1,5 @@ #!/bin/bash -NUMBER="3.3.0" +NUMBER="3.3.1" CZKAWKA_PATH="/home/rafal" cd "$CZKAWKA_PATH" diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 8c57b33..0b001e3 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.3.0' # just for humans, typically '1.2+git' or '1.3.2' +version: '3.3.1' # 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.