Skip to content

Commit 8109a82

Browse files
authored
Version 7.0.0 (#1212)
1 parent 51b8022 commit 8109a82

File tree

11 files changed

+32
-18
lines changed

11 files changed

+32
-18
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ Very helpful in this situation will be logs from czkawka run with RUST_LOG envir
2525
<details>
2626
<summary>Debug log</summary>
2727
28-
# PUT LOGS HERE
28+
# UNCOMMENT DETAILS AND PUT LOGS HERE
2929
3030
</details>
3131
```
3232

3333

3434
**System**
3535

36-
- Czkawka/Krokie version: <!-- e.g. 6.1.0 cli/gui -->
36+
- Czkawka/Krokiet version: <!-- e.g. 7.0.0 cli/gui -->
3737
- OS version: <!-- e.g Ubuntu 22.04, Windows 11, Mac 15.1 ARM -->
3838
- Installation method: <!-- e.g. github binaries, snap, flatpak, msys2 -->
3939

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

czkawka_cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_cli"
3-
version = "6.1.0"
3+
version = "7.0.0"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.74.0"
@@ -18,7 +18,7 @@ image_hasher = "1.2"
1818
log = "0.4.20"
1919
handsome_logger = "0.8"
2020
fun_time = { version = "0.3", features = ["log"] }
21-
czkawka_core = { path = "../czkawka_core", version = "6.1.0", features = [] }
21+
czkawka_core = { path = "../czkawka_core", version = "7.0.0", features = [] }
2222
indicatif = "0.17"
2323
crossbeam-channel = { version = "0.5", features = [] }
2424
ctrlc = { version = "3.4", features = ["termination"] }

czkawka_core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_core"
3-
version = "6.1.0"
3+
version = "7.0.0"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.74.0"

czkawka_gui/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_gui"
3-
version = "6.1.0"
3+
version = "7.0.0"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.74.0"
@@ -52,7 +52,7 @@ handsome_logger = "0.8"
5252
fun_time = { version = "0.3", features = ["log"] }
5353
rayon = "1.8"
5454

55-
czkawka_core = { path = "../czkawka_core", version = "6.1.0", features = [] }
55+
czkawka_core = { path = "../czkawka_core", version = "7.0.0", features = [] }
5656

5757
[target.'cfg(windows)'.dependencies]
5858
winapi = { version = "0.3.9", features = ["combaseapi", "objbase", "shobjidl_core", "windef", "winerror", "wtypesbase", "winuser"] }

czkawka_gui/ui/czkawka.cmb

+1-1
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@
349349
(3,1,"GtkAboutDialog","license-type","mit-x11",None,None,None,None,None,None,None,None,None),
350350
(3,1,"GtkAboutDialog","logo-icon-name","help-about-symbolic",None,None,None,None,None,None,None,None,None),
351351
(3,1,"GtkAboutDialog","program-name","Czkawka",None,None,None,None,None,None,None,None,None),
352-
(3,1,"GtkAboutDialog","version","6.1.0",None,None,None,None,None,None,None,None,None),
352+
(3,1,"GtkAboutDialog","version","7.0.0",None,None,None,None,None,None,None,None,None),
353353
(4,2,"GtkOrientable","orientation","vertical",None,None,None,None,None,None,None,None,None),
354354
(4,2,"GtkWidget","vexpand","1",None,None,None,None,None,None,None,None,None),
355355
(4,4,"GtkLabel","label","Group XD/PER XD (99 images in current group)",1,None,None,None,None,None,None,None,None),

data/com.github.qarmin.czkawka.metainfo.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</screenshot>
2020
</screenshots>
2121
<releases>
22-
<release version="6.1.0" date="2023-10-15"/>
22+
<release version="7.0.0" date="2023-10-15"/>
2323
</releases>
2424
<content_rating type="oars-1.0"/>
2525
<developer_name>Rafał Mikrut</developer_name>

krokiet/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "krokiet"
3-
version = "6.1.0"
3+
version = "7.0.0"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.74.0"
@@ -12,7 +12,7 @@ build = "build.rs"
1212

1313
[dependencies]
1414
rand = "0.8"
15-
czkawka_core = { version = "6.1.0", path = "../czkawka_core" }
15+
czkawka_core = { version = "7.0.0", path = "../czkawka_core" }
1616
chrono = "0.4.34"
1717
open = "5.0"
1818
crossbeam-channel = "0.5"

misc/cargo/PublishCore.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
NUMBER="6.1.0"
2+
NUMBER="7.0.0"
33
CZKAWKA_PATH="/home/rafal"
44

55
cd "$CZKAWKA_PATH"

misc/cargo/PublishOther.sh

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
NUMBER="6.1.0"
2+
NUMBER="7.0.0"
33
CZKAWKA_PATH="/home/rafal"
44

55
cd "$CZKAWKA_PATH"
@@ -29,6 +29,15 @@ then
2929
fi
3030
git reset --hard
3131

32+
cd "$CZKAWKA_PATH/krokiet"
33+
cargo package
34+
if [ $(echo $?) != "0" ]
35+
then
36+
echo "Cargo package failed krokiet"
37+
exit 1
38+
fi
39+
git reset --hard
40+
3241

3342

3443

@@ -41,3 +50,8 @@ cd "$CZKAWKA_PATH/czkawka_gui"
4150
# sed -i "s/{ path = \"..\/czkawka_core\" }/\"=$NUMBER\"/g" "$CZKAWKA_PATH/czkawka_gui/Cargo.toml"
4251
cargo publish # --allow-dirty
4352
git reset --hard
53+
54+
cd "$CZKAWKA_PATH/krokiet"
55+
# sed -i "s/{ path = \"..\/czkawka_core\" }/\"=$NUMBER\"/g" "$CZKAWKA_PATH/czkawka_gui/Cargo.toml"
56+
cargo publish # --allow-dirty
57+
git reset --hard

snap/snapcraft.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: czkawka # you probably want to 'snapcraft register <name>'
22
base: core22 # the base snap is the execution environment for this snap
3-
version: '6.1.0' # just for humans, typically '1.2+git' or '1.3.2'
3+
version: '7.0.0' # just for humans, typically '1.2+git' or '1.3.2'
44
summary: Czkawka - fast data cleaner written in Rust # 79 char long summary
55
description: |
66
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.

0 commit comments

Comments
 (0)