Skip to content

Commit 1fb66b3

Browse files
committed
Release version 1.3.0
1 parent ecebb3a commit 1fb66b3

File tree

9 files changed

+25
-14
lines changed

9 files changed

+25
-14
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

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## Version 1.3.0 - 02.11.2020r
2+
- Appimage support - [#77](https://github.com/qarmin/czkawka/pull/77)
3+
- Removed warnings about non existend excluded directories - [#79](https://github.com/qarmin/czkawka/pull/79)
4+
- Updated README - [8ec](https://github.com/qarmin/czkawka/commit/8ecde0fc9adb3e6cedf432c4ba749e698b645a7a)
5+
- Added pre hash support(speedup for searching big duplicates) - [#83](https://github.com/qarmin/czkawka/pull/83)
6+
- Support for searching duplicates by file name - [#84](https://github.com/qarmin/czkawka/pull/84)
7+
- Added support for checking for zeroed file - [#88](https://github.com/qarmin/czkawka/pull/88)
8+
- Refactored GUI code to faster and safer changing/adding code - [#89](https://github.com/qarmin/czkawka/pull/89)
9+
- Added some missing options to CLI in some modes - [#90](https://github.com/qarmin/czkawka/pull/90)
10+
- Implemented finding duplicates by music tags - [#95](https://github.com/qarmin/czkawka/pull/95)
11+
112
## Version 1.2.1 - 17.10.2020r
213
- Make image similarity search significantly faster. [#72](https://github.com/qarmin/czkawka/pull/72)
314
- Improve similar images GUI a little and add sorting to Similarity Enum [#73](https://github.com/qarmin/czkawka/pull/73)

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ But the most important thing for me was to learn Rust and create a program usefu
3030
- Temporary Files - Allows finding temporary files
3131
- Similar Files - Finds files which are not exactly the same
3232
- Zeroed Files - Find files which are filled with zeros(usually corrupted)
33-
- Same Musc - Search for music with same artist, album etc.
33+
- Same Music - Search for music with same artist, album etc.
3434

3535
## Usage and requirements
3636

@@ -55,7 +55,7 @@ You can update package by typing same command.
5555
Maybe someday
5656

5757
### Debian/Ubuntu repository and PPA
58-
Tried to setup it, but for now I have problems described in this issue
58+
Tried to set up it, but for now I have problems described in this issue
5959

6060
https://salsa.debian.org/rust-team/debcargo-conf/-/issues/21
6161

@@ -111,9 +111,9 @@ cargo run --bin czkawka_cli
111111
## Benchmarks
112112
Since Czkawka is written in Rust and aims to be a faster alternative to FSlint (written in Python), we need to compare the speed of these tools.
113113

114-
I prepared a directory and performed a test without any folder exceptions(I removed all directories from FSlint and Czkawka from other tabs than Include Directory) which contained 320004 files and 36902 folders and 108844 duplicated files in 34475 groups which took 4.53 GB.
114+
I prepared a directory and performed a test without any folder exceptions(I removed all directories from FSlint and Czkawka from other tabs than Include Directory) which contained 320004 files and 36902 folders and 108844 duplicates files in 34475 groups which took 4.53 GB.
115115

116-
Minimum file size to check I set to 1KB on all programs
116+
Minimum file size to check I set to 1 KB on all programs
117117

118118
The first run reads every file entry and saves it to cache, so this step is limited mostly by disk performance. In the second run the cache helps it, so searching is sometimes faster (with few duplicates even 10x faster).
119119

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.1"
3+
version = "1.3.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.2.1"
3+
version = "1.3.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.2.1"
3+
version = "1.3.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.2.1"
3+
version = "1.3.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.2.1"
2+
NUMBER="1.3.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.2.1"
2+
NUMBER="1.3.0"
33
CZKAWKA_PATH="/home/rafal"
44

55
cd "$CZKAWKA_PATH"

0 commit comments

Comments
 (0)