Release version 6.1.0

pull/1106/head 6.1.0
Rafał Mikrut 7 months ago
parent 0f7aa95a64
commit 44400e08af

@ -9,7 +9,7 @@ assignees: ''
**Desktop (please complete the following information):** **Desktop (please complete the following information):**
- Czkawka version<!-- e.g. 6.0.0 cli/gui -->: - Czkawka version<!-- e.g. 6.1.0 cli/gui -->:
- OS version<!-- e.g Ubuntu 22.04, Windows 11, Mac 15.1 ARM -->: - OS version<!-- e.g Ubuntu 22.04, Windows 11, Mac 15.1 ARM -->:
- Terminal output[optional]: - Terminal output[optional]:

6
Cargo.lock generated

@ -521,7 +521,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_cli" name = "czkawka_cli"
version = "6.0.0" version = "6.1.0"
dependencies = [ dependencies = [
"clap", "clap",
"czkawka_core", "czkawka_core",
@ -533,7 +533,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_core" name = "czkawka_core"
version = "6.0.0" version = "6.1.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"audio_checker", "audio_checker",
@ -579,7 +579,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_gui" name = "czkawka_gui"
version = "6.0.0" version = "6.1.0"
dependencies = [ dependencies = [
"chrono", "chrono",
"crossbeam-channel", "crossbeam-channel",

@ -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) - 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) - 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) - 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) - 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) - 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) - 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 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) - 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 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) - Fixed printing info about duplicated video files - [#1017](https://github.com/qarmin/czkawka/pull/1017)

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_cli" name = "czkawka_cli"
version = "6.0.0" version = "6.1.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021" edition = "2021"
rust-version = "1.70.0" rust-version = "1.70.0"
@ -18,7 +18,7 @@ image_hasher = "1.2"
log = "0.4.20" log = "0.4.20"
handsome_logger = "0.8" handsome_logger = "0.8"
fun_time = { version = "0.3.1", features = ["log"] } 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] [features]
default = [] default = []

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_core" name = "czkawka_core"
version = "6.0.0" version = "6.1.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021" edition = "2021"
rust-version = "1.70.0" rust-version = "1.70.0"

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_gui" name = "czkawka_gui"
version = "6.0.0" version = "6.1.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021" edition = "2021"
rust-version = "1.70.0" rust-version = "1.70.0"
@ -53,7 +53,7 @@ log = "0.4.20"
handsome_logger = "0.8" handsome_logger = "0.8"
fun_time = { version = "0.3.1", features = ["log"] } 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"] } gtk4 = { version = "0.7", default-features = false, features = ["v4_6"] }
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]

@ -11,6 +11,6 @@ This program is free to use and will always be.
<property name="license-type">mit-x11</property> <property name="license-type">mit-x11</property>
<property name="logo-icon-name">help-about-symbolic</property> <property name="logo-icon-name">help-about-symbolic</property>
<property name="program-name">Czkawka</property> <property name="program-name">Czkawka</property>
<property name="version">6.0.0</property> <property name="version">6.1.0</property>
</object> </object>
</interface> </interface>

@ -347,7 +347,7 @@
(3,1,"GtkAboutDialog","license-type","mit-x11",None,None,None,None,None,None,None,None,None), (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","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","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,"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,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), (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","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,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","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,"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,"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), (5,178,"GtkWidget","focusable","1",None,None,None,None,None,None,None,None,None),

@ -1149,7 +1149,7 @@
<property name="editable">0</property> <property name="editable">0</property>
<property name="focusable">1</property> <property name="focusable">1</property>
<property name="has-frame">0</property> <property name="has-frame">0</property>
<property name="text" translatable="yes">Czkawka 6.0.0</property> <property name="text" translatable="yes">Czkawka 6.1.0</property>
<property name="xalign">1</property> <property name="xalign">1</property>
</object> </object>
</child> </child>

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_slint" name = "czkawka_slint"
version = "6.0.0" version = "6.1.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021" edition = "2021"
rust-version = "1.72.1" rust-version = "1.72.1"

@ -19,7 +19,7 @@
</screenshot> </screenshot>
</screenshots> </screenshots>
<releases> <releases>
<release version="6.0.0" date="2023-06-11"/> <release version="6.1.0" date="2023-10-15"/>
</releases> </releases>
<content_rating type="oars-1.0"/> <content_rating type="oars-1.0"/>
<developer_name>Rafał Mikrut</developer_name> <developer_name>Rafał Mikrut</developer_name>

@ -85,7 +85,7 @@ Install the GUI version on Linux:
```shell ```shell
# download # 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 # mark as executable
chmod +x ~/.local/bin/linux_czkawka_gui chmod +x ~/.local/bin/linux_czkawka_gui
# run # run

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

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

@ -1,6 +1,6 @@
name: czkawka # you probably want to 'snapcraft register <name>' name: czkawka # you probably want to 'snapcraft register <name>'
base: core22 # the base snap is the execution environment for this snap 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 summary: Czkawka - fast data cleaner written in Rust # 79 char long summary
description: | 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. 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: parts:
rust-deps: rust-deps:
plugin: nil 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: czkawka:
plugin: rust plugin: rust
after: [ rust-deps ] after: [ rust-deps ]

Loading…
Cancel
Save