Hi,
I've set publisher and version number in tiapp.xml and manifests files for my Desktop App. These settings are not reflected in the programs lists under Windows control panel. In the Publisher column it reads "None Provided" and in the Version column it reads "1.0.0" (while it should be 1.1).
Is there anything special I need to do in order for Windows to pick up these settings? In OSX these settings seem to be working ok.
I am using 1.2 RC4 Desktop SDK and appcelerator packaging mechanism via Titanium Studio.
Anton
1 Answer
There's a small bug in the script for RC4. Login as a windows admin and edit the win32_app.py (usually located at C:\ProgramData\Titanium\sdk\win32\1.2.0RC4)
Edit line 91:
template_args['app_publishe'] = quoteattr(self.publisher)to be:
template_args['app_publisher'] = quoteattr(self.publisher)"app_publisher" was missing an 'R'
Your Answer
Think you can help? Login to answer this question!