I'm a developer of an NSIS-powered software, and I want to perform a check if the current installer is the newest version...
An example:
My user wants to install v3.00, but there's a newer v3.10 available online.
There is a .html file on the internet with these contents:
My installer already knows its version:start 0
version 3.10
build 080504
info_ger 0
info_ger_link 0
info_eng 0
info_eng_link 0
...
end 0
Now:!define reg_ver "3.00"
How can I make NSIS check the "version" entry online and compare it with its own reg_ver variable?
Thanks in advance...