You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This value is read from an XML file in WAILConfig.py
try:
with open(infoPlistPath, "r", encoding='latin1') as myfile:
data = myfile.read()
vsXML = r"<key>CFBundleShortVersionString</key>\n\t<string>(.*)</string>"
m = re.search(vsXML, data)
WAIL_VERSION = m.groups()[0].strip()
...which is macOS-specific. This code was never adapted to Windows. Is this value available programmatically elsewhere?
Building from latest master e26e87c, the version number in About WAIL menu item reports -1, meaning it is never set.
The text was updated successfully, but these errors were encountered: