FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   [CIUv3] Custom Installer Ultimate v3 (https://fileforums.com/showthread.php?t=102510)

Carldric Clement 17-05-2019 04:44

Quote:

Originally Posted by Cesar82 (Post 481042)
@Carldric Clement

Do not hurry!
When your Designer is functional, post a beta to accompany the development

If you are to include translations of your Designer interface, I can collaborate with PTBR.

ok thanks bro :D

Carldric Clement 17-05-2019 06:16

Part 1 Complete: Autorun Setup
 
3 Attachment(s)
Part 1 Complete based on Autorun Setup.
Going on Part 2: Installer Setup - Tomorrow

Please Test my program if it works. :D

Edit: Added Standard AR Button where was missed on components

KaktoR 19-05-2019 05:23

Tested a few buttons and positions and worked fine so far, no errors or such.

Cesar82 19-05-2019 16:21

CIU 3.0.0.1 Beta 2
 
2 Attachment(s)
The changes are informed in the changelog.
The changelog file is not in order of inclusion of the changes.
Read the entire changelog to see the changes that were included.

Main beta 2 changes:
- Added HashPage for Hash Check.
- Added Open buttons (unlimited) to open documents or folders or execute external files.
- Added new options for Equalizer like Opacity and Solid Color (without adding image).

PS:
- If anyone has time please test using Inno Setup 6.
- When I have ready version 3.0.0.1 (Final), I will create an installer for Inno Setup 6 similar to 5.61 that I did the repack.

- Any questions that you have suggested and have not yet been included, please comment.
- The inclusion of multiple music files will be included later because I will replace the run mode after Altef_4 completes the changes in IsMediaLib.dll (Altef_4 thanks for the effort).



HOTFIX 1
- Fixed UnInstall button visible on installer and SmallInstaller pages.
- Updated Polish language file.

sajmon83 20-05-2019 07:56

Quote:

Originally Posted by Cesar82 (Post 480981)
I need a new translation.

This label will be the default label for the [Open#Button] buttons on the Autorun page.
Code:

Open=Open
The "Open#" buttons are used to open a folder or a document file or even to execute files with additional external executables.
Who has not seen it yet, has other requests for translations in previous posts.
Thanks!

I'm sorry I missed :P
Translation added to the post #161

mausschieber 24-05-2019 10:36

1 Attachment(s)
Bug found

when i Install a game and it ask for the next disk bug came up

see Image but when i klick the button twice it came with the file search info

gatosky1620 27-05-2019 16:15

how i do to add the constant "username" in the [IniFileInfo]

Quote:

SetIniFile2={app}\steam_emu.ini; Section: Settings; Key: UserName; Value: get username from windows

Cesar82 27-05-2019 19:50

Quote:

Originally Posted by gatosky1620 (Post 481133)
how i do to add the constant "username" in the [IniFileInfo]

try
Open script and edit this line (Insert text in red color and delete blue color part)

Code:

function DecodeINI(Line: String): TIniFileInfo;
var
  TmpStr: String;
begin
  TmpStr := Line
  if Copy(TmpStr, Length(TmpStr), 1) <> ';' then
    TmpStr := TmpStr + ';';
  //.....
  if Pos('Value:', TmpStr) <> 0 then begin
    Result.Value := Copy(TmpStr, Pos('Value:', TmpStr) + Length('Value:'), Length(TmpStr));
    Result.Value := ExpandConstant(Trim(Copy(Result.Value, 0, Pos(';', Result.Value) - 1))) + '|';
    StringChange(Result.Value, ' ', '');
    Delete(TmpStr, 1, Pos(';', TmpStr));
    if Pos(LowerCase(ActLangShort + '='), LowerCase(Result.Value)) > 0 then begin
      Result.Value := Result.Value + '|';
      Result.Value := Copy(Result.Value, Pos(LowerCase(ActLangShort + '='), LowerCase(Result.Value)) + Length(ActLangShort + '='), Length(Result.Value));
      Result.Value := Trim(Copy(Result.Value, 0, Pos('|', Result.Value) - 1));
    end else
      if Pos('=', Result.Value) > 0 then
        Result.Value := TranslatorINI(ActLangShort);
  end else
    Result.Value := TranslatorINI(ActLangShort);
  if Pos('Create:', TmpStr) <> 0 then begin

use:
Code:

SetIniFile2={app}\steam_emu.ini; Section: Settings; Key: UserName; Value: {username}
I did not test, but I think it works.

mikey26 04-06-2019 10:34

hi bud

the setup is reading the gpu info wrong.

https://i.imgur.com/eeMNQ9H.png

Kitsune1982 04-06-2019 16:21

hi cesar82 great work on your CIU v3.0.0.1 beta! I need some help with a problem im having. When i try to install a game i repacked using the compressor kaktor posted in his main thread, and i copy/paste the .bin files into my directory and run the inno 5.6.1 script compiler, then try to install the game, i get the message 'archive header is corrupt, file unreadable or not freearc archive!' diskspan works fine except for one situation where all the compressed .001 files extracted fine but when it got to the 3rd split file it gave me that same error message even though i compressed it correctly with diskspan.bat. :<

how do i enable CIUv3 to extract these file types properly? any help you can offer would be most appreciated.

-Kitsune

- PS I tried doing it with records.ini and without, when i do it without records.ini it doesnt even process the .bin files, and when i have my .bin files listed in it it gives me that error on decompression. i used pankers 3 way compression batch file to compress them and i used the same compressors that diskspan has. is there a way to allow
CIU to process .bin files made with other compression scripts or is it 'UltraArc, diskspan or bust'?

Carldric Clement 05-06-2019 03:44

Quote:

Originally Posted by Kitsune1982 (Post 481226)
hi cesar82 great work on your CIU v3.0.0.1 beta! I need some help with a problem im having. When i try to install a game i repacked using the compressor kaktor posted in his main thread, and i copy/paste the .bin files into my directory and run the inno 5.6.1 script compiler, then try to install the game, i get the message 'archive header is corrupt, file unreadable or not freearc archive!' diskspan works fine except for one situation where all the compressed .001 files extracted fine but when it got to the 3rd split file it gave me that same error message even though i compressed it correctly with diskspan.bat. :<

how do i enable CIUv3 to extract these file types properly? any help you can offer would be most appreciated.

-Kitsune

- PS I tried doing it with records.ini and without, when i do it without records.ini it doesnt even process the .bin files, and when i have my .bin files listed in it it gives me that error on decompression. i used pankers 3 way compression batch file to compress them and i used the same compressors that diskspan has. is there a way to allow
CIU to process .bin files made with other compression scripts or is it 'UltraArc, diskspan or bust'?

I think the problem is you used with Masked Compression like xprecomp+srep+lolz/$void=srep/$deflate=reflate+srep+lzma+diskspan:2mb:3mb Like that.
to use with Diskspan, Example xprecomp+srep+lolz+diskspan:2mb:3mb. I recommended it.

Second, Make sure the files exist CLS-Diskspan.dll on CIU v3 Folders. If not copy/paste through it.
Behind CIU V3 > Resources > Decompressors > DisksPan

KaktoR 08-06-2019 07:25

You can't use diskspan with masking method.

amin fear 16-06-2019 01:56

How can i enable " Precomp 042 " compression with CIU script ?

I compressed my archives using below command :
Code:

arc a -lc8 -ep1 -ed -r -w.\ Data\Data1.PAK -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "C:\Games\*"
any change in " External Compressor.ini " & " Records.ini " is needed ?

KaktoR 16-06-2019 01:59

You have to add precomp files, because CIU has no precomp anymore since long time.

amin fear 16-06-2019 02:38

Quote:

Originally Posted by KaktoR (Post 481377)
You have to add precomp files, because CIU has no precomp anymore since long time.

Thanks ! this means a lot of Inno script coding OR just adding "precomp.exe" & some other files to CIU specific folder ?

which version was the last time compatible with precomp 42 ? i have the old versions


All times are GMT -7. The time now is 16:32.

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