From 44400e08af3c8f030493b8ec6fa965c7d42e560e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Mikrut?= Date: Sun, 15 Oct 2023 09:50:46 +0200 Subject: [PATCH] Release version 6.1.0 --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- Cargo.lock | 6 +++--- Changelog.md | 5 ++--- czkawka_cli/Cargo.toml | 4 ++-- czkawka_core/Cargo.toml | 2 +- czkawka_gui/Cargo.toml | 4 ++-- czkawka_gui/ui/about_dialog.ui | 2 +- czkawka_gui/ui/czkawka.cmb | 4 ++-- czkawka_gui/ui/main_window.ui | 2 +- czkawka_slint_gui/Cargo.toml | 2 +- data/com.github.qarmin.czkawka.metainfo.xml | 2 +- instructions/Installation.md | 2 +- misc/cargo/PublishCore.sh | 2 +- misc/cargo/PublishOther.sh | 2 +- snap/snapcraft.yaml | 4 ++-- 15 files changed, 22 insertions(+), 23 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 0c7e765..3b2d0e2 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -9,7 +9,7 @@ assignees: '' **Desktop (please complete the following information):** -- Czkawka version: +- Czkawka version: - OS version: - Terminal output[optional]: diff --git a/Cargo.lock b/Cargo.lock index ea98583..3f7f71c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -521,7 +521,7 @@ dependencies = [ [[package]] name = "czkawka_cli" -version = "6.0.0" +version = "6.1.0" dependencies = [ "clap", "czkawka_core", @@ -533,7 +533,7 @@ dependencies = [ [[package]] name = "czkawka_core" -version = "6.0.0" +version = "6.1.0" dependencies = [ "anyhow", "audio_checker", @@ -579,7 +579,7 @@ dependencies = [ [[package]] name = "czkawka_gui" -version = "6.0.0" +version = "6.1.0" dependencies = [ "chrono", "crossbeam-channel", diff --git a/Changelog.md b/Changelog.md index 563a76a..02f9a1f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,4 @@ -## Version 6.1.0 - ? +## Version 6.1.0 - 15.10.2023r - BREAKING CHANGE - Changed cache saving method, deduplicated, optimized and simplified procedure(all files needs to be hashed again) - [#1072](https://github.com/qarmin/czkawka/pull/1072), [#1086](https://github.com/qarmin/czkawka/pull/1086) - Remove up to 340ms of delay when waiting for results - [#1070](https://github.com/qarmin/czkawka/pull/1070) - Added logger with useful info when debugging app (level can be adjusted via e.g. `RUST_LOG=debug` env) - [#1072](https://github.com/qarmin/czkawka/pull/1072), [#1070](https://github.com/qarmin/czkawka/pull/1070) @@ -13,9 +13,8 @@ - Allowed removing similar images/videos/music from cli - [#1087](https://github.com/qarmin/czkawka/pull/1087) - Added info about saving/loading items to cache in duplicate and music mode - [#1091](https://github.com/qarmin/czkawka/pull/1091) - Fixed number of files to check in duplicate mode - [#1091](https://github.com/qarmin/czkawka/pull/1091) -- Added support for qoi image format - [e92a](https://github.com/qarmin/czkawka/commit/e92a8a65de9bd1250be482dbce06959125554849) +- Added support for qoi image format(without preview yet) - [e92a](https://github.com/qarmin/czkawka/commit/e92a8a65de9bd1250be482dbce06959125554849) - Fixed stability problem, that could remove invalid file in CLI - [#1083](https://github.com/qarmin/czkawka/pull/1083) -- Fixed problem with invalid cache loading - [#0000] - Fix Windows gui crashes by using gtk 4.6 instead 4.8 or 4.10 - [#992](https://github.com/qarmin/czkawka/pull/992) - Fixed printing info about duplicated music files - [#1016](https://github.com/qarmin/czkawka/pull/1016) - Fixed printing info about duplicated video files - [#1017](https://github.com/qarmin/czkawka/pull/1017) diff --git a/czkawka_cli/Cargo.toml b/czkawka_cli/Cargo.toml index 741927a..783596e 100644 --- a/czkawka_cli/Cargo.toml +++ b/czkawka_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_cli" -version = "6.0.0" +version = "6.1.0" authors = ["Rafał Mikrut "] edition = "2021" rust-version = "1.70.0" @@ -18,7 +18,7 @@ image_hasher = "1.2" log = "0.4.20" handsome_logger = "0.8" fun_time = { version = "0.3.1", features = ["log"] } -czkawka_core = { path = "../czkawka_core", version = "6.0.0", features = [] } +czkawka_core = { path = "../czkawka_core", version = "6.1.0", features = [] } [features] default = [] diff --git a/czkawka_core/Cargo.toml b/czkawka_core/Cargo.toml index f61bcb6..ba49cc3 100644 --- a/czkawka_core/Cargo.toml +++ b/czkawka_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_core" -version = "6.0.0" +version = "6.1.0" authors = ["Rafał Mikrut "] edition = "2021" rust-version = "1.70.0" diff --git a/czkawka_gui/Cargo.toml b/czkawka_gui/Cargo.toml index f946392..431bdb9 100644 --- a/czkawka_gui/Cargo.toml +++ b/czkawka_gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_gui" -version = "6.0.0" +version = "6.1.0" authors = ["Rafał Mikrut "] edition = "2021" rust-version = "1.70.0" @@ -53,7 +53,7 @@ log = "0.4.20" handsome_logger = "0.8" fun_time = { version = "0.3.1", features = ["log"] } -czkawka_core = { path = "../czkawka_core", version = "6.0.0", features = [] } +czkawka_core = { path = "../czkawka_core", version = "6.1.0", features = [] } gtk4 = { version = "0.7", default-features = false, features = ["v4_6"] } [target.'cfg(windows)'.dependencies] diff --git a/czkawka_gui/ui/about_dialog.ui b/czkawka_gui/ui/about_dialog.ui index fb698cc..c61d5af 100644 --- a/czkawka_gui/ui/about_dialog.ui +++ b/czkawka_gui/ui/about_dialog.ui @@ -11,6 +11,6 @@ This program is free to use and will always be. mit-x11 help-about-symbolic Czkawka - 6.0.0 + 6.1.0 diff --git a/czkawka_gui/ui/czkawka.cmb b/czkawka_gui/ui/czkawka.cmb index 3a1e99a..798d5d4 100755 --- a/czkawka_gui/ui/czkawka.cmb +++ b/czkawka_gui/ui/czkawka.cmb @@ -347,7 +347,7 @@ (3,1,"GtkAboutDialog","license-type","mit-x11",None,None,None,None,None,None,None,None,None), (3,1,"GtkAboutDialog","logo-icon-name","help-about-symbolic",None,None,None,None,None,None,None,None,None), (3,1,"GtkAboutDialog","program-name","Czkawka",None,None,None,None,None,None,None,None,None), - (3,1,"GtkAboutDialog","version","6.0.0",None,None,None,None,None,None,None,None,None), + (3,1,"GtkAboutDialog","version","6.1.0",None,None,None,None,None,None,None,None,None), (4,2,"GtkOrientable","orientation","vertical",None,None,None,None,None,None,None,None,None), (4,2,"GtkWidget","vexpand","1",None,None,None,None,None,None,None,None,None), (4,4,"GtkLabel","label","Group XD/PER XD (99 images in current group)",1,None,None,None,None,None,None,None,None), @@ -686,7 +686,7 @@ (5,177,"GtkWidget","focusable","1",None,None,None,None,None,None,None,None,None), (5,177,"GtkWidget","hexpand","1",None,None,None,None,None,None,None,None,None), (5,178,"GtkEditable","editable","0",None,None,None,None,None,None,None,None,None), - (5,178,"GtkEditable","text","Czkawka 6.0.0",1,None,None,None,None,None,None,None,None), + (5,178,"GtkEditable","text","Czkawka 6.1.0",1,None,None,None,None,None,None,None,None), (5,178,"GtkEditable","xalign","1",None,None,None,None,None,None,None,None,None), (5,178,"GtkEntry","has-frame","0",None,None,None,None,None,None,None,None,None), (5,178,"GtkWidget","focusable","1",None,None,None,None,None,None,None,None,None), diff --git a/czkawka_gui/ui/main_window.ui b/czkawka_gui/ui/main_window.ui index 10a5b59..f267501 100644 --- a/czkawka_gui/ui/main_window.ui +++ b/czkawka_gui/ui/main_window.ui @@ -1149,7 +1149,7 @@ 0 1 0 - Czkawka 6.0.0 + Czkawka 6.1.0 1 diff --git a/czkawka_slint_gui/Cargo.toml b/czkawka_slint_gui/Cargo.toml index 36ab4ae..4123b97 100644 --- a/czkawka_slint_gui/Cargo.toml +++ b/czkawka_slint_gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_slint" -version = "6.0.0" +version = "6.1.0" authors = ["Rafał Mikrut "] edition = "2021" rust-version = "1.72.1" diff --git a/data/com.github.qarmin.czkawka.metainfo.xml b/data/com.github.qarmin.czkawka.metainfo.xml index 876aa40..0c3e3b9 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/instructions/Installation.md b/instructions/Installation.md index 26b8ec1..be03689 100644 --- a/instructions/Installation.md +++ b/instructions/Installation.md @@ -85,7 +85,7 @@ Install the GUI version on Linux: ```shell # download -curl --location https://github.com/qarmin/czkawka/releases/download/6.0.0/linux_czkawka_gui --output ~/.local/bin/linux_czkawka_gui +curl --location https://github.com/qarmin/czkawka/releases/download/6.1.0/linux_czkawka_gui --output ~/.local/bin/linux_czkawka_gui # mark as executable chmod +x ~/.local/bin/linux_czkawka_gui # run diff --git a/misc/cargo/PublishCore.sh b/misc/cargo/PublishCore.sh index 6093d49..41a9a88 100755 --- a/misc/cargo/PublishCore.sh +++ b/misc/cargo/PublishCore.sh @@ -1,5 +1,5 @@ #!/bin/bash -NUMBER="6.0.0" +NUMBER="6.1.0" CZKAWKA_PATH="/home/rafal" cd "$CZKAWKA_PATH" diff --git a/misc/cargo/PublishOther.sh b/misc/cargo/PublishOther.sh index f151e4e..216a2a3 100755 --- a/misc/cargo/PublishOther.sh +++ b/misc/cargo/PublishOther.sh @@ -1,5 +1,5 @@ #!/bin/bash -NUMBER="6.0.0" +NUMBER="6.1.0" CZKAWKA_PATH="/home/rafal" cd "$CZKAWKA_PATH" diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index aa79a28..73645a3 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,6 +1,6 @@ name: czkawka # you probably want to 'snapcraft register ' base: core22 # the base snap is the execution environment for this snap -version: '6.0.0' # just for humans, typically '1.2+git' or '1.3.2' +version: '6.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. @@ -17,7 +17,7 @@ donation: https://github.com/sponsors/qarmin parts: rust-deps: plugin: nil - override-pull: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain 1.68.2 + override-pull: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain 1.73.0 czkawka: plugin: rust after: [ rust-deps ]