Update python script to check versions

Update the python script to now check for versions for 4024.56

modified:   twincat_version_manager.py
This commit is contained in:
Federico Rojas
2024-07-15 16:30:53 +02:00
parent 1ca6a9ed36
commit a62e8ce419

View File

@@ -2,7 +2,7 @@ import glob
import xml.etree.ElementTree as ET
VERSION_TAGS = {"**/*.Tc*": "ProductVersion", "**/*.tsproj": "TcVersion"}
CORRECT_VERSIONS = {"**/*.Tc*": "3.1.4024.11", "**/*.tsproj": "3.1.4024.32", "**/*.xti": "3.1.4024.32"}
CORRECT_VERSIONS = {"**/*.Tc*": "3.1.4024.11", "**/*.tsproj": "3.1.4024.56", "**/*.xti": "3.1.4024.56"}
def check_versions():