#346
|
||||
|
||||
Quote:
I will check as soon as possible and try to solve. Thanks! |
Sponsored Links |
#347
|
|||
|
|||
Quote:
|
#348
|
||||
|
||||
@andreiutzu21
Code:
Resources\Decompressors\FreeArc\CLS.ini Code:
[Srep] Bufsize=24m transfer_ReadBufSize=512k transfer_WriteBufSize=512k Memory=50%-512m → Memory=512m TempPath={app} |
The Following 2 Users Say Thank You to Simorq For This Useful Post: | ||
andreiutzu21 (27-12-2019), Cesar82 (27-12-2019) |
#349
|
||||
|
||||
Quote:
I will test component calculation in the next days.
__________________
Haters gonna hate
|
The Following 3 Users Say Thank You to KaktoR For This Useful Post: | ||
#350
|
||||
|
||||
Ok guys,
so here is the problem when using external scripts like custom icons, shortcuts and the Registry script. When uninstalling the game, it does not remove the Program folder in Start Menu and the Registry keys still remain despite the game is uninstalled. If you have time, please implement this option. Here is the script. Please try it. Thanks. ![]() Edit: I managed to delete the program folder in Start Menu --> Code:
[UninstallDelete] Type: filesandordirs; Name: "{userprograms}\{groupname}" /me embarrassed... ![]() Well, the Registry entries "issue" is still there. Last edited by Proxson; 08-01-2020 at 08:33. |
#351
|
||||
|
||||
*knock...knock...anybody home ?
![]() Edit: Ok, I got the Registry "issue" under control. It's not an elegant solution but it works. Till someone finds something better. Code:
#define AppPublisher "SEGA" Code:
{ remove product code registry entrie } if ProductCode <> '' then RegDeleteKeyIncludingSubkeys(HKLM, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\' + ProductCode); RegDeleteKeyIncludingSubkeys(HKLM, 'SOFTWARE\{#AppPublisher}'); end; end; ![]() Last edited by Proxson; 07-01-2020 at 17:12. |
#352
|
||||
|
||||
Quote:
There will be some bugs with these changes. The About page has stopped working. You can change the script for your use, but I ask you to keep the About page working and original by displaying the credits of the original CIU contributors and translators. Answering your question: CIU does not create an uninstaller as in conventional Inno Setup installers (Unis000.exe, Unis000.dat). Uninstall.exe from the installation folder is the same Setup.exe file that is copied to the folder and the uninstall functions are all defined in the code section. Therefore the installer does not remove icons included in the [Icons] section, so you must include them in the code within the CreateShortcuts and DeleteShortcuts functions. The [UninstallDelete] section is also not supported on CIU as the default uninstallation of Inno Setup is never performed. You can include the functions of deleting folders or files within the Uninstall function of code. NOTES: You have removed almost all languages, this can cause errors. I would not recommend these changes all in the script the way you did. You could simply have limited the languages you want to make available in Setup.ini or disabled the lines in the [Files] section and changed only in GetLanguage and also the part in CheckAvaiLanguages where you changed to: if (TmpStr2 in ['HR', 'ENUK', 'EN']) then |
#353
|
||||
|
||||
Sorry, I removed all that stuff to make the CIU smaller. Regarding the 'About' page, it wasn't intentionally. I was so ocupied with this icons and registry issues.
The 'About' page will return back again. Sorry again. My intention was not to discredit anyone who worked on this project. Removing unnecessary languages didn't affect the CIU integrity. It's working without any problems. Looks like you've faced me against the wall. So script with icons won't work in a regular way...hmm. I'm dropping the subject. ![]() Last edited by Proxson; 07-01-2020 at 21:50. |
The Following User Says Thank You to Proxson For This Useful Post: | ||
devil777 (12-01-2020) |
#354
|
||||
|
||||
Quote:
Credit must always be given or kept in place. ![]()
__________________
Can't find a Game Conversion? Check the 'Conversion INDEX'
![]() |
#355
|
||||
|
||||
@Cesar,
here is the CIU by default. Nothing removed from the script. No icon and registry script. It still leaves the empty Publisher folder in the Start Menu ! I have noticed a strange thing, as long as you don't open the Publisher folder, in this case SEGA, the uninstaller will delete it, otherwise it won't. The script has already all constants in the uninstall part such as {commonprograms} and {userprograms}. So, in other words, I can't do jack sh*t. Heck, someone would say, stop whining. Delete it manually. But that's not the point, ![]() ![]() |
#356
|
||||
|
||||
here it works also
i used win 8.1 x64
__________________
It would be nice if you appreciate my work with the thanks Button |
#357
|
||||
|
||||
At least we're getting somewhere. First, the fix isn't working. The good news is that everything is ok in Windows 10 (opened in a virtual machine). So the conclusion is, Windows 7 is a bad guy here. But that doesn't mean I'm moving to Win 10. It's the ugliest OS since Windows Millenium Edition !
![]() ![]() Edit: Thanks for the shortcut tip. If this could be done in Setup.ini it would be even better. ![]() Edit 2: Anyone else has the same problem with Windows 7 ? Last edited by Proxson; 08-01-2020 at 13:27. |
The Following User Says Thank You to Proxson For This Useful Post: | ||
Behnam2018 (30-01-2020) |
#358
|
||||
|
||||
Quote:
Code:
I changed it in the script to include your additional icons. find in script by "CUSTOM ICONS ADD HERE" (without quotes). You can include other additional icons in this part if you need to. I made some changes, and tested on a virtual machine with windows 7 professional. Apparently it is working. Try with this new script. Last edited by Cesar82; 08-01-2020 at 14:56. |
#359
|
||||
|
||||
It's working ! ...But on a clean Windows 7 (virtual machine)...
![]() |
#360
|
||||
|
||||
CIU 3.0.0.1.b3 (Coming soon)
Hello people...
For the past few days I've been working on CIU 3.0.0.1.b3 (Beta 3). The script has been changed a lot, possibly many bugs will appear. The changes were necessary to try to slightly improve the startup time (very little improvement). The entire button creation and access structure has also been changed to correct the failure and slowness by clicking the same button multiple times. These changes made it possible to include additional buttons. Now if you put a few buttons in the installer, you will get better performance. Required buttons are only UniInstallbutton, NextButton, BackButton and SmallBrowse (If you use Smallinstaller, you also need SmallCancel or CloseSI). Make a comparison between version 3.0.0.0.u7 and 3.0.0.1.b3. Button click response time is much faster in this version 3.0.0.1.b3. In a few days I'll be sharing CIU 3.0.0.1 beta 3 in the CIU Dev group. Last edited by Cesar82; 23-02-2020 at 22:55. |
The Following 7 Users Say Thank You to Cesar82 For This Useful Post: | ||
andreiutzu21 (11-01-2020), mausschieber (12-01-2020), omdj (12-01-2020), pakrat2k2 (12-01-2020), Proxson (11-01-2020), sajmon83 (12-01-2020), Simorq (12-01-2020) |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
INDEX - Conversion Tutorial Index | Razor12911 | Conversion Tutorials | 5 | 11-06-2020 02:05 |
[GSERIES] Custom Installer Ultimate V2g | Gupta | Conversion Tutorials | 226 | 01-06-2018 13:12 |
Crysis 3 DVD9 to 3xDVD5 Custom Installer | spawniectes | PC Games - CD/DVD Conversions | 79 | 31-08-2017 07:19 |