Package: ark / 4:25.04.3-1

Metadata

Package Version Patches format
ark 4:25.04.3-1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
upstream_55b6d6e6_Implement Dolphin style natural string sorting.patch | (download)

part/archivesortfiltermodel.cpp | 42 42 + 0 - 0 !
part/archivesortfiltermodel.h | 4 4 + 0 - 0 !
2 files changed, 46 insertions(+)

 [patch] implement dolphin-style natural string sorting

Enabled natural string sorting to match Dolphin's order, improving human-friendly
string comparison. Updated the function comment for clarity and noted potential
refactoring to a framework utility for maintainability.

BUG: 387969

upstream_1435ccd4_Fix corner case of single threaded CPU when calculating number of threads.patch | (download)

plugins/libarchive/readwritelibarchiveplugin.cpp | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 [patch] fix corner case of single-threaded cpu when calculating
 number of threads

Currently, the number of threads will be 0 on single-threaded CPUs.
Use `std::max` to fix this corner case.