Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-bondi committed Apr 22, 2020
2 parents fe1d1fe + 67f62ef commit b8a9391
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
6 changes: 3 additions & 3 deletions JuceLibraryCode/AppConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions JuceLibraryCode/JuceHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 5 additions & 0 deletions Source/PluginEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

}

Expand Down
4 changes: 2 additions & 2 deletions eBeamer.jucer
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>

<JUCERPROJECT id="NEjZ3r" name="eBeamer" projectType="audioplug" jucerVersion="5.4.7"
companyName="ISPL Polimi" pluginFormats="buildStandalone,buildVST3"
companyName="Polimi ISPL - Eventide" pluginFormats="buildStandalone,buildVST3"
pluginVST3Category="Spatial" pluginAAXCategory="512" pluginRTASCategory="512"
pluginVSTCategory="kPlugCategSpacializer" pluginAUMainType="'aufx'"
pluginName="eBeamer" pluginDesc="eStick beam controller" pluginManufacturer="ISPL Polimi"
pluginManufacturerCode="Ispl" pluginCode="ebea" version="0.4.3"
pluginManufacturerCode="Ispl" pluginCode="ebea" version="1.0.0"
bundleIdentifier="it.polimi.deib.ispl.ebeamer" companyWebsite="http://ispl.deib.polimi.it/"
aaxIdentifier="it.polimi.deib.ispl.ebeamer" pluginAUExportPrefix="ebeamerAU"
pluginCharacteristicsValue="pluginWantsMidiIn">
Expand Down

0 comments on commit b8a9391

Please sign in to comment.