1
0
Fork 0
mirror of synced 2024-06-02 02:24:44 +12:00

Changelog

This commit is contained in:
Rafał Mikrut 2023-02-19 10:04:16 +01:00
parent 5ce37c015f
commit c993708c71
3 changed files with 20 additions and 15 deletions

View file

@ -1,11 +1,16 @@
## Version 5.1.0 - ?.?.2023r
- Added sort button - [](https://github.com/qarmin/czkawka/pull/?)
- Allow to set number of thread used to scan -
- Use FileChooserNative instead FileChooserDialog -
- Fix invalid music tags in music files when using reference folders -
- Updated pdf dependency - broken pdf will be
- Changed strange PDF error message - "Try at" -
- Improve thumbnail quality -
## Version 5.1.0 - 19.02.2023r
- Added sort button - [#894](https://github.com/qarmin/czkawka/pull/894)
- Allow to set number of thread used to scan - [#839](https://github.com/qarmin/czkawka/pull/839)
- Faster similar images comparing with reference folders - [#826](https://github.com/qarmin/czkawka/pull/826)
- Update to clap 4 - [#878](https://github.com/qarmin/czkawka/pull/878)
- Use FileChooserNative instead FileChooserDialog - [#894](https://github.com/qarmin/czkawka/pull/894)
- Fix invalid music tags in music files when using reference folders - [#894](https://github.com/qarmin/czkawka/pull/894)
- Updated pdf dependency(a lot of less amount of broken pdf false positives) - [#894](https://github.com/qarmin/czkawka/pull/894)
- Changed strange PDF error message - "Try at" - [#894](https://github.com/qarmin/czkawka/pull/894)
- Treat extensions Mp4 and m4v as identical - [#834](https://github.com/qarmin/czkawka/pull/834)
- Improve thumbnail quality - [#895](https://github.com/qarmin/czkawka/pull/895)
- Verify if hardlinking works, and if not, disable button with proper message - [#881](https://github.com/qarmin/czkawka/pull/881)
- Apply some pydantic clippy lints on project - [#901](https://github.com/qarmin/czkawka/pull/901)
## Version 5.0.2 - 30.08.2022r
- Fixed problem with missing some similar images when using similarity > 0 - [#799](https://github.com/qarmin/czkawka/pull/799)

View file

@ -133,11 +133,11 @@ mod test {
}
let mut iters = Vec::new();
let iter = list_store.iter_first().unwrap();
iters.push(iter.clone());
iters.push(iter);
list_store.iter_next(&iter);
iters.push(iter.clone());
iters.push(iter);
list_store.iter_next(&iter);
iters.push(iter.clone());
iters.push(iter);
sort_iters::<String>(&list_store, iters, 1);

View file

@ -9,10 +9,10 @@ FFmpeg is not included here because it is not needed to build - it is dynamicall
Support for heif images is optional and require to install libheif library.
| Program | Min | What for |
|---------|--------|-------------------------------------------------------------------------------|
| Rust | 1.65.0 | Czkawka, aims to support the latest available version of Rust on Ubuntu 22.04 |
| GTK | 4.6 | Only for the `GTK` backend |
| Program | Min | What for |
|---------|--------|--------------------------------------------------------------------------------------|
| Rust | 1.65.0 | The minimum version of rust does not depend on anything, so it can change frequently |
| GTK | 4.6 | Only for the `GTK` backend |
#### Debian / Ubuntu
```shell