Skip to content

Commit

Permalink
bump version number, corrected angle knob not showing right click popup
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavnatarajan committed Nov 10, 2022
1 parent b7f50f3 commit ea35849
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions JuceLibraryCode/JuceHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace ProjectInfo
{
const char* const projectName = "Xfeed";
const char* const companyName = "Abhinav Natarajan";
const char* const versionString = "0.1.0";
const int versionNumber = 0x100;
const char* const versionString = "0.1.1";
const int versionNumber = 0x101;
}
#endif
6 changes: 3 additions & 3 deletions JuceLibraryCode/JucePluginDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@
#define JucePlugin_EditorRequiresKeyboardFocus 0
#endif
#ifndef JucePlugin_Version
#define JucePlugin_Version 0.1.0
#define JucePlugin_Version 0.1.1
#endif
#ifndef JucePlugin_VersionCode
#define JucePlugin_VersionCode 0x100
#define JucePlugin_VersionCode 0x101
#endif
#ifndef JucePlugin_VersionString
#define JucePlugin_VersionString "0.1.0"
#define JucePlugin_VersionString "0.1.1"
#endif
#ifndef JucePlugin_VSTUniqueID
#define JucePlugin_VSTUniqueID JucePlugin_PluginCode
Expand Down
2 changes: 1 addition & 1 deletion Source/PluginEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ XfeedAudioProcessorEditor::XfeedAudioProcessorEditor (XfeedAudioProcessor& p)
angleKnob.setRotaryParameters(knobsMinAngle, knobsMaxAngle, true);
angleKnob.setTextValueSuffix(juce::CharPointer_UTF8("\xc2\xb0")); // degree symbol
angleKnob.setValue(p.defaultAngle);
gainKnob.setPopupMenuEnabled(true);
angleKnob.setPopupMenuEnabled(true);
angleKnob.setPopupDisplayEnabled(false, false, this);
angleKnob.setTextBoxStyle(juce::Slider::TextBoxBelow, false, 60, 25);
angleKnob.setDoubleClickReturnValue(true, p.defaultAngle);
Expand Down
4 changes: 2 additions & 2 deletions Source/PluginProcessor.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ class XfeedAudioProcessor : public juce::AudioProcessor
void setStateInformation (const void* data, int sizeInBytes) override;

// these are double rather than float because they are used by the GUI knobs, which accepts only double
constexpr static double maxGaindB = 12.0, minGaindB = -12.0, defaultGaindB = 0.0;
constexpr static double maxAngle = 90.0, minAngle = 30.0, defaultAngle = 60.0;
constexpr static double maxGaindB = 12.0, minGaindB = -12.0, defaultGaindB = -1.0;
constexpr static double maxAngle = 90.0, minAngle = 0.0, defaultAngle = 60.0;
constexpr static double maxDist = 5.0, minDist = 0.25, defaultDist = 1.0;
juce::AudioParameterFloat* gaindB;
juce::AudioParameterFloat* angle;
Expand Down
2 changes: 1 addition & 1 deletion Xfeed.jucer
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>

<JUCERPROJECT id="ouCn2y" name="Xfeed" projectType="audioplug" useAppConfig="0"
addUsingNamespaceToJuceHeader="0" jucerFormatVersion="1" version="0.1.0"
addUsingNamespaceToJuceHeader="0" jucerFormatVersion="1" version="0.1.1"
companyWebsite="abhinavnatarajan.org" pluginFormats="buildAU,buildAUv3,buildLV2,buildStandalone,buildVST3"
pluginVST3Category="Fx,Spatial,Stereo,Tools" cppLanguageStandard="20"
pluginAUIsSandboxSafe="1" pluginManufacturer="Abhinav Natarajan"
Expand Down

0 comments on commit ea35849

Please sign in to comment.