From 67f62ef9aa466f8cd265a9c10e1abbedd6d0dfeb Mon Sep 17 00:00:00 2001 From: Luca Bondi Date: Wed, 22 Apr 2020 19:16:18 +0200 Subject: [PATCH] Ready for internal review --- JuceLibraryCode/AppConfig.h | 6 +++--- JuceLibraryCode/JuceHeader.h | 6 +++--- Source/PluginEditor.cpp | 5 +++++ eBeamer.jucer | 4 ++-- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/JuceLibraryCode/AppConfig.h b/JuceLibraryCode/AppConfig.h index bd2100a..b075c4f 100644 --- a/JuceLibraryCode/AppConfig.h +++ b/JuceLibraryCode/AppConfig.h @@ -390,13 +390,13 @@ #define JucePlugin_EditorRequiresKeyboardFocus 0 #endif #ifndef JucePlugin_Version - #define JucePlugin_Version 0.4.3 + #define JucePlugin_Version 1.0.0 #endif #ifndef JucePlugin_VersionCode - #define JucePlugin_VersionCode 0x403 + #define JucePlugin_VersionCode 0x10000 #endif #ifndef JucePlugin_VersionString - #define JucePlugin_VersionString "0.4.3" + #define JucePlugin_VersionString "1.0.0" #endif #ifndef JucePlugin_VSTUniqueID #define JucePlugin_VSTUniqueID JucePlugin_PluginCode diff --git a/JuceLibraryCode/JuceHeader.h b/JuceLibraryCode/JuceHeader.h index 6d6723a..3abe38d 100644 --- a/JuceLibraryCode/JuceHeader.h +++ b/JuceLibraryCode/JuceHeader.h @@ -49,8 +49,8 @@ namespace ProjectInfo { const char* const projectName = "eBeamer"; - const char* const companyName = "ISPL Polimi"; - const char* const versionString = "0.4.3"; - const int versionNumber = 0x403; + const char* const companyName = "Polimi ISPL - Eventide"; + const char* const versionString = "1.0.0"; + const int versionNumber = 0x10000; } #endif diff --git a/Source/PluginEditor.cpp b/Source/PluginEditor.cpp index b3f0070..1a10c80 100644 --- a/Source/PluginEditor.cpp +++ b/Source/PluginEditor.cpp @@ -214,6 +214,11 @@ void JucebeamAudioProcessorEditor::paint (Graphics& g) g.setColour (Colours::white); g.setFont (15.0f); + + const auto versionArea = getBounds().removeFromBottom(10); + g.setColour(Colours::lightgrey); + g.setFont(12); + g.drawText("ISPL and Eventide - eBeamer v" + String(JucePlugin_VersionString),versionArea,Justification::centredBottom,false); } diff --git a/eBeamer.jucer b/eBeamer.jucer index 70c60a5..3b0d949 100644 --- a/eBeamer.jucer +++ b/eBeamer.jucer @@ -1,11 +1,11 @@