Skip to content

Commit 4eefe11

Browse files
committed
Release 2.1.0
1 parent a8c0a80 commit 4eefe11

File tree

10 files changed

+22
-12
lines changed

10 files changed

+22
-12
lines changed

Cargo.lock

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

Changelog.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Version 2.1.0 - 31.12.2020r
2+
- Hide preview when deleting images or symlinking it - [#167](https://github.com/qarmin/czkawka/pull/167)
3+
- Add manual adding of directories - [#165](https://github.com/qarmin/czkawka/pull/165), [#168](https://github.com/qarmin/czkawka/pull/168)
4+
- Add resizable top panel - [#164](https://github.com/qarmin/czkawka/pull/164)
5+
- Add support for delete button - [#159](https://github.com/qarmin/czkawka/pull/159)
6+
- Allow to select multiple entries in File Chooser - [#154](https://github.com/qarmin/czkawka/pull/154)
7+
- Add cache support for similar images - [#139](https://github.com/qarmin/czkawka/pull/139)
8+
- Add selecting images with it's size - [#138](https://github.com/qarmin/czkawka/pull/138)
9+
- Modernize popovers code and simplify later changes - [#137](https://github.com/qarmin/czkawka/pull/137)
10+
111
## Version 2.0.0 - 23.12.2020r
212
- Add Snap support - [ee3d4](https://github.com/qarmin/czkawka/commit/ee3d450552cd0c37a114b05c557ff9381ef92466)
313
- Select longer names by default - [#113](https://github.com/qarmin/czkawka/pull/113)

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.0.0"
3+
version = "2.1.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.0.0"
3+
version = "2.1.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.0.0"
3+
version = "2.1.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
@@ -2387,7 +2387,7 @@ Author: Rafał Mikrut
23872387
<property name="can_focus">True</property>
23882388
<property name="editable">False</property>
23892389
<property name="has_frame">False</property>
2390-
<property name="text" translatable="yes">Czkawka 2.0.0</property>
2390+
<property name="text" translatable="yes">Czkawka 2.1.0</property>
23912391
<property name="xalign">1</property>
23922392
<property name="shadow_type">none</property>
23932393
<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.0.0"
2+
NUMBER="2.1.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.0.0"
2+
NUMBER="2.1.0"
33
CZKAWKA_PATH="/home/rafal"
44

55
cd "$CZKAWKA_PATH"

snap/local/CreateSnap.sh

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

55
cd "$CZKAWKA_PATH"

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: '2.0.0' # just for humans, typically '1.2+git' or '1.3.2'
3+
version: '2.1.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: 2.0.0
16+
source-tag: 2.1.0
1717
build-packages:
1818
- libgtk-3-dev
1919
- curl

0 commit comments

Comments
 (0)