1
0
Fork 0
mirror of synced 2024-04-30 02:23:53 +12:00

Release 3.2.0

This commit is contained in:
Rafał Mikrut 2021-08-07 21:25:43 +02:00
parent cd258c67ab
commit 243505b692
12 changed files with 29 additions and 13 deletions

6
Cargo.lock generated
View file

@ -458,7 +458,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_cli" name = "czkawka_cli"
version = "3.1.0" version = "3.2.0"
dependencies = [ dependencies = [
"czkawka_core", "czkawka_core",
"structopt", "structopt",
@ -466,7 +466,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_core" name = "czkawka_core"
version = "3.1.0" version = "3.2.0"
dependencies = [ dependencies = [
"audiotags", "audiotags",
"bitflags", "bitflags",
@ -489,7 +489,7 @@ dependencies = [
[[package]] [[package]]
name = "czkawka_gui" name = "czkawka_gui"
version = "3.1.0" version = "3.2.0"
dependencies = [ dependencies = [
"chrono", "chrono",
"crossbeam-channel", "crossbeam-channel",

View file

@ -1,3 +1,19 @@
## Version 3.2.0 - 07.08.2021r
- Use checkbox instead selection to select files [#392](https://github.com/qarmin/czkawka/pull/392)
- Re-enable hardlink on windows - [#410](https://github.com/qarmin/czkawka/pull/410)
- Fix symlink and harlink creating - [#409](https://github.com/qarmin/czkawka/pull/409)
- Add image preview to duplicate finder [#408](https://github.com/qarmin/czkawka/pull/408)
- Add setting maximum file size [#407](https://github.com/qarmin/czkawka/pull/407)
- Add new grouping algorithm to similar images [#405](https://github.com/qarmin/czkawka/pull/405)
- Update to Rust 1.54 [#400](https://github.com/qarmin/czkawka/pull/400)
- Add webp support to similar images [#396](https://github.com/qarmin/czkawka/pull/396)
- Use GtkScale instead radio buttons for similarity [#397](https://github.com/qarmin/czkawka/pull/397)
- Update all dependencies [#405](https://github.com/qarmin/czkawka/pull/405), [#395](https://github.com/qarmin/czkawka/pull/395)
- Split UI into multiple files [#391](https://github.com/qarmin/czkawka/pull/391)
- Update to gtk-rs 0.14 [#383](https://github.com/qarmin/czkawka/pull/383)
- Fix bug with moving windows [#361](https://github.com/qarmin/czkawka/pull/361)
- Generate Minimal Appimage [#339](https://github.com/qarmin/czkawka/pull/339)
## Version 3.1.0 - 09.05.2021r ## Version 3.1.0 - 09.05.2021r
- Clean README, by moving instructions to different files - [9aea6e9b](https://github.com/qarmin/czkawka/commit/9aea6e9b1ef5ac1e56ccd008e7456b80401179d0) - Clean README, by moving instructions to different files - [9aea6e9b](https://github.com/qarmin/czkawka/commit/9aea6e9b1ef5ac1e56ccd008e7456b80401179d0)
- Fix excluded items on Windows - [#324](https://github.com/qarmin/czkawka/pull/324) - Fix excluded items on Windows - [#324](https://github.com/qarmin/czkawka/pull/324)

View file

@ -1,6 +1,6 @@
[package] [package]
name = "czkawka_cli" name = "czkawka_cli"
version = "3.1.0" version = "3.2.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 = "3.1.0" version = "3.2.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 = "3.1.0" version = "3.2.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

@ -37,7 +37,7 @@ Author: Rafał Mikrut
<property name="window-position">center</property> <property name="window-position">center</property>
<property name="type-hint">dialog</property> <property name="type-hint">dialog</property>
<property name="program-name">Czkawka</property> <property name="program-name">Czkawka</property>
<property name="version">3.1.0</property> <property name="version">3.2.0</property>
<property name="comments" translatable="yes">2020 - 2021 Rafał Mikrut(qarmin) <property name="comments" translatable="yes">2020 - 2021 Rafał Mikrut(qarmin)
This program is free to use and will always be. This program is free to use and will always be.

View file

@ -1928,7 +1928,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 3.1.0</property> <property name="text" translatable="yes">Czkawka 3.2.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

@ -19,7 +19,7 @@
</screenshot> </screenshot>
</screenshots> </screenshots>
<releases> <releases>
<release version="3.1.0" date="2021-05-09"/> <release version="3.2.0" date="2021-08-07"/>
</releases> </releases>
<content_rating type="oars-1.0"/> <content_rating type="oars-1.0"/>
<developer_name>Rafał Mikrut</developer_name> <developer_name>Rafał Mikrut</developer_name>

View file

@ -29,4 +29,4 @@ modules:
- cargo-sources.json - cargo-sources.json
- type: git - type: git
url: https://github.com/qarmin/czkawka.git url: https://github.com/qarmin/czkawka.git
tag: 3.1.0 tag: 3.2.0

View file

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
NUMBER="3.1.0" NUMBER="3.2.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="3.1.0" NUMBER="3.2.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: '3.1.0' # just for humans, typically '1.2+git' or '1.3.2' version: '3.2.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.