Skip to content

Commit

Permalink
Release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
qarmin committed Dec 31, 2020
1 parent a8c0a80 commit 4eefe11
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## Version 2.1.0 - 31.12.2020r
- Hide preview when deleting images or symlinking it - [#167](https://github.com/qarmin/czkawka/pull/167)
- Add manual adding of directories - [#165](https://github.com/qarmin/czkawka/pull/165), [#168](https://github.com/qarmin/czkawka/pull/168)
- Add resizable top panel - [#164](https://github.com/qarmin/czkawka/pull/164)
- Add support for delete button - [#159](https://github.com/qarmin/czkawka/pull/159)
- Allow to select multiple entries in File Chooser - [#154](https://github.com/qarmin/czkawka/pull/154)
- Add cache support for similar images - [#139](https://github.com/qarmin/czkawka/pull/139)
- Add selecting images with it's size - [#138](https://github.com/qarmin/czkawka/pull/138)
- Modernize popovers code and simplify later changes - [#137](https://github.com/qarmin/czkawka/pull/137)

## Version 2.0.0 - 23.12.2020r
- Add Snap support - [ee3d4](https://github.com/qarmin/czkawka/commit/ee3d450552cd0c37a114b05c557ff9381ef92466)
- Select longer names by default - [#113](https://github.com/qarmin/czkawka/pull/113)
Expand Down
2 changes: 1 addition & 1 deletion czkawka_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "czkawka_cli"
version = "2.0.0"
version = "2.1.0"
authors = ["Rafał Mikrut <[email protected]>"]
edition = "2018"
description = "CLI frontend of Czkawka"
Expand Down
2 changes: 1 addition & 1 deletion czkawka_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "czkawka_core"
version = "2.0.0"
version = "2.1.0"
authors = ["Rafał Mikrut <[email protected]>"]
edition = "2018"
description = "Core of Czkawka app"
Expand Down
2 changes: 1 addition & 1 deletion czkawka_gui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "czkawka_gui"
version = "2.0.0"
version = "2.1.0"
authors = ["Rafał Mikrut <[email protected]>"]
edition = "2018"
description = "GTK frontend of Czkawka"
Expand Down
2 changes: 1 addition & 1 deletion czkawka_gui/czkawka.glade
Original file line number Diff line number Diff line change
Expand Up @@ -2387,7 +2387,7 @@ Author: Rafał Mikrut
<property name="can_focus">True</property>
<property name="editable">False</property>
<property name="has_frame">False</property>
<property name="text" translatable="yes">Czkawka 2.0.0</property>
<property name="text" translatable="yes">Czkawka 2.1.0</property>
<property name="xalign">1</property>
<property name="shadow_type">none</property>
<property name="caps_lock_warning">False</property>
Expand Down
2 changes: 1 addition & 1 deletion misc/cargo/PublishCore.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
NUMBER="2.0.0"
NUMBER="2.1.0"
CZKAWKA_PATH="/home/rafal"

cd "$CZKAWKA_PATH"
Expand Down
2 changes: 1 addition & 1 deletion misc/cargo/PublishOther.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
NUMBER="2.0.0"
NUMBER="2.1.0"
CZKAWKA_PATH="/home/rafal"

cd "$CZKAWKA_PATH"
Expand Down
2 changes: 1 addition & 1 deletion snap/local/CreateSnap.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bashmisc
NUMBER="2.0.0"
NUMBER="2.1.0"
CZKAWKA_PATH="/home/rafal"

cd "$CZKAWKA_PATH"
Expand Down
4 changes: 2 additions & 2 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: czkawka # you probably want to 'snapcraft register <name>'
base: core18 # the base snap is the execution environment for this snap
version: '2.0.0' # just for humans, typically '1.2+git' or '1.3.2'
version: '2.1.0' # just for humans, typically '1.2+git' or '1.3.2'
summary: Czkawka - fast data cleaner written in Rust # 79 char long summary
description: |
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.
Expand All @@ -13,7 +13,7 @@ parts:
czkawka:
plugin: nil
source: https://github.com/qarmin/czkawka.git
source-tag: 2.0.0
source-tag: 2.1.0
build-packages:
- libgtk-3-dev
- curl
Expand Down

0 comments on commit 4eefe11

Please sign in to comment.