Opened 8 years ago
Closed 8 years ago
#2017 closed enhancement (fixed)
Improve progress reporting in "Packed file exporter" plug-in
Reported by: | Nicklas Nordborg | Owned by: | everyone |
---|---|---|---|
Priority: | minor | Milestone: | BASE 3.9 |
Component: | coreplugins | Version: | |
Keywords: | Cc: |
Description (last modified by )
Currently, the plug-in will update the progress only when starting to compress each file. If the file is a big file, the progress bar will stand still for a long time. Typically, if the first file is a big file, the progress will stand at 0% "Checking selected files and directories...".
I think this could be improved.
Change History (2)
comment:1 by , 8 years ago
Description: | modified (diff) |
---|
comment:2 by , 8 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [7168]) Fixes #2017: Improve progress reporting in "Packed file exporter" plug-in
We can't send a progress reporter to the packer implementation without breaking the API. Instead we use the
ProgressInputStream
for wrapping the stream and reporting the progress at the same time as reading data from the source file.