1
0
Fork 0
mirror of synced 2024-05-03 20:14:00 +12:00

Release 5.0.2 version

This commit is contained in:
Rafał Mikrut 2022-08-30 19:32:33 +02:00
parent d29935d208
commit f16818dc8e
12 changed files with 33 additions and 25 deletions

25
Cargo.lock generated
View file

@ -68,9 +68,9 @@ dependencies = [
[[package]] [[package]]
name = "android_system_properties" name = "android_system_properties"
version = "0.1.4" version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7ed72e1635e121ca3e79420540282af22da58be50de153d36f81ddc6b83aa9e" checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [ dependencies = [
"libc", "libc",
] ]
@ -482,7 +482,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_cli" name = "czkawka_cli"
version = "5.0.1" version = "5.0.2"
dependencies = [ dependencies = [
"clap", "clap",
"czkawka_core", "czkawka_core",
@ -491,7 +491,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_core" name = "czkawka_core"
version = "5.0.1" version = "5.0.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"audio_checker", "audio_checker",
@ -531,7 +531,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_gui" name = "czkawka_gui"
version = "5.0.1" version = "5.0.2"
dependencies = [ dependencies = [
"chrono", "chrono",
"crossbeam-channel", "crossbeam-channel",
@ -1328,13 +1328,14 @@ dependencies = [
[[package]] [[package]]
name = "iana-time-zone" name = "iana-time-zone"
version = "0.1.46" version = "0.1.47"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad2bfd338099682614d3ee3fe0cd72e0b6a41ca6a87f6a74a3bd593c91650501" checksum = "4c495f162af0bf17656d0014a0eded5f3cd2f365fdd204548c2869db89359dc7"
dependencies = [ dependencies = [
"android_system_properties", "android_system_properties",
"core-foundation-sys", "core-foundation-sys",
"js-sys", "js-sys",
"once_cell",
"wasm-bindgen", "wasm-bindgen",
"winapi", "winapi",
] ]
@ -1889,7 +1890,7 @@ dependencies = [
"digest 0.10.3", "digest 0.10.3",
"hmac", "hmac",
"password-hash", "password-hash",
"sha2 0.10.2", "sha2 0.10.3",
] ]
[[package]] [[package]]
@ -2394,9 +2395,9 @@ dependencies = [
[[package]] [[package]]
name = "sha1" name = "sha1"
version = "0.10.1" version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c77f4e7f65455545c2153c1253d25056825e77ee2533f0e41deb65a93a34852f" checksum = "5cf2781a4ca844dd4f9b608a1791eea19830df0ad3cdd9988cd05f1c66ccb63a"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"cpufeatures", "cpufeatures",
@ -2418,9 +2419,9 @@ dependencies = [
[[package]] [[package]]
name = "sha2" name = "sha2"
version = "0.10.2" version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676" checksum = "899bf02746a2c92bf1053d9327dadb252b01af1f81f90cdb902411f518bc7215"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"cpufeatures", "cpufeatures",

View file

@ -1,3 +1,10 @@
## Version 5.0.2 - 30.08.2022r
- Fixed problem with missing some similar images when using similarity > 0 - [#799](https://github.com/qarmin/czkawka/pull/799)
- Prebuilt Linux binaries are compiled without heif support - [24b](https://github.com/qarmin/czkawka/commit/24b64a32c65904c506b54270f0977ccbe5098cc8)
- Similar videos stops to proceed video after certain amount of time(fixes freezes) - [#815](https://github.com/qarmin/czkawka/pull/815)
- Add --version argument for czkawka_cli - [#806](https://github.com/qarmin/czkawka/pull/806)
- Rewrite a little nonsense message about minimal file size - [#807](https://github.com/qarmin/czkawka/pull/807)
## Version 5.0.1 - 03.08.2022r ## Version 5.0.1 - 03.08.2022r
- Fixed problem with removing ending slash with empty disk window path - [975](https://github.com/qarmin/czkawka/commit/97563a7b2a70fb5fcf6463f28069e6ea3b0ff5c2) - Fixed problem with removing ending slash with empty disk window path - [975](https://github.com/qarmin/czkawka/commit/97563a7b2a70fb5fcf6463f28069e6ea3b0ff5c2)
- Added to CLI bad extensions mode - [#795](https://github.com/qarmin/czkawka/pull/795) - Added to CLI bad extensions mode - [#795](https://github.com/qarmin/czkawka/pull/795)

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_cli" name = "czkawka_cli"
version = "5.0.1" version = "5.0.2"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021" edition = "2021"
rust-version = "1.60" rust-version = "1.60"
@ -17,7 +17,7 @@ image_hasher = "1.0.0"
[dependencies.czkawka_core] [dependencies.czkawka_core]
path = "../czkawka_core" path = "../czkawka_core"
version = "5.0.1" version = "5.0.2"
features = [] features = []
[features] [features]

View file

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

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_gui" name = "czkawka_gui"
version = "5.0.1" version = "5.0.2"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021" edition = "2021"
rust-version = "1.60" rust-version = "1.60"
@ -59,7 +59,7 @@ features = ["v4_6"]
[dependencies.czkawka_core] [dependencies.czkawka_core]
path = "../czkawka_core" path = "../czkawka_core"
version = "5.0.1" version = "5.0.2"
features = [] features = []
[features] [features]

View file

@ -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">5.0.1</property> <property name="version">5.0.2</property>
</object> </object>
</interface> </interface>

View file

@ -321,7 +321,7 @@
(3,1,"GtkAboutDialog","license-type","mit-x11",None,None,None,None,None), (3,1,"GtkAboutDialog","license-type","mit-x11",None,None,None,None,None),
(3,1,"GtkAboutDialog","logo-icon-name","help-about-symbolic",None,None,None,None,None), (3,1,"GtkAboutDialog","logo-icon-name","help-about-symbolic",None,None,None,None,None),
(3,1,"GtkAboutDialog","program-name","Czkawka",None,None,None,None,None), (3,1,"GtkAboutDialog","program-name","Czkawka",None,None,None,None,None),
(3,1,"GtkAboutDialog","version","5.0.1",None,None,None,None,None), (3,1,"GtkAboutDialog","version","5.0.2",None,None,None,None,None),
(4,2,"GtkOrientable","orientation","vertical",None,None,None,None,None), (4,2,"GtkOrientable","orientation","vertical",None,None,None,None,None),
(4,2,"GtkWidget","vexpand","1",None,None,None,None,None), (4,2,"GtkWidget","vexpand","1",None,None,None,None,None),
(4,4,"GtkLabel","label","Group XD/PER XD (99 images in current group)",1,None,None,None,None), (4,4,"GtkLabel","label","Group XD/PER XD (99 images in current group)",1,None,None,None,None),
@ -660,7 +660,7 @@
(5,177,"GtkWidget","focusable","1",None,None,None,None,None), (5,177,"GtkWidget","focusable","1",None,None,None,None,None),
(5,177,"GtkWidget","hexpand","1",None,None,None,None,None), (5,177,"GtkWidget","hexpand","1",None,None,None,None,None),
(5,178,"GtkEditable","editable","0",None,None,None,None,None), (5,178,"GtkEditable","editable","0",None,None,None,None,None),
(5,178,"GtkEditable","text","Czkawka 5.0.1",1,None,None,None,None), (5,178,"GtkEditable","text","Czkawka 5.0.2",1,None,None,None,None),
(5,178,"GtkEditable","xalign","1",None,None,None,None,None), (5,178,"GtkEditable","xalign","1",None,None,None,None,None),
(5,178,"GtkEntry","has-frame","0",None,None,None,None,None), (5,178,"GtkEntry","has-frame","0",None,None,None,None,None),
(5,178,"GtkWidget","focusable","1",None,None,None,None,None), (5,178,"GtkWidget","focusable","1",None,None,None,None,None),

View file

@ -1081,7 +1081,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 5.0.1</property> <property name="text" translatable="yes">Czkawka 5.0.2</property>
<property name="xalign">1</property> <property name="xalign">1</property>
</object> </object>
</child> </child>

View file

@ -19,7 +19,7 @@
</screenshot> </screenshot>
</screenshots> </screenshots>
<releases> <releases>
<release version="5.0.1" date="2022-08-03"/> <release version="5.0.2" date="2022-08-30"/>
</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>

View file

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

View file

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

View file

@ -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: '5.0.1' # just for humans, typically '1.2+git' or '1.3.2' version: '5.0.2' # 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.