You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Changelog.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,13 +9,16 @@
9
9
- Delayed removing destination file while symlinking, to avoid data loss in case of failure - [#1672](https://github.com/qarmin/czkawka/pull/1672)
10
10
- Fix invalid canonicalization of paths on windows - [#1604](https://github.com/qarmin/czkawka/pull/1604/files)
11
11
- Comparison results are now deterministic - [#1654](https://github.com/qarmin/czkawka/pull/1654)
12
-
- Reading built-in jpeg inside raw images, if available - [#1655](https://github.com/qarmin/czkawka/pull/1655)
12
+
- Reading built-in jpeg inside raw images, if available(currently disabled due - https://github.com/dnglab/dnglab/issues/638) - [#1655](https://github.com/qarmin/czkawka/pull/1655)
13
13
- Fixed silent panics, when logger cannot log to terminal - [1658](https://github.com/qarmin/czkawka/pull/1658)
14
14
- Commit hash is added to logs - [#1672](https://github.com/qarmin/czkawka/pull/1672)
15
+
- Improved and fixed logic which groups similar images by its similarity - [#1685](https://github.com/qarmin/czkawka/pull/1685)
16
+
- Added counting scan time - [#1674](https://github.com/qarmin/czkawka/pull/1674), [#1685](https://github.com/qarmin/czkawka/pull/1685)
15
17
16
18
### CLI
17
19
- Using colors by default in terminal output(can be disabled by feature flag) - [#1672](https://github.com/qarmin/czkawka/pull/1672)
18
20
- Fixed regression, where results were not printed by default to terminal - [#1672](https://github.com/qarmin/czkawka/pull/1672)
21
+
- Added dry_run and move_to_trash options to all tools - [#1685](https://github.com/qarmin/czkawka/pull/1685)
19
22
20
23
### GTK GUI
21
24
- Sort button is restored and crashes when sorting are fixed(probably) - [#1623](https://github.com/qarmin/czkawka/pull/1623)
#[clap(short = 'N', long, help = "Do not print the results to the console")]
537
529
pubdo_not_print_results:bool,
538
530
#[clap(short = 'M', long, help = "Do not print info/warnings/errors from the program to console")]
539
531
pubdo_not_print_messages:bool,
540
532
}
541
533
542
-
#[derive(Debug, clap::Args)]
534
+
#[derive(Debug, clap::Args,Clone,Copy)]
543
535
pubstructDMethod{
544
536
#[clap(
545
537
short = 'D',
@@ -550,6 +542,21 @@ pub struct DMethod {
550
542
long_help = "Methods to delete the files.\nAEN - All files except the newest,\nAEO - All files except the oldest,\nON - Only 1 file, the newest,\nOO - Only 1 file, the oldest\nAEB - All files except the biggest,\nAES - All files except the smallest,\nOB - Only 1 file, the biggest,\nOS - Only 1 file, the smallest\nHARD - create hard link\nNONE - not delete files"
551
543
)]
552
544
pubdelete_method:DeleteMethod,
545
+
#[clap(short = 'Q', long, help = "Do nothing and print the operation that would happen.")]
546
+
pubdry_run:bool,
547
+
#[clap(short = 'y', long, help = "Remove items to trash")]
548
+
pubmove_to_trash:bool,
549
+
}
550
+
551
+
// Simple delete method - delete files or not
552
+
#[derive(Debug, clap::Args,Clone,Copy)]
553
+
pubstructSDMethod{
554
+
#[clap(short = 'D', long, help = "Delete found items")]
555
+
pubdelete_files:bool,
556
+
#[clap(short = 'Q', long, help = "Do nothing and print the operation that would happen.")]
557
+
pubdry_run:bool,
558
+
#[clap(short = 'y', long, help = "Remove items to trash")]
0 commit comments