Disable Update CheckΒΆ
By default, Colectica Designer will check for new versions upon startup. If a new version is available, the user will be prompted to download the update. This version check can be disabled with the following steps.
Open the Colectica Designer configuration file:
%programfiles(x86)%\ColecticaColectica Designer\ColecticaDesigner.exe.config
.Find the SkipVersionCheck setting, which looks like:
<setting name="SkipVersionCheck" serializeAs="String"> <value>False</value> </setting>
Change the value to True, so the complete section looks like:
<setting name="SkipVersionCheck" serializeAs="String"> <value>True</value> </setting>