View Single Post
  #4  
Old 27-02-2019, 12:24
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,308 Times in 464 Posts
Simorq is on a distinguished road
Quote:
Originally Posted by Cesar82 View Post
@KaktoR

I did not realize that.
Are files also extracted, or only the percentage (including progress bar) changed?
Possibly this occurs inside some of the libraries (Isdone.dll, Unarc.dll, or DiskSpan.dll).
This bug is only visible using diskspan, because UltraArc does not pause progress while installing (does not request part .002, etc).
I think this is not so important to correct.

The progress of CIU I think very wrong as it is.
Example: If you put 2 ARC files. The first one with 1 MB and the second with 1 GB.
When extracting the first one (1 MB) will already be showing 50% progress and the remaining time will be equal to the time it took to extract the first 1 MB.
This could be fixed by adding a Size (Size of extracted files)
It would add up all the size and divide by the amount of files.

Code:
//Setup.ini (DiskSpan File)
[ExtractSettings]
ArcFile1=Data1.bin.001;DestDir:{app};Type:ARC;Disk:1; Size:1200;

//Records.ini (UltraArc or DiskSpan File)
[Record1]
Type=Freearc_Original
Source={src}\Data1.bin.001
Output={app}
Disk=1
Size=1200
Please make this change.

can use "Progress" instead of "SIZE".
For example
Code:
ArcFile1=Data1.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:20
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:60
ArcFile2=Data3.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:20
20+60+20=100

Last edited by Simorq; 27-02-2019 at 12:27.
Reply With Quote
The Following 4 Users Say Thank You to Simorq For This Useful Post:
K4miKaZe (27-02-2019), mausschieber (27-02-2019), sajmon83 (01-03-2019), zirkhaki (27-03-2019)