![]() |
3 Attachment(s)
Quote:
If You want to see how it looks, here You are:D I'm attaching screens "Before" and "After" :D :) Components page before the modyfication: Attachment 24183 And after modification: With Radiobuttons: Attachment 24182 With Checkboxes (Yep, I also modified them to add languages as a subcategory): Attachment 24181 I hope KaktoR will love it because everything he did works and brought this idea to the daylight :) |
It's very pretty Schabik !!
|
Quote:
Thanks!! :D As I said I hope KaktoR will appreciate it too as it is his Project. |
I was able to fix this weird skin bug for the scrollbars (thanks to Cesar, he gave me this tip).
I have also changed the language archive unpacking (it has now correct progress). I think I will implement the ISHash now to compactmode and share an updated script then (might take some days). Next update: Code:
v7.1.2 beta7 |
While I'm away. I have fix lots of issues.
and i have remove all other languages. For my personal use I have fix time remaining and some redist CM and some other minor issues.. I have try to fix that known bugs, try almost a day but nothing works... But Now i see you have fixed it. KaktoR how did you fix this known bug? Fixed ScrollBar on LicensePage and InfoBeforePage if you use cjstyle skin Please add codes that fixed it. so I can upgrade mine. Thanks! |
You have to use TNewMemo for the Memos (WizardForm.LicenseMemo and WizardForm.InfoBeforeMemo) because cjstyles is not compatible with TRichEditViewer.
|
Quote:
Thanks... |
When will be beta7 posted? :-)
|
^ when its done !! Why even ask ??
|
Just eager to test it :-)
|
Maybe today :)
|
Thanks Bro.. i came back
|
1 Attachment(s)
Here is b7
If you encounter any errors, make a screenshot and send me your settings.ini It could always help to debug the setup (F9) to find possible errors with different settings (I have not tested all possible settings until now). |
3 Attachment(s)
CJStyles not working
If I choose any cjstyles file it unpacks but do not load. What should it look like: Attachment 24219 Ehat it looks like: Attachment 24220 Another thing, Why components are more complicated in this beta than the previous one? In this beta, if You add a name to F.O.X. "Archive1Name=" it changes to radiobutton+it has the name that we added ("Archive1Name=Nameofcomponent"), if there is no name it changes to checkbox and gives us the name of language file. In my opinion previous solution was way better, I hope You agree. Approx the same amount of code and more clarity. :) As for the cjstyles problem, I'm attaching my settings.ini In Beta6 it worked like a charm. |
Quote:
With new update you can choose the style INI files (just open one of the styles with 7z) Example for 1.cjstyles you used: Code:
1.cjstyles\.rsrc\TEXTFILE\Quote:
With the new system you can disable checkboxes you don't need without code editing. Before all checkboxes were always visible even if you only needed one or two of them. |
Quote:
Thanks for the answer :) Now it works like a charm :) When You fix the components issue it will be helpful :) And You're right it will be in fact useful :) |
On system Detection,
GPU won't detect old ATI Cards but CIU2 and 3 Detect Ati cards. I can add picture if you want... I want your ASIS to be Perfect :) So when you fix all Bugs it should be better... if you could add codex and plaza NEW Interface like compact mode. some guys don't like Graphics. so simple interface is good for those guys. Everything on One Page :) |
Info
1 Attachment(s)
Hello,
How can I not display this when I do not need the language files? Because in seting I did this: Quote:
Thank you |
Will be fixed soon.
|
How to found external compresion (Records.ini) with lastest update?
|
Quote:
If I recall the only thing that was changed since 7.0.8 it was that Records.ini can be internal, other from that is all the same. You enter Records to Records.ini and voila, if You use Components like seperate files for languages, You configure them in Settings.ini. |
Yes need activate internal records to 1 in settings.ini, Thanks.
Can it integrate the progress bar in setup frontend? Sorry for my english.. |
Components will be completely reworked (just because with ISPP it's a mess!).
Working atm on crc check for compactmode. |
Hi KaktoR,
Please update the first page with latest Release! |
Hello there is 4 bugs that im notice,
1st is uninstall icon in control panel doesent show, at least in windows 10 i solve that adding in [Setup] UninstallDisplayIcon={uninstallexe} Second bug is [CRCCheck] when u disable it at the end u get this error https://image.prntscr.com/image/t9ZB...5xyug7lKg.jpeg 3rd bug is when u increase font size in windows 10 (idk about other) install window get messed. 4th bug is showing installation size in add remove and in other 3rd party uninstallers, it says 1.5mb. I solve that adding this line in [Setup] UninstallDisplaySize= Set in bytes. (1048576 bytes = 1 megabyte) u need pretty big number, and u need to change it manualy every time. Maybe someone have some automatised line for this. Additional tips to show in add/remove programs AppPublisher=Name AppPublisherURL=https://example.com/ |
Could you add a screenshot of bug #4 please?
|
Quote:
When we create setup.exe file. It's only count itself not the game. He's talking about Uninstall panel on the windows.. It only shows 1.5mn or 30mb of setup.exe So we have to add Uninstall display size.. To show the game size.. |
Code:
UninstallDisplaySize={#SizeMB} |
Quote:
Cause UDS need Game Size in bytes, not in MB or GB 10737441824 (1MB) To get right size on UDS you have to put size on like this. 1024 x 1024 = 1,048,576 (1MB) 1,048,576 x 1024 = 1,073,741,824 (1GB) |
Quote:
UninstallDisplaySize={#SizeMB} and not UninstallDisplaySize=Any number in MB SizeMB is probably linked to the settings/setup ini, same value you put in for the game size on it. Not sure as im not home, but thats what i understand at least and if SizeMB is the same used for the game size, it should also work for this. |
1 Attachment(s)
Quote:
cause setting.ini requires size as megabytes, but UDS requires size as bytes. The only way to fix this to add another one like {#UDSize} to Script and settings.ini and we have to put game size as megabytes and UDS size as bytes It will solved the problem. |
Well, if its in bytes then this will not work but you can set it up adding zeros to the end, its not 100% accurate but it should work almost fine.
UninstallDisplaySize={#SizeMB}000000 Maybe instead of 1024 values we can change the mb value to 1000 so it would work for for install and uninstall. As said, im not at home so i cant take a better look into it. |
Quote:
I already done it. Settings.ini Size=46080 UDSize=42563458747 in Script UninstallDisplaySize={#UninstallSize} When, we Pack the Game, we just need to copy paste the games size to UDSize is that simple. |
Ok I will write a simple function for calculation ({#SizeMB} * 1024 = UninstallDisplaySize).
This should work then because {#SizeMB} * 1024 = bytes |
Quote:
Thanks KaktoR !!! |
Here is a changelog for next version.
Code:
v7.1.2 beta8 |
2 Attachment(s)
Code:
Components help: |
2 Attachment(s)
Hello,
thank you for this new version. Under Windows 8.1Pro after choosing the language of the installation wizard, after splash display I have this message 2 times (look at my picture) before the wizard opens because of "if CurPageID = ComponentsPage.ID then "and yet I did this in settings.ini:" because when I run the installation from innoSetup, it displays this: look at my image. Thank you for your help |
Fixed. Replace Script.iss from "7.1.2.beta8.FIX.7z" in previous post.
|
U are missing close and minimise icons in setup
http://prntscr.com/mz6bn8 Edit: Now i have it.... hmmm strange :P i didnt do anything just recompile :) Edit2: It is possible to add more background musics so it can play random or by some order? Just a question beacuse some installations take long and maybe 2-3 different music files will look (non bornig). |
| All times are GMT -7. The time now is 09:55. |
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com