Skip to content

Commit 943f8f7

Browse files
committed
Release 2.3.0
1 parent e1beaee commit 943f8f7

File tree

10 files changed

+40
-45
lines changed

10 files changed

+40
-45
lines changed

Cargo.lock

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

Changelog.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## Version 2.3.0 - 15.01.2021r
2+
- Add cache for duplicate finder - [#205](https://github.com/qarmin/czkawka/pull/205)
3+
- Add cache for broken files - [#204](https://github.com/qarmin/czkawka/pull/204)
4+
- Decrease ram usage - [#212](https://github.com/qarmin/czkawka/pull/212)
5+
- Add support for finding broken zip and audio files - [#210](https://github.com/qarmin/czkawka/pull/210)
6+
- Sort Results by path where it is possible - [#211](https://github.com/qarmin/czkawka/pull/211)
7+
- Add missing popover info for invalid symlinks - [#209](https://github.com/qarmin/czkawka/pull/209)
8+
- Use the oldest available OS in Linux and Mac CI and the newest on Windows - [#206](https://github.com/qarmin/czkawka/pull/206)
9+
- Add broken files support - [#202](https://github.com/qarmin/czkawka/pull/202)
10+
- Remove save workaround and fix crashes when loading/saving cache - [#200](https://github.com/qarmin/czkawka/pull/200)
11+
- Fix error when closing dialog progress by X - [#199](https://github.com/qarmin/czkawka/pull/199)
12+
113
## Version 2.2.0 - 11.01.2021r
214
- Adds Mac GUI - [#160](https://github.com/qarmin/czkawka/pull/160)
315
- Use master gtk plugin again - [#179](https://github.com/qarmin/czkawka/pull/179)

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

czkawka_gui/czkawka.glade

+1-1
Original file line numberDiff line numberDiff line change
@@ -2411,7 +2411,7 @@ Author: Rafał Mikrut
24112411
<property name="can_focus">True</property>
24122412
<property name="editable">False</property>
24132413
<property name="has_frame">False</property>
2414-
<property name="text" translatable="yes">Czkawka 2.2.0</property>
2414+
<property name="text" translatable="yes">Czkawka 2.3.0</property>
24152415
<property name="xalign">1</property>
24162416
<property name="shadow_type">none</property>
24172417
<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="2.2.0"
2+
NUMBER="2.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="2.2.0"
2+
NUMBER="2.3.0"
33
CZKAWKA_PATH="/home/rafal"
44

55
cd "$CZKAWKA_PATH"

snap/local/CreateSnap.sh

-17
This file was deleted.

snap/snapcraft.yaml

+1-1
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: '2.2.0' # just for humans, typically '1.2+git' or '1.3.2'
3+
version: '2.3.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.

0 commit comments

Comments
 (0)