Browse Source

AU name format fix.

tags/2021-05-28
jules 12 years ago
parent
commit
d3ea70d8c4
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      extras/Introjucer/Source/Project/jucer_AudioPluginModule.h

+ 2
- 1
extras/Introjucer/Source/Project/jucer_AudioPluginModule.h View File

@@ -517,7 +517,8 @@ namespace AUHelpers
Project& project = exporter.getProject();
addPlistDictionaryKey (dict, "name", getPluginName (project).toString());
addPlistDictionaryKey (dict, "name", getPluginManufacturer (project).toString()
+ ": " + getPluginName (project).toString());
addPlistDictionaryKey (dict, "description", getPluginDesc (project).toString());
addPlistDictionaryKey (dict, "factoryFunction", getPluginAUExportPrefix (project).toString() + "Factory");
addPlistDictionaryKey (dict, "manufacturer", getPluginManufacturerCode (project).toString().trim().substring (0, 4));


Loading…
Cancel
Save