Skip to content

Commit

Permalink
Version 7.0.0 (#1212)
Browse files Browse the repository at this point in the history
  • Loading branch information
qarmin authored Feb 19, 2024
1 parent 51b8022 commit 8109a82
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ Very helpful in this situation will be logs from czkawka run with RUST_LOG envir
<details>
<summary>Debug log</summary>
# PUT LOGS HERE
# UNCOMMENT DETAILS AND PUT LOGS HERE
</details>
```


**System**

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

Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions czkawka_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "czkawka_cli"
version = "6.1.0"
version = "7.0.0"
authors = ["Rafał Mikrut <[email protected]>"]
edition = "2021"
rust-version = "1.74.0"
Expand All @@ -18,7 +18,7 @@ image_hasher = "1.2"
log = "0.4.20"
handsome_logger = "0.8"
fun_time = { version = "0.3", features = ["log"] }
czkawka_core = { path = "../czkawka_core", version = "6.1.0", features = [] }
czkawka_core = { path = "../czkawka_core", version = "7.0.0", features = [] }
indicatif = "0.17"
crossbeam-channel = { version = "0.5", features = [] }
ctrlc = { version = "3.4", features = ["termination"] }
Expand Down
2 changes: 1 addition & 1 deletion czkawka_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "czkawka_core"
version = "6.1.0"
version = "7.0.0"
authors = ["Rafał Mikrut <[email protected]>"]
edition = "2021"
rust-version = "1.74.0"
Expand Down
4 changes: 2 additions & 2 deletions czkawka_gui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "czkawka_gui"
version = "6.1.0"
version = "7.0.0"
authors = ["Rafał Mikrut <[email protected]>"]
edition = "2021"
rust-version = "1.74.0"
Expand Down Expand Up @@ -52,7 +52,7 @@ handsome_logger = "0.8"
fun_time = { version = "0.3", features = ["log"] }
rayon = "1.8"

czkawka_core = { path = "../czkawka_core", version = "6.1.0", features = [] }
czkawka_core = { path = "../czkawka_core", version = "7.0.0", features = [] }

[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["combaseapi", "objbase", "shobjidl_core", "windef", "winerror", "wtypesbase", "winuser"] }
Expand Down
2 changes: 1 addition & 1 deletion czkawka_gui/ui/czkawka.cmb
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,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.1.0",None,None,None,None,None,None,None,None,None),
(3,1,"GtkAboutDialog","version","7.0.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),
Expand Down
2 changes: 1 addition & 1 deletion data/com.github.qarmin.czkawka.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</screenshot>
</screenshots>
<releases>
<release version="6.1.0" date="2023-10-15"/>
<release version="7.0.0" date="2023-10-15"/>
</releases>
<content_rating type="oars-1.0"/>
<developer_name>Rafał Mikrut</developer_name>
Expand Down
4 changes: 2 additions & 2 deletions krokiet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "krokiet"
version = "6.1.0"
version = "7.0.0"
authors = ["Rafał Mikrut <[email protected]>"]
edition = "2021"
rust-version = "1.74.0"
Expand All @@ -12,7 +12,7 @@ build = "build.rs"

[dependencies]
rand = "0.8"
czkawka_core = { version = "6.1.0", path = "../czkawka_core" }
czkawka_core = { version = "7.0.0", path = "../czkawka_core" }
chrono = "0.4.34"
open = "5.0"
crossbeam-channel = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion misc/cargo/PublishCore.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
NUMBER="6.1.0"
NUMBER="7.0.0"
CZKAWKA_PATH="/home/rafal"

cd "$CZKAWKA_PATH"
Expand Down
16 changes: 15 additions & 1 deletion misc/cargo/PublishOther.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
NUMBER="6.1.0"
NUMBER="7.0.0"
CZKAWKA_PATH="/home/rafal"

cd "$CZKAWKA_PATH"
Expand Down Expand Up @@ -29,6 +29,15 @@ then
fi
git reset --hard

cd "$CZKAWKA_PATH/krokiet"
cargo package
if [ $(echo $?) != "0" ]
then
echo "Cargo package failed krokiet"
exit 1
fi
git reset --hard




Expand All @@ -41,3 +50,8 @@ cd "$CZKAWKA_PATH/czkawka_gui"
# sed -i "s/{ path = \"..\/czkawka_core\" }/\"=$NUMBER\"/g" "$CZKAWKA_PATH/czkawka_gui/Cargo.toml"
cargo publish # --allow-dirty
git reset --hard

cd "$CZKAWKA_PATH/krokiet"
# sed -i "s/{ path = \"..\/czkawka_core\" }/\"=$NUMBER\"/g" "$CZKAWKA_PATH/czkawka_gui/Cargo.toml"
cargo publish # --allow-dirty
git reset --hard
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: czkawka # you probably want to 'snapcraft register <name>'
base: core22 # the base snap is the execution environment for this snap
version: '6.1.0' # just for humans, typically '1.2+git' or '1.3.2'
version: '7.0.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.
Expand Down

0 comments on commit 8109a82

Please sign in to comment.