FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   UltraARC for Inno Setup (Conversion Tool) (https://fileforums.com/showthread.php?t=96619)

Simorq 07-09-2017 14:03

Quote:

Originally Posted by gatosky1620 (Post 462207)
what version extract the split files in the app folder?


procedure UltraARC_Process;
var
Data: array of TData;
i, x, MsgResult: Integer;
SourceDir, OggFile, MergeFile: String;
begin
ForceDirectories(ExpandConstant('{app}\'));

Fixed {TMP} TO {APP}

anoop1507 08-09-2017 07:22

The self extractor doesn't extract when pzlib is used.https://ibb.co/h6AeTa

anoop1507 08-09-2017 07:23

https://ibb.co/h6AeTa

Simorq 08-09-2017 08:58

Quote:

Originally Posted by anoop1507 (Post 462218)

Ua.sfx Only Precomp 038-042 ,MSC, SREP, LZMA Support.

anoop1507 08-09-2017 10:29

Since the self extractor is inno it can be easily added if the source script is available.

darkwolves 09-09-2017 21:04

is there a WPI installer compatible with this?

pakrat2k2 10-09-2017 07:35

Quote:

Originally Posted by darkwolves (Post 462250)
is there a WPI installer compatible with this?

http://fileforums.com/showthread.php?t=98979

darkwolves 10-09-2017 08:34

Quote:

Originally Posted by pakrat2k2 (Post 462254)

thank you!! i modified Razors original 3.1 with lockscreen i will test it on that as well if it works i'll post it.:D

Kobi Blade 10-09-2017 12:03

How do I disable the split option?

Nevermind, I'll just do it manually as always :rolleyes:

KaktoR 10-09-2017 12:05

You can't.

For a workaround, set
FirstVolumeSize=65536
CustomVolumeSize=65536

Kobi Blade 10-09-2017 12:10

Quote:

Originally Posted by KaktoR (Post 462260)
You can't.

For a workaround, set
FirstVolumeSize=65536
CustomVolumeSize=65536

I've tried something similar, it always creates multiple Data.bin files with 1GB of size each.

I'll try with those values and see what happens ;)

KaktoR 10-09-2017 12:15

Set Treshold to 100 for single bin file.

Kobi Blade 10-09-2017 12:24

Quote:

Originally Posted by KaktoR (Post 462262)
Set Treshold to 100 for single bin file.

That worked thanks!

Razor12911 10-09-2017 17:49

Quote:

Originally Posted by KaktoR (Post 462260)
You can't.

For a workaround, set
FirstVolumeSize=65536
CustomVolumeSize=65536

From ResHacker

Code:

            object NumberBox1: TNumberBox
              Touch.InteractiveGestures = [LongTap, DoubleTap]
              Align = Left
              TabOrder = 3
              Cursor = crIBeam
              Min = 1.000000000000000000
              Max = 65536.000000000000000000
              Value = 1024.000000000000000000
              TextSettings.HorzAlign = Center
              Position.X = 316.000000000000000000
              Size.Width = 60.000000000000000000
              Size.Height = 22.000000000000000000
              Size.PlatformDefault = False
              OnChange = NumberBox1Change
            end
            object Label5: TLabel
              Align = Left
              Margins.Left = 8.000000000000000000
              Position.X = 8.000000000000000000
              Size.Width = 120.000000000000000000
              Size.Height = 22.000000000000000000
              Size.PlatformDefault = False
              Text = 'First volume size'
            end
            object NumberBox3: TNumberBox
              Touch.InteractiveGestures = [LongTap, DoubleTap]
              Align = Left
              TabOrder = 1
              Cursor = crIBeam
              Min = 1.000000000000000000
              Max = 65536.000000000000000000
              Value = 1024.000000000000000000
              TextSettings.HorzAlign = Center
              Position.X = 128.000000000000000000
              Size.Width = 60.000000000000000000
              Size.Height = 22.000000000000000000
              Size.PlatformDefault = False
            end


KaktoR 11-09-2017 06:41

Ok, some time ago i have put "99999", but GUI only displays "65536". Wasn't aware of decimal.

darkwolves 14-09-2017 05:58

what is the difference between superrep and regular srep?
i noticed the superrep in the latest version of the ultraarc

78372 14-09-2017 06:31

superrep=srep, no differences

darkwolves 14-09-2017 06:33

Quote:

Originally Posted by 78372 (Post 462342)
superrep=srep, no differences

odd i wonder why it was named that then...lol:confused:

Chayan Manna 14-09-2017 08:42

Quote:

Originally Posted by darkwolves (Post 462343)
odd i wonder why it was named that then...lol:confused:

Super+rep=Srep

darkwolves 14-09-2017 21:17

Quote:

Originally Posted by Chayan Manna (Post 462346)
Super+rep=Srep

be that as it may it is still deceiving to those like me who just
got on the scene and saw it as Srep and Rep as a whole different option then the new ultraarc says SUPERrep...

Simorq 15-09-2017 08:09

Quote:

Originally Posted by darkwolves (Post 462357)
be that as it may it is still deceiving to those like me who just
got on the scene and saw it as Srep and Rep as a whole different option then the new ultraarc says SUPERrep...


SREP (formerly SuperREP)

darkwolves 15-09-2017 08:31

Quote:

Originally Posted by Simorq (Post 462364)

like i said i'm pretty new so to this point i've only seen srep and rep lol

KaktoR 20-09-2017 13:41

Quote:

Originally Posted by Razor12911 (Post 462266)
From ResHacker

Code:

            object NumberBox1: TNumberBox
              Touch.InteractiveGestures = [LongTap, DoubleTap]
              Align = Left
              TabOrder = 3
              Cursor = crIBeam
              Min = 1.000000000000000000
              Max = 65536.000000000000000000
              Value = 1024.000000000000000000
              TextSettings.HorzAlign = Center
              Position.X = 316.000000000000000000
              Size.Width = 60.000000000000000000
              Size.Height = 22.000000000000000000
              Size.PlatformDefault = False
              OnChange = NumberBox1Change
            end
            object Label5: TLabel
              Align = Left
              Margins.Left = 8.000000000000000000
              Position.X = 8.000000000000000000
              Size.Width = 120.000000000000000000
              Size.Height = 22.000000000000000000
              Size.PlatformDefault = False
              Text = 'First volume size'
            end
            object NumberBox3: TNumberBox
              Touch.InteractiveGestures = [LongTap, DoubleTap]
              Align = Left
              TabOrder = 1
              Cursor = crIBeam
              Min = 1.000000000000000000
              Max = 65536.000000000000000000
              Value = 1024.000000000000000000
              TextSettings.HorzAlign = Center
              Position.X = 128.000000000000000000
              Size.Width = 60.000000000000000000
              Size.Height = 22.000000000000000000
              Size.PlatformDefault = False
            end


Have added this to Wiki "UltraArc" for Tipps & Tricks.

More will come, mostly about compressors in new R3 release when simorq is done :)

gatosky1620 20-09-2017 15:37

instead do this just set in first and custom volume size any number follow with many zeros "0"

KaktoR 21-09-2017 10:29

I always write just "9999999", which is 9,99 Terrabyte :)

Razor12911 21-09-2017 15:10

Quote:

Originally Posted by kaktor (Post 462489)
i always write just "9999999", which is 9,99 terrabyte :)

