Skip to content

Commit 44400e0

Browse files
committed
Release version 6.1.0
1 parent 0f7aa95 commit 44400e0

File tree

15 files changed

+22
-23
lines changed

15 files changed

+22
-23
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ assignees: ''
99

1010
**Desktop (please complete the following information):**
1111

12-
- Czkawka version<!-- e.g. 6.0.0 cli/gui -->:
12+
- Czkawka version<!-- e.g. 6.1.0 cli/gui -->:
1313
- OS version<!-- e.g Ubuntu 22.04, Windows 11, Mac 15.1 ARM -->:
1414
- Terminal output[optional]:
1515

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Changelog.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 6.1.0 - ?
1+
## Version 6.1.0 - 15.10.2023r
22
- BREAKING CHANGE - Changed cache saving method, deduplicated, optimized and simplified procedure(all files needs to be hashed again) - [#1072](https://github.com/qarmin/czkawka/pull/1072), [#1086](https://github.com/qarmin/czkawka/pull/1086)
33
- Remove up to 340ms of delay when waiting for results - [#1070](https://github.com/qarmin/czkawka/pull/1070)
44
- Added logger with useful info when debugging app (level can be adjusted via e.g. `RUST_LOG=debug` env) - [#1072](https://github.com/qarmin/czkawka/pull/1072), [#1070](https://github.com/qarmin/czkawka/pull/1070)
@@ -13,9 +13,8 @@
1313
- Allowed removing similar images/videos/music from cli - [#1087](https://github.com/qarmin/czkawka/pull/1087)
1414
- Added info about saving/loading items to cache in duplicate and music mode - [#1091](https://github.com/qarmin/czkawka/pull/1091)
1515
- Fixed number of files to check in duplicate mode - [#1091](https://github.com/qarmin/czkawka/pull/1091)
16-
- Added support for qoi image format - [e92a](https://github.com/qarmin/czkawka/commit/e92a8a65de9bd1250be482dbce06959125554849)
16+
- Added support for qoi image format(without preview yet) - [e92a](https://github.com/qarmin/czkawka/commit/e92a8a65de9bd1250be482dbce06959125554849)
1717
- Fixed stability problem, that could remove invalid file in CLI - [#1083](https://github.com/qarmin/czkawka/pull/1083)
18-
- Fixed problem with invalid cache loading - [#0000]
1918
- Fix Windows gui crashes by using gtk 4.6 instead 4.8 or 4.10 - [#992](https://github.com/qarmin/czkawka/pull/992)
2019
- Fixed printing info about duplicated music files - [#1016](https://github.com/qarmin/czkawka/pull/1016)
2120
- Fixed printing info about duplicated video files - [#1017](https://github.com/qarmin/czkawka/pull/1017)

czkawka_cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_cli"
3-
version = "6.0.0"
3+
version = "6.1.0"
44
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
55
edition = "2021"
66
rust-version = "1.70.0"
@@ -18,7 +18,7 @@ image_hasher = "1.2"
1818
log = "0.4.20"
1919
handsome_logger = "0.8"
2020
fun_time = { version = "0.3.1", features = ["log"] }
21-
czkawka_core = { path = "../czkawka_core", version = "6.0.0", features = [] }
21+
czkawka_core = { path = "../czkawka_core", version = "6.1.0", features = [] }
2222

2323
[features]
2424
default = []

czkawka_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_core"
3-
version = "6.0.0"
3+
version = "6.1.0"
44
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
55
edition = "2021"
66
rust-version = "1.70.0"

czkawka_gui/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_gui"
3-
version = "6.0.0"
3+
version = "6.1.0"
44
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
55
edition = "2021"
66
rust-version = "1.70.0"
@@ -53,7 +53,7 @@ log = "0.4.20"
5353
handsome_logger = "0.8"
5454
fun_time = { version = "0.3.1", features = ["log"] }
5555

56-
czkawka_core = { path = "../czkawka_core", version = "6.0.0", features = [] }
56+
czkawka_core = { path = "../czkawka_core", version = "6.1.0", features = [] }
5757
gtk4 = { version = "0.7", default-features = false, features = ["v4_6"] }
5858

5959
[target.'cfg(windows)'.dependencies]

czkawka_gui/ui/about_dialog.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ This program is free to use and will always be.
1111
<property name="license-type">mit-x11</property>
1212
<property name="logo-icon-name">help-about-symbolic</property>
1313
<property name="program-name">Czkawka</property>
14-
<property name="version">6.0.0</property>
14+
<property name="version">6.1.0</property>
1515
</object>
1616
</interface>

czkawka_gui/ui/czkawka.cmb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@
347347
(3,1,"GtkAboutDialog","license-type","mit-x11",None,None,None,None,None,None,None,None,None),
348348
(3,1,"GtkAboutDialog","logo-icon-name","help-about-symbolic",None,None,None,None,None,None,None,None,None),
349349
(3,1,"GtkAboutDialog","program-name","Czkawka",None,None,None,None,None,None,None,None,None),
350-
(3,1,"GtkAboutDialog","version","6.0.0",None,None,None,None,None,None,None,None,None),
350+
(3,1,"GtkAboutDialog","version","6.1.0",None,None,None,None,None,None,None,None,None),
351351
(4,2,"GtkOrientable","orientation","vertical",None,None,None,None,None,None,None,None,None),
352352
(4,2,"GtkWidget","vexpand","1",None,None,None,None,None,None,None,None,None),
353353
(4,4,"GtkLabel","label","Group XD/PER XD (99 images in current group)",1,None,None,None,None,None,None,None,None),
@@ -686,7 +686,7 @@
686686
(5,177,"GtkWidget","focusable","1",None,None,None,None,None,None,None,None,None),
687687
(5,177,"GtkWidget","hexpand","1",None,None,None,None,None,None,None,None,None),
688688
(5,178,"GtkEditable","editable","0",None,None,None,None,None,None,None,None,None),
689-
(5,178,"GtkEditable","text","Czkawka 6.0.0",1,None,None,None,None,None,None,None,None),
689+
(5,178,"GtkEditable","text","Czkawka 6.1.0",1,None,None,None,None,None,None,None,None),
690690
(5,178,"GtkEditable","xalign","1",None,None,None,None,None,None,None,None,None),
691691
(5,178,"GtkEntry","has-frame","0",None,None,None,None,None,None,None,None,None),
692692
(5,178,"GtkWidget","focusable","1",None,None,None,None,None,None,None,None,None),

czkawka_gui/ui/main_window.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@
11491149
<property name="editable">0</property>
11501150
<property name="focusable">1</property>
11511151
<property name="has-frame">0</property>
1152-
<property name="text" translatable="yes">Czkawka 6.0.0</property>
1152+
<property name="text" translatable="yes">Czkawka 6.1.0</property>
11531153
<property name="xalign">1</property>
11541154
</object>
11551155
</child>

czkawka_slint_gui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "czkawka_slint"
3-
version = "6.0.0"
3+
version = "6.1.0"
44
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
55
edition = "2021"
66
rust-version = "1.72.1"

0 commit comments

Comments
 (0)