|
|
|
#1
|
|||
|
|||
|
Thank you very much, in the end I was able to make the correction and it works.
|
| Sponsored Links |
|
#2
|
||||
|
||||
|
Light Installer Script 1.0.1.5
Added Light Installer Script 1.0.1.5 in first post.
Code:
- Updated XHashEx.dll library to v1.0.0.0 build 230729 no UPX version.
- Updated SplitLib.dll library to v1.0.0.5 build 240330 (UPX).
- Added support to splash image (IsGsg.dll by South.Tver).
- Added watter efects in all installer images (WaterCtrl.dll by RESTOOL).
- Added suport to skinsharp (SkinH.dll library by Shegorat) with Inno Setup 5.
- Added support to include compressor inside "Setup.exe" file.
>> Add the compressors to a "DECOMPRESSOR" folder next to the script before compiling to include the desired compressors within "Setup.exe" file.
>> It also supports using folder structure with desired compressors.
- Added support to new hash algorithms using key Size= of the "Records.ini" file to set algorithm type.
>> If key Size= exists, LIU will use the "VerifyHashesFromFileEx" function from "XHashEx.dll", otherwise it will use the "VerifyHashesAutoFromFileEx" function.
>> If you enter the type of algorithm you have 21 algorithm options, otherwise only 5 algorithm options.
>> If you prefer, you can also enter just the algorithm number from "0" to "21' in the parameter value.
** crc32, md5, sha1, sha256, sha512 (These 5 algorithm are supported in auto mode).
** sha512_256, sha3_256, sha3_512, blake2_128, Blake2_256, blake3_256, haval3_128, haval3_256,
** ripemd_128, ripemd_256, tiger_128, tiger_192, tiger2_128, tiger2_192, murmurhash_32, xxhash_32
- Fixed some minor bugs.
Last edited by Cesar82; 22-04-2024 at 15:59. |
| The Following 5 Users Say Thank You to Cesar82 For This Useful Post: | ||
audiofeel (21-04-2024), Gehrman (22-07-2024), Lord.Freddy (22-04-2024), mausschieber (21-04-2024), ScOOt3r (21-04-2024) | ||
|
#3
|
||||
|
||||
|
FadeEffect
Hi Cesar82,
A few days ago, I embarked on creating a custom function for the "FadeEffect" feature in my installer script. While I successfully implemented the function, I encountered an issue when attempting to close the installer using the newly added functionality. Specifically, I received an error message. To troubleshoot, I meticulously reviewed my code and made adjustments based on your original script. The modified version now resides in the file below, and I'm pleased to report that it works seamlessly without requiring any additional lines of code such as WizardForm.Free. However, there are only one remaining challenges: Minimizing and Maximizing Animation Not Displayed: Despite the improvements, minimizing and maximizing animation doesn't appear as expected. I kindly request your assistance in resolving these issues. Your expertise would be greatly appreciated.
__________________
¤ Life good be a Dream ¤ |
|
#4
|
||||
|
||||
|
Quote:
You could throw AnimateWindow into the WizardForm.OnShow event. I modified the code a little and added timers for FadeIn/FadeOut (see attachment). Last edited by Cesar82; 27-05-2024 at 11:25. |
| The Following 2 Users Say Thank You to Cesar82 For This Useful Post: | ||
Lord.Freddy (27-05-2024), ScOOt3r (30-05-2024) | ||
|
#5
|
||||
|
||||
|
Quote:
__________________
¤ Life good be a Dream ¤ |
| The Following User Says Thank You to Lord.Freddy For This Useful Post: | ||
Cesar82 (04-06-2024) | ||
|
#6
|
||||
|
||||
|
Quote:
But I would like to inform you that the VRAM is not reading correctly... Reading is limited to 32-bit integers. Should have returned 12 GB of VRAM here (see first image). Also the windows identification is not being displayed correctly. It is labeled as "Windows 10 Interprise" and is "Windows 10 Pro" (see second image) I attached a code that detects VRAM above 4 GB in case you want to use part of it for your module (see third image). EDIT: I think you should use the "Extended" type (not Int64) to make it compatible with previous versions of Inno Setup such as the IS Enhanced 5.51 version that many use due to the excellent programming/debugging interface and extra classes offered in this version. Last edited by Cesar82; 04-06-2024 at 15:27. |
| The Following User Says Thank You to Cesar82 For This Useful Post: | ||
Lord.Freddy (04-06-2024) | ||
|
#7
|
||||
|
||||
|
Quote:
Quote:
Quote:
well done, i hope this release should work as expected, and also if you have windows 11, please test this release on that machine to see if every things work`s well or no. Edit: i also modified the GetCPUArchitecture function to work with GetNativeSystemInfo and IsWow64Process api function.
__________________
¤ Life good be a Dream ¤ Last edited by Lord.Freddy; 05-06-2024 at 00:28. |
|
#8
|
|||
|
|||
![]() hi. 1) why its opening calculator automatically? 2) why this error? |
|
#9
|
||||
|
||||
|
Quote:
Code:
#define public GameSizeMB ???? Code:
#define MbToBytes(int Value) \
Local[0] = AddBackSlash(GetEnv("TEMP")) + GetDateTimeString('yyyy/mm/dd-hh:nn:ss', '.', '.') + "_tmp.ISPP", \
Local[1] = """" + AddBackslash(SourcePath) + "Resources\Includes\Calc.exe"" " + Str(Value) + " * 1024 * 1024 > """ + Local[0] + """", \
Exec(GetEnv("ComSpec"), "/C """ + Local[1] + """", "", 1, SW_HIDE), \
Local[2] = FileOpen(Local[0]), FileOpen(Local[0]), \
Local[3] = FileRead(Local[2]), FileClose(Local[2]), \
DeleteFile(Local[0]), Local[3]
|
|
#10
|
|||
|
|||
|
Now i get
Error : Extract Temporary File setup.dll was not found |
|
#11
|
||||
|
||||
|
Quote:
But if you change the installer target file which is "Setup" in: #define OuputFile "Setup" You must rename the Setup.dll file to the same name as the executable just changing the extension which is ".dll" NOTES: I found a small bug in the LIS which is the name of the "DECOMPRESSORS" folder must be "DECOMPRESSOR" (without the "S") so that the decompressors added to the folder are inserted in Setup.exe (You cannot use it together with the DSG_InternalDLL option ). So rename your folders to "DECOMPRESSOR" if you need to use the resource, or change name in DSG_Module.iss to "DECOMPRESSORS". |
|
#12
|
|||
|
|||
|
Quote:
i am not created any file with disk span. opened InstallerScript [2024.04.04] and clicked built and run setup file. then receive setup.dll error still |
|
#13
|
||||
|
||||
|
Quote:
Show the folder with Setup.exe so I can see its contents. See the attached video that everything works here for me. |
|
#14
|
|||
|
|||
|
Quote:
I cant find setup.dll in your script. DO i need first use compressor for create this file? |
|
#15
|
||||
|
||||
|
yes first compress your installed game
__________________
It would be nice if you appreciate my work with the thanks Button |
![]() |
| Tags |
| asis, ciu, inno, installer, ultraarc |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| [Help] need Advanced Installer script with Razor1911's UltraArc module | rez3vil | Conversion Tutorials | 3 | 15-04-2024 02:24 |
| Ultimate Conversion Compressor (UCC) | vollachr | Conversion Tutorials | 55 | 26-04-2021 09:27 |
| INDEX - Conversion Tutorial Index | Razor12911 | Conversion Tutorials | 5 | 11-06-2020 02:05 |
| How many forum members does it take to change a light bulb? | rms2001 | XBox Games | 6 | 12-01-2004 05:31 |