Skip to content

Commit e6a6e55

Browse files
committed
Release 1.5.0
1 parent 10c9fcd commit e6a6e55

File tree

9 files changed

+16
-12
lines changed

9 files changed

+16
-12
lines changed

Cargo.lock

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

Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Version 1.5.0 - 02.12.2020r
2+
- Added progress bar - [#106](https://github.com/qarmin/czkawka/pull/106)
3+
- Removed unused buttons - [#107](https://github.com/qarmin/czkawka/pull/107)
4+
15
## Version 1.4.0 - 09.11.2020r
26
- 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)
37
- Simplify GUI code [#96](https://github.com/qarmin/czkawka/pull/96)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ But the most important thing for me was to learn Rust and create a program usefu
1515

1616
## Features
1717
- Written in memory safe Rust
18-
- Amazingly fast - due using more or less advanced algorithms
18+
- Amazingly fast - due using more or less advanced algorithms and multithreading support
1919
- CLI frontend, very fast and powerful with rich help
2020
- GUI GTK frontend - uses modern GTK 3 and looks similar to FSlint
21-
- Light/Dark theme match the appearance of the system
21+
- Light/Dark theme match the appearance of the system(Linux only)
2222
- Saving results to a file - allows reading entries found by the tool easily
2323
- Rich search option - allows setting absolute included and excluded directories, set of allowed file extensions or excluded items with * wildcard
2424
- Clean Glade file in which UI can be easily modernized

czkawka_cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_cli"
3-
version = "1.4.0"
3+
version = "1.5.0"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2018"
66
description = "CLI frontend of Czkawka"

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 = "1.4.0"
3+
version = "1.5.0"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2018"
66
description = "Core of Czkawka app"

czkawka_gui/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_gui"
3-
version = "1.4.0"
3+
version = "1.5.0"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2018"
66
description = "GTK frontend of Czkawka"

czkawka_gui_orbtk/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_gui_orbtk"
3-
version = "1.4.0"
3+
version = "1.5.0"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2018"
66
description = "Orbtk frontend of Czkawka"

misc/cargo/PublishCore.sh

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

55
cd "$CZKAWKA_PATH"

misc/cargo/PublishOther.sh

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

55
cd "$CZKAWKA_PATH"

0 commit comments

Comments
 (0)