|
#736
|
||||
|
||||
|
Quote:
Code:
[SystemRequirement] // Win7 = 611, Win8 = 621, Win8.1 = 631, Win10 = 1000 Enable=1 Processor=3200 VideoRAM=4000 RAM=8000 OS=611 DirectX=11 HWSectionLabelColor=$808080 HWOkLabelColor=$357EC7 HWNotOkLabelColor=$ff0000 HWGoodLabelColor=$36ff00 HWPartiallyGoodLabelColor=$ff8400 HWNotGoodLabelColor=$ff0000
__________________
It would be nice if you appreciate my work with the thanks Button |
| The Following 3 Users Say Thank You to mausschieber For This Useful Post: | ||
| Sponsored Links |
|
#737
|
|||
|
|||
|
Do i need a type of setup.ini to have it work or do you mean that the code in the setup.ini is enough to add into the inno script to get it to check for the requirements?
|
| The Following User Says Thank You to artexjay For This Useful Post: | ||
Behnam2018 (17-02-2020) | ||
|
#738
|
||||
|
||||
|
In script.iss search for
Code:
procedure SystemReq(); I can't explain all of this to you. Some example from the code Code:
if (GetCpuMaxClockSpeed) < Processor then begin
CPUNameLabel.Font.Color := ColorConverter(GetValInt('SystemRequirement', 'HWNotOkLabelColor', 0));
CPUNameLabel.Caption := 'CPU: '+IntToStr(GetCpuMaxClockSpeed)+' MHz,' + (ExpandConstant(' {cm:DirectXNeeded} ')) + '{#Processor}'+' MHz';
end;
Code:
GetCpuMaxClockSpeed Get max clock speed of your CPU. You find it by default in ISSysInfo.iss So if detected CPU max clock speed is lower (<) then Settings.ini input, label (HWNotOkLabelColor) is in red color (default). In fact you can change the color of HWNotOkLabelColor label in Settings.ini (this is also a ISPP). The ColorConverter only change color codes from BGR (Blue, Green, Red) to RGB (Red, Green, Blue). Inno's standard is BGR, which I find not really good. CPUNameLabel.Caption is just the label for CPU. Code:
'CPU: '+IntToStr(GetCpuMaxClockSpeed)+' MHz,' Code:
(ExpandConstant(' {cm:DirectXNeeded} '))
Code:
'{#Processor}'+' MHz'
Most of the other parts from the 'procedure SystemReq' are just variables or text/labels/fancy stuff which is not really needed but it looks better ![]() --- I always tried to made the scripts as clear as possible to give a fast overview, eventough everybody works a bit different and has a bit different characteristics.
__________________
Haters gonna hate
|
| The Following 2 Users Say Thank You to KaktoR For This Useful Post: | ||
artexjay (16-11-2019), Behnam2018 (26-02-2020) | ||
|
#739
|
|||
|
|||
|
Alright thanks for the insightful reply!
I've downloaded the .dll and will be trying to see if i can get it to work for me. Hope you don't mind if I pm you or reply later for help if I'm having some issues with it Thanks again. |
| The Following User Says Thank You to artexjay For This Useful Post: | ||
Behnam2018 (17-02-2020) | ||
|
#740
|
|||
|
|||
|
Could you add the second progress bar for file percentage? Like fitgirl 2016 do?
I edit the asis installer decompressor and add many compressors to UltraARC 2900 R6 FULL and some app link: https://drive.google.com/open?id=1N8...3_u1SXMxuPZWJp (232 MB rar file) Last edited by Entai44; 31-12-2019 at 06:50. |
| The Following User Says Thank You to Entai44 For This Useful Post: | ||
Behnam2018 (17-02-2020) | ||
|
#741
|
|||
|
|||
|
OGGRE crashes installer.
I'm experiencing a crash of the installer when trying to decompress an archive packed with only oggre.
OGGRE is enabled inside Compressor.ini. Whenever the installer runs, it instantly crashes (and closes) after pressing "Install" with no error message. Extra Info:
I don't get it, I tried throwing 12 random ogg files into my compressor, and the installer decompressed them fine, I don't see why a 750-800mb archive should be any different... Any help is appreciated. I will update this mesage if I fix the issue. |
|
#742
|
|||
|
|||
|
Quote:
|
| The Following User Says Thank You to Entai44 For This Useful Post: | ||
Behnam2018 (17-02-2020) | ||
|
#743
|
|||
|
|||
|
How to install?
Hello guys i am new in Inno Setup and i saw this i loved this, but i don't know how to install.
|
|
#744
|
||||
|
||||
|
v7.1.4 added
Code:
v7.1.4 _____________________________________________________ - Updated some compressors - Fixed Redist CB if Compactmode and Components is used - Added translations for 'Click to select components...' message in compact mode
__________________
Haters gonna hate
|
| The Following 5 Users Say Thank You to KaktoR For This Useful Post: | ||
darkyamidesu (21-02-2020), Entai44 (21-02-2020), Masquerade (28-02-2020), mausschieber (21-02-2020), Titeuf (22-02-2020) | ||
|
#745
|
|||
|
|||
|
hello, love this program.. (already make A'Lot of compression games)
if anyone can help me, can someone tell me or show me how to make 1. 2 shortcut (lets say PES game. i want to make "Game.exe" and "Settings.exe" shortcut) possible 2. can i assign .cmd or .bat file with some icon (so after i install the game/program. CMD/Bat file will have their own independent icon. rather than stock windows icon) any reply is really appriciated.. Thanks for reading and maybe helping my request.. (sorry for my bad english. english isnt my mother/first language) Love from indonesia.. ^_^ *edit Small more demand.. how can i change OS section to support/Showing "windows XP" - or - "XP".. (change the number to XP, resulting any OS to showing red/unsupported) Last edited by darkyamidesu; 21-02-2020 at 13:53. |
|
#746
|
||||
|
||||
|
Code:
v7.1.4a _____________________________________________________ - Fixed installation size in CompactMode if components were used and all components were unchecked (Checked=0)
__________________
Haters gonna hate
|
|
#747
|
||||
|
||||
|
Quote:
Not by default. You have to do this manually. Go to Code:
Resources\Modules\External\Icons.iss Maybe I will add something in future. 2. In same file as above. You have to use Code:
IconFilename: "{app}\Icon.ico"
----- Windows XP is 513 (with ServicePack #3).
__________________
Haters gonna hate
|
| The Following 2 Users Say Thank You to KaktoR For This Useful Post: | ||
Behnam2018 (26-02-2020), darkyamidesu (28-02-2020) | ||
|
#748
|
|||
|
|||
|
Quote:
thankyou for your generous and reply sir! ill try at home.. (Busy in campus ATM)
|
| The Following User Says Thank You to darkyamidesu For This Useful Post: | ||
Behnam2018 (29-02-2020) | ||
|
#749
|
||||
|
||||
|
Hello im trying to compile a game with lolz and i do it like 6 times x 6 hours compression :P but when im installing i always get this error
![]() Maybe someone know where i get wrong? |
|
#750
|
|||
|
|||
|
Quote:
Please note that in an EXE format, your batch files cannot be read/edited, so make sure everything works before you choose to share it with others. |
| The Following User Says Thank You to Masquerade For This Useful Post: | ||
darkyamidesu (25-05-2020) | ||
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
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 |