Skip to content

Commit 2326072

Browse files
committed
Release version 1.2.1
1 parent aa63a14 commit 2326072

File tree

9 files changed

+20
-14
lines changed

9 files changed

+20
-14
lines changed

Cargo.lock

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

Changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Version 1.2.1 - 17.10.2020r
2+
- Make image similarity search significantly faster. [#72](https://github.com/qarmin/czkawka/pull/72)
3+
- Improve similar images GUI a little and add sorting to Similarity Enum [#73](https://github.com/qarmin/czkawka/pull/73)
4+
- Improve deleting files in Similar files in GUI [#75](https://github.com/qarmin/czkawka/pull/75)
5+
16
## Version 1.2.0 - 15.10.2020r
27
- Replace String with PathBuf for paths [#59](https://github.com/qarmin/czkawka/pull/59)
38
- Add test suite to PR [#65](https://github.com/qarmin/czkawka/pull/65)

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ But the most important thing for me was to learn Rust and create a program usefu
2828
- Big Files - Finds provided number of the biggest files in given location
2929
- Empty Files - Looks for empty files across disk
3030
- Temporary Files - Allows finding temporary files
31+
- Similar Files - Finds files which are not exactly the same
3132

3233
## Usage and requirements
3334
### Requirements

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.2.0"
3+
version = "1.2.1"
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.2.0"
3+
version = "1.2.1"
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.2.0"
3+
version = "1.2.1"
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.2.0"
3+
version = "1.2.1"
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.2.0"
2+
NUMBER="1.2.1"
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.2.0"
2+
NUMBER="1.2.1"
33
CZKAWKA_PATH="/home/rafal"
44

55
cd "$CZKAWKA_PATH"

0 commit comments

Comments
 (0)