I have noticed that the JucePlugin_VersionString macro is used only in the mockup code for the Standalone version of the plug-in (and I imagine in a similar position for a standard JUCE applications created with Introjucer).
There are some points in my resource files where I’d like to have that value without the quotes, so instead of
#define JucePlugin_VersionString “1.0.0”
what do you think about a more general
#define JucePlugin_Version 1.0.0
For it to be used in the form of JUCE_STRINGIFY(JucePlugin_Version) in those lines of code where the previous quoted JucePlugin_VersionString was used before?