#1501
|
|||
|
|||
Questions from calculated installed game size info added via INNO setup appsize info: Use raw bytes count on installed all files or use phsycal disk storage count calculated via OS??? (Note: The disk size reservation is related to the sector size. Example: 512byte, 4096byter, 32kB, etc...)
Example: ~160k files, and size in bytes (without uninstaller): 19 034 361 518 byte OS calculated Disk Space size (NTFS, WinXP): 19 340 095 488 byte Size difference its ~300MB! |
Sponsored Links |
#1502
|
||||
|
||||
That's more precisely the cluster size.
__________________
Joe Forster/STA For more information, see the FileForums forum rules and the PC Games forum FAQ! Don't contact me via E-mail or PM to ask for help with anything other than patches (or software in general) done by me, otherwise your request may be deleted without any reply! Homepage: http://sta.c64.org, E-mail: [email protected]; for attachments, send compressed (ZIP or RAR) files only, otherwise your E-mail will bounce back! |
#1503
|
|||
|
|||
Hello, how do I display the installer at the bottom of the screen? instead of being in the middle?
|
#1504
|
|||
|
|||
[Dying Light] csb file failed CRC check
Unarc.dll error code: -12
Error: file ...\Music_2.csb failed CRC check compression: xtool:mreflate + any other method things tried: disable AV, install MVC++, increase page file, install on different drive ----- using different pre-compressor like xt_lzo (or none at all) solves the issue Last edited by sakhjack; 13-05-2022 at 22:04. Reason: solution |
#1505
|
|||
|
|||
The task killing code (green line, from use Xtool) its works from newer OS than Win XP??
Code:
procedure CancelButtonClick(CurPageID: Integer; var Cancel, Confirm: Boolean); .... ISDoneError:=True; ISDoneCancel:=1; Exec('taskkill.exe', '/f /im XT.exe','', SW_HIDE, ewNoWait, ResultCode); DelTree(ExpandConstant('{app}'), True, True, True); AllCancel2; .... |
#1506
|
||||
|
||||
It does.
__________________
Joe Forster/STA For more information, see the FileForums forum rules and the PC Games forum FAQ! Don't contact me via E-mail or PM to ask for help with anything other than patches (or software in general) done by me, otherwise your request may be deleted without any reply! Homepage: http://sta.c64.org, E-mail: [email protected]; for attachments, send compressed (ZIP or RAR) files only, otherwise your E-mail will bounce back! |
#1507
|
||||
|
||||
Is it possible to import an external variable, for example the name of the software package that is defined within a ".ini" config file, for use in an Inno Setup message (namely SetupAppTitle, line 31)?
In essence I'm attempting "SetupAppTitle" to read (for example) "{#Game_Name} Setup", but can't quite figure out if this is possible. I'm currently just manually overwriting the value in question but it is a tad tedious. |
#1509
|
||||
|
||||
Hi guys. I'm using Inno Script Studio + Inno Setup (both updated) to compress little games. For example "Cult of the Lamb" (1.14GB).
I have tested the installation on my pc (ryzen with 16 threads and 16GB of ram), but a friend of mine is getting an error "out of memory" on his pc with 32GB of ram. These are the parameters that I'm using: Compression=lzma2/ultra64 DiskSpanning=yes DiskSliceSize=max LZMAUseSeparateProcess=yes LZMADictionarySize=1048576 LZMANumFastBytes=273 someone knows which one of those parameters is causing "out of memory" error in installation? Thanks to everyone that is going to help me. Checking from the task manager, the setup in installation is using 1029MB of ram at max and works fine on my pc. Edit: solved using -> LZMADictionarySize=524288 Last edited by L0v3craft; 26-08-2022 at 01:08. |
#1510
|
||||
|
||||
Quote:
Code:
LZMADictionarySize=10500
__________________
¤ Life good be a Dream ¤ |
#1511
|
||||
|
||||
Inno setup Enhanced edition(5.5.1.ee2)(u)
Hi guys, I have questions about features of this version
1: what's the [speed button] is and what is its use? 2: how to create a custom page in design mode?
__________________
¤ Life good be a Dream ¤ Last edited by Lord.Freddy; 27-08-2022 at 05:18. |
#1512
|
||||
|
||||
Speed Button (see image) of the New SpeedButton class is a button with the option of including a context menu, but for this you must also use TPopupMenu and TMenuItem.
|
The Following 2 Users Say Thank You to Cesar82 For This Useful Post: | ||
Gehrman (28-08-2022), Lord.Freddy (28-08-2022) |
#1513
|
||||
|
||||
Is there a list of T<> identifiers in Inno Setup 6?
I am trying to load an animated gif but I'm finding it hard. TBitmapImage is incorrect, I found references online to needing to use TGifImage or TImage but they don't appear to exist in inno. Here's what I have so far (I understand that it isn't correct): Code:
ExtractTemporaryFile('LOGOIMAGE.GIF'); LogoImage := TGifImage.Create(WizardForm); with LogoImage do begin Name := 'LogoImage'; Parent := WizardForm; SetBounds(ScaleX(10), ScaleY(10), ScaleX(300), ScaleY(60)); //Gif.LoadFromFile(ExpandConstant('{tmp}\LOGOIMAGE.GIF')); end; |
#1514
|
||||
|
||||
I think there is no native way in Inno Setup to show animated gif images.
__________________
Haters gonna hate
|
#1515
|
||||
|
||||
Would that mean I would need to include a library such as botva2?
|
![]() |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |