From e6a6e5567bbe5310836931c32d7d9b9da4274306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Mikrut?= Date: Wed, 2 Dec 2020 12:01:30 +0100 Subject: [PATCH] Release 1.5.0 --- Cargo.lock | 8 ++++---- Changelog.md | 4 ++++ README.md | 4 ++-- czkawka_cli/Cargo.toml | 2 +- czkawka_core/Cargo.toml | 2 +- czkawka_gui/Cargo.toml | 2 +- czkawka_gui_orbtk/Cargo.toml | 2 +- misc/cargo/PublishCore.sh | 2 +- misc/cargo/PublishOther.sh | 2 +- 9 files changed, 16 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cc76bc0..a950544 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -408,7 +408,7 @@ dependencies = [ [[package]] name = "czkawka_cli" -version = "1.4.0" +version = "1.5.0" dependencies = [ "czkawka_core", "structopt", @@ -416,7 +416,7 @@ dependencies = [ [[package]] name = "czkawka_core" -version = "1.4.0" +version = "1.5.0" dependencies = [ "audiotags", "bitflags", @@ -433,7 +433,7 @@ dependencies = [ [[package]] name = "czkawka_gui" -version = "1.4.0" +version = "1.5.0" dependencies = [ "chrono", "crossbeam-channel 0.4.4", @@ -449,7 +449,7 @@ dependencies = [ [[package]] name = "czkawka_gui_orbtk" -version = "1.4.0" +version = "1.5.0" dependencies = [ "czkawka_core", "orbtk", diff --git a/Changelog.md b/Changelog.md index 4eaf2d6..31f52ea 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,7 @@ +## Version 1.5.0 - 02.12.2020r +- Added progress bar - [#106](https://github.com/qarmin/czkawka/pull/106) +- Removed unused buttons - [#107](https://github.com/qarmin/czkawka/pull/107) + ## Version 1.4.0 - 09.11.2020r - Multithreading Support to most modules - [#98](https://github.com/qarmin/czkawka/pull/98) [#99](https://github.com/qarmin/czkawka/pull/99) [#100](https://github.com/qarmin/czkawka/pull/100) [#101](https://github.com/qarmin/czkawka/pull/101) - Simplify GUI code [#96](https://github.com/qarmin/czkawka/pull/96) diff --git a/README.md b/README.md index 446aca7..5087178 100644 --- a/README.md +++ b/README.md @@ -15,10 +15,10 @@ But the most important thing for me was to learn Rust and create a program usefu ## Features - Written in memory safe Rust -- Amazingly fast - due using more or less advanced algorithms +- Amazingly fast - due using more or less advanced algorithms and multithreading support - CLI frontend, very fast and powerful with rich help - GUI GTK frontend - uses modern GTK 3 and looks similar to FSlint -- Light/Dark theme match the appearance of the system +- Light/Dark theme match the appearance of the system(Linux only) - Saving results to a file - allows reading entries found by the tool easily - Rich search option - allows setting absolute included and excluded directories, set of allowed file extensions or excluded items with * wildcard - Clean Glade file in which UI can be easily modernized diff --git a/czkawka_cli/Cargo.toml b/czkawka_cli/Cargo.toml index 19d9b79..92960dd 100644 --- a/czkawka_cli/Cargo.toml +++ b/czkawka_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_cli" -version = "1.4.0" +version = "1.5.0" authors = ["Rafał Mikrut "] edition = "2018" description = "CLI frontend of Czkawka" diff --git a/czkawka_core/Cargo.toml b/czkawka_core/Cargo.toml index c9a5b29..c2fd061 100644 --- a/czkawka_core/Cargo.toml +++ b/czkawka_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_core" -version = "1.4.0" +version = "1.5.0" authors = ["Rafał Mikrut "] edition = "2018" description = "Core of Czkawka app" diff --git a/czkawka_gui/Cargo.toml b/czkawka_gui/Cargo.toml index f2e0882..95bb7c5 100644 --- a/czkawka_gui/Cargo.toml +++ b/czkawka_gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_gui" -version = "1.4.0" +version = "1.5.0" authors = ["Rafał Mikrut "] edition = "2018" description = "GTK frontend of Czkawka" diff --git a/czkawka_gui_orbtk/Cargo.toml b/czkawka_gui_orbtk/Cargo.toml index 051b1b4..1c4e01e 100644 --- a/czkawka_gui_orbtk/Cargo.toml +++ b/czkawka_gui_orbtk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "czkawka_gui_orbtk" -version = "1.4.0" +version = "1.5.0" authors = ["Rafał Mikrut "] edition = "2018" description = "Orbtk frontend of Czkawka" diff --git a/misc/cargo/PublishCore.sh b/misc/cargo/PublishCore.sh index ed819c2..d264a63 100755 --- a/misc/cargo/PublishCore.sh +++ b/misc/cargo/PublishCore.sh @@ -1,5 +1,5 @@ #!/bin/bash -NUMBER="1.4.0" +NUMBER="1.5.0" CZKAWKA_PATH="/home/rafal" cd "$CZKAWKA_PATH" diff --git a/misc/cargo/PublishOther.sh b/misc/cargo/PublishOther.sh index 77deaa4..e1be442 100755 --- a/misc/cargo/PublishOther.sh +++ b/misc/cargo/PublishOther.sh @@ -1,5 +1,5 @@ #!/bin/bash -NUMBER="1.4.0" +NUMBER="1.5.0" CZKAWKA_PATH="/home/rafal" cd "$CZKAWKA_PATH"