Plist and project name

the plist created by the introjucer uses the Project Name for the bundle name:
addPlistDictionaryKey (dict, "CFBundleName",                projectName);


When creating a plugin, it would be better to take the Plugin Name, because some hosts (at least Ableton live) uses those plist bundles names to show the available plugins.
 

ah, actually I can just use the custom plist field in the introjucer! :)

So that's all fine

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist>
  <dict>
    <key>CFBundleName</key>
    <string>MySuperPluginName</string>
  </dict>
</plist>