1
0
Fork 0
mirror of synced 2024-05-17 10:54:04 +12:00

Release 1.5.0

This commit is contained in:
Rafał Mikrut 2020-12-02 12:01:30 +01:00
parent 10c9fcd10b
commit e6a6e5567b
9 changed files with 16 additions and 12 deletions

8
Cargo.lock generated
View file

@ -408,7 +408,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_cli" name = "czkawka_cli"
version = "1.4.0" version = "1.5.0"
dependencies = [ dependencies = [
"czkawka_core", "czkawka_core",
"structopt", "structopt",
@ -416,7 +416,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_core" name = "czkawka_core"
version = "1.4.0" version = "1.5.0"
dependencies = [ dependencies = [
"audiotags", "audiotags",
"bitflags", "bitflags",
@ -433,7 +433,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_gui" name = "czkawka_gui"
version = "1.4.0" version = "1.5.0"
dependencies = [ dependencies = [
"chrono", "chrono",
"crossbeam-channel 0.4.4", "crossbeam-channel 0.4.4",
@ -449,7 +449,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_gui_orbtk" name = "czkawka_gui_orbtk"
version = "1.4.0" version = "1.5.0"
dependencies = [ dependencies = [
"czkawka_core", "czkawka_core",
"orbtk", "orbtk",

View file

@ -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 ## 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) - 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) - Simplify GUI code [#96](https://github.com/qarmin/czkawka/pull/96)

View file

@ -15,10 +15,10 @@ But the most important thing for me was to learn Rust and create a program usefu
## Features ## Features
- Written in memory safe Rust - 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 - CLI frontend, very fast and powerful with rich help
- GUI GTK frontend - uses modern GTK 3 and looks similar to FSlint - 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 - 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 - 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 - Clean Glade file in which UI can be easily modernized

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_cli" name = "czkawka_cli"
version = "1.4.0" version = "1.5.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "CLI frontend of Czkawka" description = "CLI frontend of Czkawka"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_core" name = "czkawka_core"
version = "1.4.0" version = "1.5.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "Core of Czkawka app" description = "Core of Czkawka app"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_gui" name = "czkawka_gui"
version = "1.4.0" version = "1.5.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "GTK frontend of Czkawka" description = "GTK frontend of Czkawka"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_gui_orbtk" name = "czkawka_gui_orbtk"
version = "1.4.0" version = "1.5.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "Orbtk frontend of Czkawka" description = "Orbtk frontend of Czkawka"

View file

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
NUMBER="1.4.0" NUMBER="1.5.0"
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="1.4.0" NUMBER="1.5.0"
CZKAWKA_PATH="/home/rafal" CZKAWKA_PATH="/home/rafal"
cd "$CZKAWKA_PATH" cd "$CZKAWKA_PATH"