|
|
|
|
|||||||
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
#1
|
||||
|
||||
|
ISArcEx - Advanced FreeArc Extraction API for Inno Setup
======================================== Code:
> Overview: ISArcEx is a high-performance extraction library meticulously crafted for Inno Setup. It provides a robust interface for handling FreeArc archives, offering advanced progress tracking and precise extraction metrics that standard tools often lack. > Specifications: - Version : v0.5 - Author : BLACKFIRE69 - Build : 6997A400 - Compatibility : Inno Setup v6.0 or later (Required) - License : Proprietary (See LICENSE file for details) - Tested Engine : FreeArc v0.67 Code:
> Key Features: - Archive Support: Specialized in Normal FreeArc archives. Note: Splitted archives are not supported. - Selective Extraction: Use ISArcExAddDisksEx to extract specific folders from within an archive. - Advanced Progress Tracking: Real-time metrics for Overall Progress, Current Disk Progress, and Extracted/Total File Counts. - Performance Metrics: Accurate Current and Average Speed (MB/s). - Time Management: Intelligent "Time Remaining" and "Elapsed Time" tracking with three customizable display formats. - Process Control: Built-in functions to Suspend, Resume, or Stop the extraction process safely. - UI Stability: Includes "Calc Accuracy" reduction logic to prevent erratic jumping in speed and ETA displays. - Localization: Easily switch between languages using external .ini configuration files. Code:
> Supported External Tooling: ISArcEx integrates seamlessly with common FreeArc external-processors: - SREP, XTool, LOLZ, NZ, RZ. - Support for Facompress (MT and Standard). > Distribution Files: - ISArcEx.dll — Core API Library. - UnArc_32.dll — FreeArc engine integration. - ISArcEx.iss — Header for Inno Setup. - arc.ini / CLS.ini — Configuration for external-processors. - English.ini / Russian.ini — Language configuration files. Last edited by BLACKFIRE69; 19-04-2026 at 15:36. Reason: Added latest update |
| The Following 37 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
ADMIRAL (27-03-2022), auaksa (09-01-2023), audiofeel (24-03-2022), buttignol (12-03-2022), Cesar82 (20-03-2022), chepgameps4 (21-03-2022), crachlow (01-08-2023), dixen (12-03-2022), Ele (13-03-2022), ffmla (12-03-2022), FIFA_LOVER (13-03-2022), Gehrman (13-03-2022), GTX590 (12-03-2022), Harsh ojha (12-03-2022), hdneo (11-05-2023), hitman797 (07-01-2023), Junior53 (14-09-2023), Karekas (08-03-2023), kj911 (16-03-2022), kozmik (28-02-2023), L0v3craft (13-03-2022), lolaya (20-03-2022), Lord.Freddy (17-08-2022), meadwey (17-05-2024), nordi (16-12-2024), ramydarkness (22-03-2022), Razor12911 (09-04-2026), RedDanzig (06-09-2023), ScOOt3r (12-03-2022), sennen (22-03-2024), shazzla (12-03-2022), st0rm (29-03-2022), TheTh1996 (17-07-2024), vint56 (12-03-2022), Vladislav989 (04-01-2023), Wanterlude (13-03-2022), wrathma (28-03-2026) | ||
| Sponsored Links |
|
#2
|
|||
|
|||
|
i love u work ♥
|
| The Following User Says Thank You to lolaya For This Useful Post: | ||
BLACKFIRE69 (21-03-2022) | ||
|
#3
|
||||
|
||||
![]() what is the problem? |
|
#4
|
||||
|
||||
|
Code:
1. Goto line 546, (Ctrl + G then 546)
2.
Change
LabelTime3 := TLabel.Create(WizardForm);
with LabelTime3 do begin
...
Left := 180;
Top := 200;
end;
To
LabelTime3 := TLabel.Create(WizardForm);
with LabelTime3 do begin
...
Left := WizardForm.FinishedLabel.Left;
Top := WizardForm.FinishedLabel.Top + ScaleY(120);
end;
|
| The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
Gehrman (28-03-2022) | ||
|
#5
|
||||
|
||||
|
Hello Blackfire
Could you edit this script for me? i want to add launch a game check box to the finish page and when i type the shortcut name called Battle.net it must be Battle.net.lnk for my file location but it does not make it correct and open a website checkbox too and a question can i copy ur dll to a new empty script and add my archives to it? because i wanna do some edits with the wizardform designer thanks!
__________________
Be kind so that people be kind with you Last edited by Spotless; 19-05-2022 at 10:44. |
| The Following User Says Thank You to Spotless For This Useful Post: | ||
ADMIRAL (27-07-2022) | ||
|
#6
|
||||
|
||||
|
Quote:
you can include ISArcEx for any script. but just copying the dll is not enough. you should know how to work with the ISArcEx.dll. follow the examples provided for help. or you can PM your script and i can help you out. Quote:
. Last edited by BLACKFIRE69; 03-04-2023 at 14:06. |
|
#7
|
||||
|
||||
|
Hi BLACKFIRE69
How to remove this section?
|
|
#8
|
||||
|
||||
|
1. Comment the second line of [types] section.
Code:
[Types] Name: full; Description: Full installation; Flags: iscustom ;Name: custom; Description: Custom installation; Code:
Before: [Components] Name: extra; Description: Extra; Types: full custom; ... Name: voice; Description: Interface Language and Voices; Types: full; ... After: [Components] Name: extra; Description: Extra; ... Name: voice; Description: Interface Language and Voices; ... |
|
#9
|
|||
|
|||
|
First of all, sorry for digging up this topic.
I have a small question about IsArcEx. If I wanted to run a batch file or other script after unpacking the FreeArc archive but also keep the elapsed timer running, whereabouts should I put the command? All my post-FreeArc command run in a procedure called masquerade_work, so I call this after the FreeArc extraction finishes. I have tried putting it on the line above IsArcExStop();, but this does not keep the timer running after the last archive has finished extracting: Code:
for i:= 1 to ISArcExDiskCount do
begin
ISArcExError := not ISArcExExtract(i, ExpandConstant('{app}\'), ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'));
if ISArcExError then break;
end;
until true;
masquerade_work();
ISArcExStop;
Thanks, Masquerade |
|
#10
|
||||
|
||||
|
Quote:
@Masquerade Timer will run until it calls ISArcExStop. ![]() Code:
... masquerade_work(); ISArcExStop; // Timer Stops ... Last edited by BLACKFIRE69; 03-04-2023 at 14:07. |
| The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
Cesar82 (21-12-2022), Masquerade (21-12-2022) | ||
|
#11
|
|||
|
|||
|
Typo error?? --> ISArcDiskAddingFalied ! Correct? No. --> ISArcDiskAddingFailed
|
| The Following User Says Thank You to kj911 For This Useful Post: | ||
Masquerade (05-01-2023) | ||
|
#12
|
|||
|
|||
|
Excellent DDL, switched to it from isDone. Thank you.
|
| The Following User Says Thank You to Tihiy_Don For This Useful Post: | ||
BLACKFIRE69 (11-06-2023) | ||
|
#13
|
|||
|
|||
|
I ask you to change the ISArcExCancel variable to boolean to match the general concept by analogy with ISArcExError.
Accordingly, if the installation was canceled, it is not an error. Why not cancel the example and make the download of an excellent unpacking by example: Quote:
Last edited by Tihiy_Don; 22-06-2023 at 23:23. |
|
#14
|
||||
|
||||
|
Update Available!
Code:
What's New - Some improvements. Code:
* How to update? >> just replace the old DLL with the new one. |
| The Following 5 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (01-08-2023), ffmla (05-08-2023), hitman797 (01-08-2023), Lord.Freddy (01-08-2023), Tihiy_Don (01-08-2023) | ||
|
#15
|
|||
|
|||
|
Sir, plz add button click sounds to the script.
|
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| ASIS: Advanced Simple Installer Script | KaktoR | Conversion Tutorials | 1477 | 20-05-2026 10:52 |
| XTool 2020 (Plugins) | Razor12911 | Conversion Tutorials | 405 | 24-12-2024 05:30 |
| Game Installer Designer by altef_4 | altef_4 | Conversion Tutorials | 236 | 28-05-2021 02:54 |
| Best Compression For Archiving | brispuss | PC Games | 12 | 03-01-2020 13:34 |
| Compression Questions | yasitha | Conversion Tutorials | 10 | 09-01-2019 12:29 |