Skip to content

Commit 123bba3

Browse files
committed
Release 2.0.0
1 parent 05c8153 commit 123bba3

File tree

10 files changed

+57
-62
lines changed

10 files changed

+57
-62
lines changed

Cargo.lock

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

Changelog.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## Version 2.0.0 - 23.12.2020r
2+
- Add Snap support - [ee3d4](https://github.com/qarmin/czkawka/commit/ee3d450552cd0c37a114b05c557ff9381ef92466)
3+
- Select longer names by default - [#113](https://github.com/qarmin/czkawka/pull/113)
4+
- Add setting for deletion confirmation dialog - [#114](https://github.com/qarmin/czkawka/pull/114)
5+
- Add button to hide/show text view errors - [#115](https://github.com/qarmin/czkawka/pull/115)
6+
- Remove console window in Windows - [#116](https://github.com/qarmin/czkawka/pull/116)
7+
- Add custom selection/unselection - [#117](https://github.com/qarmin/czkawka/pull/117)
8+
- Add Image preview to similar images - [#118](https://github.com/qarmin/czkawka/pull/118)
9+
- Remove orbtk frontend - [#119](https://github.com/qarmin/czkawka/pull/119)
10+
- Update Icon - [#120](https://github.com/qarmin/czkawka/pull/120)
11+
- Add setting button to disable/enable previews(enabled by default) - [#121](https://github.com/qarmin/czkawka/pull/121)
12+
- Add button to enable/disable in settings text view errors - [#122](https://github.com/qarmin/czkawka/pull/122)
13+
- Add support for symbolic links - [#123](https://github.com/qarmin/czkawka/pull/123)
14+
- Add support for checking for invalid symlinks - [#124](https://github.com/qarmin/czkawka/pull/124)
15+
- Add new windows dark theme - [#125](https://github.com/qarmin/czkawka/pull/125)
16+
- Fix appimage crash by adding PNG version of icon - [#126](https://github.com/qarmin/czkawka/pull/126)
17+
- Split symlink path to two path and file name - [#127](https://github.com/qarmin/czkawka/pull/127)
18+
- Add option to open folders by double right click - [#128](https://github.com/qarmin/czkawka/pull/128)
19+
- Add minimal similarity level - [#129](https://github.com/qarmin/czkawka/pull/129)
20+
- Show errors in image previewer when failed to generate it - [#130](https://github.com/qarmin/czkawka/pull/130)
21+
- Added instruction - [58e6221a](https://github.com/qarmin/czkawka/commit/58e6221a0e02d17d07c71152f56b948f616751a8), [598aec345e](https://github.com/qarmin/czkawka/commit/598aec345e9f5ac199fc3d642c0699d5228100a6), [afaa402b](https://github.com/qarmin/czkawka/commit/afaa402b31526aa8e6b47f3670bc62b26ad9f60f)
22+
123
## Version 1.5.1 - 08.12.2020r
224
- Fix errors in progress bar caused by dividing by 0 - [#109](https://github.com/qarmin/czkawka/pull/109)
325
- Add option to save file, store settings and load them - [#108](https://github.com/qarmin/czkawka/pull/108)

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.5.1"
3+
version = "2.0.0"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2018"
66
description = "CLI frontend of Czkawka"

czkawka_core/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_core"
3-
version = "1.5.1"
3+
version = "2.0.0"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2018"
66
description = "Core of Czkawka app"
@@ -13,13 +13,13 @@ repository = "https://github.com/qarmin/czkawka"
1313
humansize = "1"
1414
blake3 = "0.3"
1515
rayon = "1"
16-
crossbeam-channel = "0.4.4"
16+
crossbeam-channel = "0.5.0"
1717

1818

1919
# Needed by similar images
2020
img_hash = "3.1"
2121
bk-tree = "0.3"
22-
image = "0.23"
22+
image = "0.23.12"
2323
hamming = "0.1"
2424

2525
# Needed by same music

czkawka_gui/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_gui"
3-
version = "1.5.1"
3+
version = "2.0.0"
44
authors = ["Rafał Mikrut <[email protected]>"]
55
edition = "2018"
66
description = "GTK frontend of Czkawka"
@@ -17,7 +17,7 @@ humansize = "1"
1717
chrono = "0.4"
1818

1919
# Used for sending stop signal across threads
20-
crossbeam-channel = "0.4.4"
20+
crossbeam-channel = "0.5"
2121

2222
# To get informations about progress
2323
futures = "0.3.8"
@@ -29,7 +29,7 @@ directories-next = "2.0.0"
2929
open = "1.4.0"
3030

3131
# To get image preview
32-
image = "0.23"
32+
image = "0.23.12"
3333

3434
[dependencies.gtk]
3535
version = "0.9.2"

czkawka_gui/czkawka.glade

+1-1
Original file line numberDiff line numberDiff line change
@@ -2394,7 +2394,7 @@ Author: Rafał Mikrut
23942394
<property name="can_focus">True</property>
23952395
<property name="editable">False</property>
23962396
<property name="has_frame">False</property>
2397-
<property name="text" translatable="yes">Czkawka 1.5.1</property>
2397+
<property name="text" translatable="yes">Czkawka 2.0.0</property>
23982398
<property name="xalign">1</property>
23992399
<property name="shadow_type">none</property>
24002400
<property name="caps_lock_warning">False</property>

misc/cargo/PublishCore.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
NUMBER="1.5.1"
2+
NUMBER="2.0.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.5.1"
2+
NUMBER="2.0.0"
33
CZKAWKA_PATH="/home/rafal"
44

55
cd "$CZKAWKA_PATH"

misc/snap/local/CreateSnap.sh

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

55
cd "$CZKAWKA_PATH"

misc/snap/snapcraft.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: czkawka # you probably want to 'snapcraft register <name>'
22
base: core18 # the base snap is the execution environment for this snap
3-
version: '1.5.1' # just for humans, typically '1.2+git' or '1.3.2'
3+
version: '2.0.0' # just for humans, typically '1.2+git' or '1.3.2'
44
summary: Czkawka - fast data cleaner written in Rust # 79 char long summary
55
description: |
66
Czkawka is very fast and feature rich cleaner which finds file duplicates, empty folders and files, duplicated music, similar images or the biggest files in selected directories.
@@ -13,7 +13,7 @@ parts:
1313
czkawka:
1414
plugin: nil
1515
source: https://github.com/qarmin/czkawka.git
16-
source-tag: 1.5.1
16+
source-tag: 2.0.0
1717
build-packages:
1818
- libgtk-3-dev
1919
- curl

0 commit comments

Comments
 (0)