FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Light Installer Script (LIS) - DiskSpan_GUI (https://fileforums.com/showthread.php?t=103408)

KaktoR 03-08-2024 05:18

Quote:

Originally Posted by demon964 (Post 505174)
It's not a major issue, but even when I add folder exclude list to the first `data.bin` file , it still creates an empty folder after installation.

This is a freearc issue.

demon964 15-08-2024 04:59

Please add this functions when you update this script with disk span gui

1) Delete selected game save folder when uninstalling game

2) check regedit for reg files and check C:\\ some files, if found show message that game already installed. You need remove files

Example from audiofeel

Quote:

function CheckFiles(): Boolean;
begin
Result:= True;
if FileExists(ExpandConstant('{app}\BIO4\movie\r508s0 1c.sfd')) then
begin
Result:= False;
MsgBox('game already installed' + #13 + 'please delete files manually or select delete all for auto delete', mbError, MB_OK);
Exit;
end;
end;
3) maximum RAM and CPU usage (ASIS installer have this function) like fitgirl. Because low end PC give error during installing

4) create predefined components for better management. I cant find task number and select from diskSpan gui

https://imgur.com/a/Loqv7KQ

5) if setup.exe found components file (data-voice-eng.bin) enable checkbox automatically. If not found disable checkbox

Cesar82 15-08-2024 08:57

Quote:

Originally Posted by demon964 (Post 505298)
Please add this functions when you update this script with disk span gui

1) Delete selected game save folder when uninstalling game

2) check regedit for reg files and check C:\\ some files, if found show message that game already installed. You need remove files

Example from audiofeel



3) maximum RAM and CPU usage (ASIS installer have this function) like fitgirl. Because low end PC give error during installing

4) create predefined components for better management. I cant find task number and select from diskSpan gui

https://imgur.com/a/Loqv7KQ

5) if setup.exe found components file (data-voice-eng.bin) enable checkbox automatically. If not found disable checkbox

The name is Light Installer to be "light".
So I don't intend to add extra features like delete save games. The option to check if the .bin file is together with setup.exe will be implemented in the next version of LIS.
Tasks and components should be configured directly in the script according to each installation.
There is no checkbox to mark whether you want an installation using LOW config, but you can include a task and replace the TRUE value in Unpack_Process with the state of the checkbox of the task you add for this.

Almost all of these features are supported by LIU beta. I will share an updated version of LIU soon.

Cesar82 16-08-2024 08:38

Light Installer Script 1.0.1.6
 
Added Light Installer Script 1.0.1.6 in first post.
Code:

- Added compatibility with DiskSpan GUI 2.0.2.1+.
- Fixed some minor bugs.


Lord.Freddy 17-08-2024 23:35

2 Attachment(s)
The following issue will occur when applying a 125%+ scale.

Cesar82 23-08-2024 04:11

1 Attachment(s)
Quote:

Originally Posted by Lord.Freddy (Post 505324)
The following issue will occur when applying a 125%+ scale.

Hotfix attached.

Dario06 04-10-2024 03:15

Modern style
 
1 Attachment(s)
he's stoned!

Cesar82 04-10-2024 08:56

2 Attachment(s)
Quote:

Originally Posted by Dario06 (Post 505816)
he's stoned!

Does this happen every time, or was it a random occurrence?
What operating system are you using?

It works fine here, even if you use Windows' display scale above 100% (like 150%).
I tested it by compiling with Inno Setup 5.05 (recommended) and also with Inno Setup 6.32 and this error did not occur even once.
My tests were done on Windows 10 PRO x64

Dario06 04-10-2024 10:48

2 Attachment(s)
Quote:

Originally Posted by Cesar82 (Post 505818)
Does this happen every time, or was it a random occurrence?
What operating system are you using?

It works fine here, even if you use Windows' display scale above 100% (like 150%).
I tested it by compiling with Inno Setup 5.05 (recommended) and also with Inno Setup 6.32 and this error did not occur even once.
My tests were done on Windows 10 PRO x64

this system bro...

it's not a problem friend, it was just to test your script, but I like to test new things :)

I used your bat to compile.

Cesar82 11-04-2025 05:28

Light Installer Script 1.0.1.7
 
Added Light Installer Script 1.0.1.7 in first post.
Code:

- Added compatibility with DiskSpan GUI 2.0.2.3+.
- Fixed some minor bugs.


Budakgamers9849 11-05-2025 06:43

https://i.imgur.com/TRWDgBm.png
https://i.imgur.com/VOcSp8W.png

Can I change the text in this section? I thought this was a logo image that was in the recourses, but after I changed it, the text didn't change.

Cesar82 11-05-2025 10:14

1 Attachment(s)
Quote:

Originally Posted by Budakgamers9849 (Post 507668)
https://i.imgur.com/TRWDgBm.png
https://i.imgur.com/VOcSp8W.png

Can I change the text in this section? I thought this was a logo image that was in the recourses, but after I changed it, the text didn't change.

You need to recreate the alpha layer of the image.
See attached video.

goponfs 25-03-2026 08:03

You cannot use characters for the GameName
For example you can use
#define GameName "Clive Barkers Undying"
but not #define GameName "Clive Barker's Undying"
Can be possible update the script?

Cesar82 25-03-2026 17:50

Quote:

Originally Posted by goponfs (Post 509686)
You cannot use characters for the GameName
For example you can use
#define GameName "Clive Barkers Undying"
but not #define GameName "Clive Barker's Undying"
Can be possible update the script?

Open the script and search for {#GameName}
NOTES: Replace only inside the [Code] section of the script.
Code:

{#GameName}
Replace with:
Code:

{#StringChange(GameName, "'", "''")}

wrathma 25-03-2026 22:59

Quote:

Originally Posted by goponfs (Post 509686)
You cannot use characters for the GameName
For example you can use
#define GameName "Clive Barkers Undying"
but not #define GameName "Clive Barker's Undying"
Can be possible update the script?

you can put 2x single quote like this
#define GameName "Clive Barker''s Undying"
and it will be rendered as single quote. you dont have to make any changes to the code section for this.:):)


All times are GMT -7. The time now is 06:25.

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