![]() |
I don't know, but my guess is look in DSG_Module.iss
|
ok I found
it's in tpExec function ;) |
Registry size information
Am I missing something simple? I everything working as intended, including custom font, messages, images, etc.,. .. what do I need to change to get the estimated uninstall size to work? It's only showing 1KB.
Thanks for all your hard work by the way. You made things fairly simple. |
you have to decompress setup.dll
copy record.ini into the builder the remove them from your install foder if you have setup.dll, no progress bar/time |
For add text durring batch execution :
in DSG_MODULE.ISS I moddify the tpExec function like this: Quote:
|
Quote:
Edit: I thought you were replying to my post. My mistake. |
Quote:
Code:
CompactMode=1 |
CRC Errors
Quote:
Code:
[CRCCheck]Code:
[Record1]Code:
Setup_DLL\Code:
Internal Error: An attempt was made to expand the "app" constant before it was initialized. |
Dsg crc
I'm using DSG and including the checksum files; just not sure what I'm doing wrong here...
|
Quote:
You can include these files, but to do so you must use the DSG tools by clicking on the TOOLS button and then on the "Setup DLL" tab. You must unpack Setup.dll and place all the unpacked contents of Setup.dll and Records.ini in a folder named "Setup_DLL" next to the installer script and recompile the script. and did you read the helpfiles from helpfolder there is all information about the Installer for DSG is also an helpfile |
CRC Errors
Quote:
Run DSG Extract Setup.dll Copy to Setup_DLL Changed the line in settings.ini (I'm not sure about this step. I copied the line with the .dat extension and renamed checksums.dat to Data1a-01 to match what DSG made.) Compiled. Get Error. I'm fairly sure I followed the steps correctly. |
Looks like a bug. However under normal circumstances you cannot call {app} before the folder is actually initialized by inno setup, but in this case the crc check will start at the very end (I think it's the very last action if you enable all possible options), so I don't know why you get this error. I will ask César if he can fix this.
|
CRC Errors
Quote:
Code:
beginCode:
begin |
Quote:
If your hash file source path is the installation folder, you're in trouble. |
1 Attachment(s)
Try this
|
Quote:
Code:
Line 4492: |
Works fine here. Did you changed something in DSG_Module.iss?
|
Quote:
|
Quote:
Edit: Everything seems to be working as intended! Thank you! |
Typo
Found a typo. Just thought you should know.
"Your system does partially meet the hardware reuirements." |
Title scale
Is there a way to scale the title bar height and left padding with DPI changes as well? Things start getting clipped/overlapped at uhd resolutions and over %200 scale. I can edit the height in a fixed way by editing the vsf but I'm sure that will be huge on lower resolutions. Am I walking into a dead end here?
|
Compact Mode Components Bug
I think I found a bug for the components page when using compact mode (Hotfix 8).
This bug makes the Start Menu Checkbox stay visible on components page when using compact mode. :) FIX: in this section: Code:
ComponentsPageVisible := (not ComponentsPageVisible);Code:
StartMenuCB.VisibleCode:
#if !UpdateModeCode:
#if !UpdateMode |
1 Attachment(s)
Thanks, fixed.
The same should be added on Code:
procedure TasksPageClick(Sender: TObject);Code:
StartMenuCB.Visible := (not TasksPageVisible); |
Is there anyway to modify the script to have a separate audio file play during the splash screen, and then start the normal music file when the splash ends? I tried using a LLM to analyze the script and Settings.ini to see if it could add that in, and it couldn't. Not really an important feature, but I was just wondering :D
|
Start Menu Shortcut Bugs!
When I checked the start menu shortcut creator checkbox, I realized that the shortcut is not created inside the programs folder of the start menu. However it was created when I checked the desktop shortcut creator checkbox. So I fixed it like this:
Code:
//#if !CompactMode || !UpdateModeCode:
StartMenuCB := TNewCheckBox.Create(WizardForm);Code:
Checked := False; // 1) set default state |
1 Attachment(s)
Thanks, there is another bug when you create icons. If you use uninstaller the icons from startmenu will not get removed. I already fixed it here.
However Icon creation should not be possible when using UpdateMode, so all you have to do is change Code:
#if !CompactMode || !UpdateModeCode:
#if !UpdateModeEdit: Should be fixed now. Use attachment and look for code changes. |
I need someone for testing dpi scaling with native 4k resolution.
What you should test: change desktop dpi scaling from 100% to 200% (or higher if possible) and see if all elements are on the correct place. This test should be really quick. Just run the installer and click through every page. |
1 Attachment(s)
Here is the new 7.6.0 update, currently in beta.
If you find any errors, let me know. |
1 Attachment(s)
Incorrectly detected VRAM value.
My GPU has 8GB video memory. Possible causes: iGPU has 3GB video memory and perhaps this is what was detected instead of dGPU. |
1 Attachment(s)
Quote:
|
Quote:
|
1 Attachment(s)
Quote:
Quote:
Also tested on Linux wine, setup does not launch at all. |
Quote:
|
Please update
Hello can you please update the installer to work with DiskSpan_GUI v2.0.2.4 Thanks. :)
|
1 Attachment(s)
Sure, here you go.
Still beta. I don't know what has changed since the last beta, but something with CRC checking and some other things. I forgot to write a proper changelog. |
Quote:
|
Quote:
|
Batch app just save the batch file (if you use one via [Batch] to {app} folder.
|
New feature in Beta 2
Hash check for compressed archives https://i.imgur.com/rFdEyKm.png Hash and Algorithm will be defined in Records.ini for each Data.bin file. Example: Code:
[Record1]Hash check for extracted files https://i.imgur.com/mwA3iK2.png This is only available if you don't use QuickSFV/RapidCRC check. Checksums should be stored in Setup.dll file or somewhere else. If you use {tmp} as source path then the hash file should be stored in Setup.dll file. If you use {app} the hash file should be stored in {app} folder. If you use {src} path the hash file should be located near Setup.exe. Algorithm should be defined just like in hash for compressed Data.bin file. The hash file name can be anything you want. In this example it is created by DSG. Example: Code:
[Record2]Other changes: - GPU VRam is fixed. It should be now displayed correctly. Issue Values will be read directly from registry without any library or dxdiag thingy, simply because it is just too slow. - Updated some help files (it is not done yet 100%). https://fileforums.com/showpost.php?...postcount=1435 |
I get this error when trying to compile
--------------------------- Compiler Error --------------------------- File: C:\Users\User\Desktop\ASIS_v7.6.0\Resources\DSG\DS G_Checksum.ish Line 311: Column 45: [ISPP] Undeclared identifier: "DSG_CHECKSUM". --------------------------- OK --------------------------- I am using latest build of ASIS and DiskSpan_GUI and i am trying the inbuilt hash feature for game files and the compressed data files i am also using BLAKE3-256 as my hash algorithm. Thanks:) |
| All times are GMT -7. The time now is 06:40. |
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com