More info about new Bundling options can be found in Help: http://www.thinbasic.com/public/prod...thinbundle.htm
A little script example showing new #BUNDLE options.
Those options will be interpreted by Bundle procedure and used before creating executable.
Icon can also be changed at Bundling time directly into Bundle dialog.
All those options can now be easily inserted once and for all into your script and maintained directly while you code your source.
Uses "Console"
'#SCRIPTVERSION 1.5.6.7
'APP_SetScriptVersion (1, 5, 6, 7)
'---Optional name of the output executable
'---Full or relative path can be indicated.
'---If output path does not exists, it will be created
#BUNDLE Name ".\MyFirstApplication"
'---Name of the executable icon (any Windows supported formats)
'---Full or relative path can be indicated
#BUNDLE Icon "Application2.ico"
'---Supported executable Version info to include into the executable
#BUNDLE Version "Comments" , "Test script for testing thinBundle"
#BUNDLE Version "CompanyName" , "ThinBASIC"
#BUNDLE Version "FileDescription" , "Test script for testing thinBundle"
#BUNDLE Version "LegalCopyright" , "Copyright 2014 All right reserved"
#BUNDLE Version "LegalTrademarks" , "Legal Trademarks can be found on the web site"
#BUNDLE Version "ProductName" , "Application"
#BUNDLE Version "ProductVersion" , "1.3.0.1232"
#BUNDLE Version "FileVersion" , "1.3.0.12"
PrintL "I'm inside script executed from inside application"
PrintL "---Press any key to continue---"
WaitKey
Bookmarks