This a return of a previous issue. The macOS 1.7.0x version has incorrect CFBundleVersion and CFBundleShortVersionString keys in /LightBurn.app/Contents/Info.plist
The current version, 1.7.03 and previous 1.7.0x versions include the following -
<key>CFBundleVersion</key>
<string>{APP_VERSION}</string>
<key>CFBundleShortVersionString</key>
<string>{APP_VERSION}</string>
The build environment apparently isn’t doing the proper variable substitution for these two keys.
These keys help macOS display the version of the app via the Finder’s Get Info command as well as patch management systems that examine the data directly via API or the CLI command ‘defaults read /LightBurn.app/Contents/Info.plist CFBundleVersion’ or ‘defaults read /LightBurn.app/Contents/Info.plist CFBundleShortVersionString’.
The 1.6.03 version had these correctly set.
Additionally, the following two keys have an extraneous space before closing of the boolean value -
<key>NSSupportsAutomaticGraphicsSwitching</key>
<true />
<key>LSTypeIsPackage</key>
<false />