Change #254045
| Category | None |
| Changed by | Daniel Stenberg <daniel@haxx.se> |
| Changed at | Sat 03 Jan 2026 17:17:32 |
| Repository | https://api.github.com/repos/curl/curl |
| Project | curl/curl |
| Branch | bagder/progress-output |
| Revision | c27adb9f777a30d343ff268e6b4cc24f78d8a5f5 |
Comments
progress: narrower time display, multiple fixes - Each time field is now 7 characters wide, so that the total width never exceeds 79 columns so that it works correctly also in Windows terminals. The title lines are adjusted accordingly. This is accomplished by using h:mm:ss style up to 10 hours, and for longer periods switch to "nnX nnY" style output. For hours, days, months and years. For less than one hour, the hour field is now dropped. When no time info is provided, the field is now space-only. No more `-:--:--`. Also fixed the output for really long times which previously was completely broken. The largest time now shows as ">99999y". (Becase I can't figure out a better way). - For sizes, the widths are now properly fixed to 6 characters. When displaying a unit with less than 3 digits, it shows two decimal precision like "16777215 => 15.99M" and one decmal otherwise: "262143 => 255.9k" Also fixes the decimal math. 131071 is 127.9k, which it previously did not show. - The time and size field outputs are now properly verified in test 1636. Fixes #20122 Closes #20173 fixup use only space when no time exists Drop the hour from the display when zero
Changed files
- lib/progress.c
- tests/data/Makefile.am
- tests/data/test1636
- tests/unit/Makefile.inc
- tests/unit/unit1636.c