1
0
Fork 0
mirror of synced 2024-05-17 02:43:36 +12:00

Release 2.1.0

This commit is contained in:
Rafał Mikrut 2020-12-31 10:29:36 +01:00
parent a8c0a80bcf
commit 4eefe114dd
10 changed files with 22 additions and 12 deletions

6
Cargo.lock generated
View file

@ -303,7 +303,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_cli" name = "czkawka_cli"
version = "2.0.0" version = "2.1.0"
dependencies = [ dependencies = [
"czkawka_core", "czkawka_core",
"structopt", "structopt",
@ -311,7 +311,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_core" name = "czkawka_core"
version = "2.0.0" version = "2.1.0"
dependencies = [ dependencies = [
"audiotags", "audiotags",
"bitflags", "bitflags",
@ -329,7 +329,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_gui" name = "czkawka_gui"
version = "2.0.0" version = "2.1.0"
dependencies = [ dependencies = [
"chrono", "chrono",
"crossbeam-channel", "crossbeam-channel",

View file

@ -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 ## Version 2.0.0 - 23.12.2020r
- Add Snap support - [ee3d4](https://github.com/qarmin/czkawka/commit/ee3d450552cd0c37a114b05c557ff9381ef92466) - Add Snap support - [ee3d4](https://github.com/qarmin/czkawka/commit/ee3d450552cd0c37a114b05c557ff9381ef92466)
- Select longer names by default - [#113](https://github.com/qarmin/czkawka/pull/113) - Select longer names by default - [#113](https://github.com/qarmin/czkawka/pull/113)

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_cli" name = "czkawka_cli"
version = "2.0.0" version = "2.1.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "CLI frontend of Czkawka" description = "CLI frontend of Czkawka"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_core" name = "czkawka_core"
version = "2.0.0" version = "2.1.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "Core of Czkawka app" description = "Core of Czkawka app"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_gui" name = "czkawka_gui"
version = "2.0.0" version = "2.1.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"] authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2018" edition = "2018"
description = "GTK frontend of Czkawka" description = "GTK frontend of Czkawka"

View file

@ -2387,7 +2387,7 @@ Author: Rafał Mikrut
<property name="can_focus">True</property> <property name="can_focus">True</property>
<property name="editable">False</property> <property name="editable">False</property>
<property name="has_frame">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="xalign">1</property>
<property name="shadow_type">none</property> <property name="shadow_type">none</property>
<property name="caps_lock_warning">False</property> <property name="caps_lock_warning">False</property>

View file

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
NUMBER="2.0.0" NUMBER="2.1.0"
CZKAWKA_PATH="/home/rafal" CZKAWKA_PATH="/home/rafal"
cd "$CZKAWKA_PATH" cd "$CZKAWKA_PATH"

View file

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
NUMBER="2.0.0" NUMBER="2.1.0"
CZKAWKA_PATH="/home/rafal" CZKAWKA_PATH="/home/rafal"
cd "$CZKAWKA_PATH" cd "$CZKAWKA_PATH"

View file

@ -1,5 +1,5 @@
#!/bin/bashmisc #!/bin/bashmisc
NUMBER="2.0.0" NUMBER="2.1.0"
CZKAWKA_PATH="/home/rafal" CZKAWKA_PATH="/home/rafal"
cd "$CZKAWKA_PATH" cd "$CZKAWKA_PATH"

View file

@ -1,6 +1,6 @@
name: czkawka # you probably want to 'snapcraft register <name>' name: czkawka # you probably want to 'snapcraft register <name>'
base: core18 # the base snap is the execution environment for this snap 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 summary: Czkawka - fast data cleaner written in Rust # 79 char long summary
description: | 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. 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:
czkawka: czkawka:
plugin: nil plugin: nil
source: https://github.com/qarmin/czkawka.git source: https://github.com/qarmin/czkawka.git
source-tag: 2.0.0 source-tag: 2.1.0
build-packages: build-packages:
- libgtk-3-dev - libgtk-3-dev
- curl - curl