9999999mb / 1024 = 9766gb
9766gb / 1024 = 9.54tb :)

KaktoR 21-09-2017 15:54

I knew that, was just too lazy to calculate :D

pakrat2k2 01-10-2017 09:17

1 Attachment(s)
I know houcine80 added u6h from post here> http://fileforums.com/showpost.php?p...&postcount=861

"Hi I disable all ( OnDblClick :=@MinimizeBtnClick; ) to avoid the double click bug on autorun or installer"

Thanks for that, but I found a few missing Language EULA's, namely ChineseT, Japanese & Korean. I've added them to this script, so use IF you want.

KaktoR 06-10-2017 14:19

1 Attachment(s)
--

BizUsr2017 21-10-2017 02:18

Hello :)
Is there a way to silent extract the sfx archiv?

Running ultra arc 2.8.0.1 R3

Kind regards

Simorq 23-10-2017 15:05

UltraARC 2801 R3 Hotfix
 
Del

Simorq 23-10-2017 15:09

R.G. Gamers UltraARC
 
1 Attachment(s)
http://s8.picofile.com/file/8309896892/R_G_Gamers.jpg
R.G. Игроманы

KaktoR 23-10-2017 15:33

void=1 doesn't work for some reason. "Arc.exe has stopped working".

Or is 1 not allowed? Thought 0 = m0, so 1 should be m1, right?

Simorq 23-10-2017 15:42

Quote:

Originally Posted by KaktoR (Post 463383)
void=1 doesn't work for some reason. "Arc.exe has stopped working".

Or is 1 not allowed? Thought 0 = m0, so 1 should be m1, right?

Config0.txt

Remove
[External compressor:rep,mm,delta,exe,exe2,4x4,lzma]
header = 0
packcmd = FAZIP -i0 compress:{compressor}{:option} <stdin> <stdout>
unpackcmd = FAZIP -i0 decompress:{compressor}{:option} <stdin> <stdout>

Or Change
[External compressor:rep,mm,delta,exe,exe2,4x4,lzma]
header = 0
packcmd = FAZip -i0 compress:{compressor}{:option} $$arcdatafile$$.tmp - <stdout>
unpackcmd = FAZip -i0 decompress:{compressor}{:option} $$arcpackedfile$$.tmp - <stdout>

KaktoR 26-10-2017 16:33

What happend to LZ4, LZ5, etc? :D

Simorq 26-10-2017 16:43

Quote:

Originally Posted by KaktoR (Post 463528)
What happend to LZ4, LZ5, etc? :D

Not suitable for compression of the game:rolleyes:

KaktoR 26-10-2017 16:50

Alright, good to have you here :D

Thank you!

Sebazz 21-11-2017 11:54

I have a question with SREP64, someone can explain me what is the diference of the options m3f/m5f, a1/a2 (compression) and the s option (decompression)? And What is the best method for use ? Thanks

Razor12911 23-11-2017 17:16

-m3: check matches by VMAC digest (compression memory = 7-8% of filesize)
-m5: rereading with byte-accurate matches (compression memory = 7-9% of filesize)
-aX[/Y]: alloc X bytes of those Y bits will be set per L input bytes for compression accelerator
Y=0/1/2/4/8/16/32/64, -a0 is slowest but requires least memory

CANNIBAL 24-11-2017 20:40

http://tinypic.com/view.php?pic=w17o5j&s=9Installer Creator Giving Me This Messege.. Why?


All times are GMT -7. The time now is 20:43.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com