|
#496
|
|||
|
|||
|
Quote:
![]() Thanks... for doing this. it's pretty good. |
| Sponsored Links |
|
#497
|
||||
|
||||
|
Quote:
For this : Quote:
thank you |
|
#498
|
|||
|
|||
|
Simple
![]() Open Settings.ini Change 0 to 1 [ExtractSettings] InternalRecords=1 Make sure, you have configure records.ini and DefaultinstallDir |
|
#499
|
|||
|
|||
|
Another Bug!
set this and run test you will see! [Background] Enable = 0 then while installing, try music off and on not working properly. When installed finish there's no Finish button available. Only Pause Button available, but it's in middle not in the right place. and music button in right place.. No Finish button! Finish button is nowhere to be found ![]() and please hide that Pause/Resume button on Finish Page. add ztool Decompress missing dlls Hif2raw and raw2hif otherwise it won't work properly... Last edited by Kamalxhero; 19-01-2019 at 04:26. |
|
#500
|
|||
|
|||
|
Quote:
i just want your installer to be Perfect! That's why i report those bugs ![]() and Yes i have disable CRC, for test run.. Oky i wll check and tell you if i found bugs. New Features Request ![]() Add Background ON/OFF button, while unpacking. Actually no one need website button on unpacking, disable it on Unpacking, and add Background ON/OFF button like music ON/OFF Last edited by Kamalxhero; 19-01-2019 at 05:10. |
|
#501
|
||||
|
||||
|
I will see if it's possible
__________________
Haters gonna hate
|
|
#502
|
||||
|
||||
|
Yes it's possible:
![]() HW detection is now fixed too! Code:
v7.1.1b _____________________________________________________ -Fixed Music Button -Fixed Hardware detection (thanks to peterf1999 for the help) -Fixed Finish Button if CRC Check is not used -Fixed some other bugs -Website Button is now not visible on Installing Page -Added Background ON/OFF button on Installing Page > With this button you can toggle install background on/off
__________________
Haters gonna hate
Last edited by KaktoR; 19-01-2019 at 10:25. |
| The Following 4 Users Say Thank You to KaktoR For This Useful Post: | ||
|
#503
|
||||
|
||||
|
Hello KaktoR,
thank you for your excellent work! Here are the translations (Google translation) except for the French CustomMessage file for this: "Your system does partially meet the hardware reuirements" : Quote:
|
|
#504
|
|||
|
|||
|
Hi there guys
![]() How Can I change text color of Licence and InfoBefore? I'm not talking about LicencePage and InfoBeforePage but the text loaded from InfoBefore.txt and Licence File. I want to change it to White because I've added Concave.cjstyles file as the skin. For example InfoBeforePage looks like this: 2019-01-21_08h17_25.png As You can see the text loaded from InfoBefore.txt file is almost unreadable... Second problem is that something is covering the text above the EditDir field, and with Polish language "Create Desktop Icon" (in Polish "Utwórz ikonę na pulpicie") the "ę" letter is replaced with some other letter unknown for me. 2019-01-21_08h22_432.png Edit: Ok, as for the "Utwórz ikonę na pulpicie" the problem was in CustomMessages.iss file. Ive corrected it and translated rest of the remaining Polish messages, so I'm uploading the file. The only problem for now is for "Lokalizacja docelowa:" field. Last edited by Schabik; 20-01-2019 at 23:38. |
| The Following User Says Thank You to Schabik For This Useful Post: | ||
KaktoR (21-01-2019) | ||
|
#505
|
||||
|
||||
|
I will see to change the text color for dark themes.
---- Lokalizacja docelowa: Search for Code:
with WizardForm.SelectDirLabel do begin
Caption := AppNameOverride(msgSelectDirLabel3);
Left := FolderImage.Left + 42;
Top := ScaleY(0);
Width := ScaleX(488);
Height := ScaleY(45);
WordWrap := True;
end;
Will be changed in next version
__________________
Haters gonna hate
|
|
#506
|
|||
|
|||
|
Quote:
Thanks KaktoR That worked for me ![]() As for LicencePage and InfoBefore page, how about changing the background color? Ive changed the bg color to lightgrey and it looks like this: 2019-01-21_11h53_47.png What do You think about this solution? Just added to Code:
with WizardForm.InfoBeforeMemo do begin
Left := ScaleX(0);
Top := ScaleY(50);
Width := ScaleX(520);
Height := ScaleY(210);
end;
this line: Code:
Color := TColor($d3d3d3); |
| The Following User Says Thank You to Schabik For This Useful Post: | ||
KaktoR (21-01-2019) | ||
|
#507
|
||||
|
||||
|
Here is beta 3. I think if all is OK i will post this on post #1 soon.
Changes since last beta Code:
- Changed background color of License and Info before memo to a bright color > On dark themes you couldn't read text properly before - Made Installer window a bit bigger for better reading - Added missing dll to ztool KNOWN BUGS - ScrollBar on LicensePage and InfoBeforePage are broken if you use cjstyle skin
__________________
Haters gonna hate
Last edited by KaktoR; 22-01-2019 at 01:55. |
| The Following 4 Users Say Thank You to KaktoR For This Useful Post: | ||
|
#508
|
|||
|
|||
|
KaktoR there's a problem with background button in 7.1.1b.Beta3, even if I turn it off (The background I mean) in settings file while running the Installer there is a message that there is an unknown Custom message name "BackgroundON" in cm constant.
Another thing, I think that You forgot to write an IF statement to BackgroundCB and BackgroundButton to look like: Code:
#if UseInstallBackground == "1"
BackgroundCB := TNewCheckBox.Create(WizardForm);
with BackgroundCB do begin
Parent := WizardForm;
Left := ScaleX(0);
Top := ScaleY(0);
Width := ScaleX(0);
Height := ScaleY(0);
Visible := False;
Checked := False;
end;
BackgroundButton := TNewButton.Create(WizardForm);
with BackgroundButton do begin
Parent := WizardForm;
Left := WebsiteButton.Left - WebsiteButton.Width - 10;
Top := WebsiteButton.Top;
Width := WebsiteButton.Width;
Height := WebsiteButton.Height;
Caption := ExpandConstant('{cm:BackgroundON}');
OnClick := @BackgroundButtonClick;
end;
#endif
Without that no matter if You enable or disable UseInstallBackground it will be enabled, if I recall. Last edited by Schabik; 21-01-2019 at 23:30. |
| The Following User Says Thank You to Schabik For This Useful Post: | ||
KaktoR (22-01-2019) | ||
|
#509
|
||||
|
||||
|
The unknown Custom message name is because you don't use the new CustomMessages.iss
![]() Will fix the button
__________________
Haters gonna hate
|
| The Following User Says Thank You to KaktoR For This Useful Post: | ||
pakrat2k2 (22-01-2019) | ||
|
#510
|
|||
|
|||
|
Quote:
Nope, I am using the new CustomMessages.iss |
![]() |
|
|
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 |
| Portable Installer Inno Setup Script | y_thelastknight | Conversion Tutorials | 59 | 23-10-2020 00:02 |
| INDEX - Conversion Tutorial Index | Razor12911 | Conversion Tutorials | 5 | 11-06-2020 02:05 |
| Simple Arc Installer | 78372 | Conversion Tutorials | 1 | 15-06-2017 15:37 |
| MSC+Srep+lzma Simple Script Example | gozarck | Conversion Tutorials | 10 | 07-09-2015 16:31 |