Skip to content

Commit bc90b6a

Browse files
committed
Increment version to 1.1.10.
1 parent 2fceae1 commit bc90b6a

File tree

6 files changed

+13
-15
lines changed

6 files changed

+13
-15
lines changed

Aeolus.jucer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
addUsingNamespaceToJuceHeader="0" jucerFormatVersion="1" pluginCharacteristicsValue="pluginIsSynth,pluginWantsMidiIn"
55
pluginManufacturerCode="Arbe" cppLanguageStandard="latest" pluginManufacturer="Arthur Benilov"
66
companyName="Arthur Benilov" companyEmail="[email protected]"
7-
headerPath="../../Source" version="0.1.9" pluginCode="E6he">
7+
headerPath="../../Source" version="0.1.10" pluginCode="E6he">
88
<MAINGROUP id="EZY9mB" name="Aeolus">
99
<GROUP id="{F5BD30ED-E053-46A6-92B3-3C91BCF2F283}" name="Source">
1010
<GROUP id="{23278877-F57C-DD4B-1CA0-6C0998101C82}" name="aeolus">

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ set(plugin_formats
3131
)
3232

3333
juce_add_plugin(${PROJECT_NAME}
34-
VERSION "0.1.9"
34+
VERSION "0.1.10"
3535
PLUGIN_MANUFACTURER_CODE "Arbe"
3636
PLUGIN_CODE "E6he"
3737
PLUGIN_DESCRIPTION "Aeolus"

Source/Parameters.cpp

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,18 @@ var Parameters::toVar() const
4848
{
4949
Array<var> params;
5050

51-
for (int i = 0; i < processor.getNumParameters(); ++i) {
52-
const auto id = processor.getParameterID(i);
53-
const auto value = processor.getParameter(i);
51+
for (auto* param : processor.getParameters()) {
52+
if (auto* p = dynamic_cast<AudioProcessorParameterWithID*>(param))
53+
{
54+
const auto id = p->paramID;
55+
const auto value = p->getValue();
5456

55-
auto* obj = new DynamicObject();
56-
obj->setProperty("id", id);
57-
obj->setProperty("value", value);
57+
auto* obj = new DynamicObject();
58+
obj->setProperty("id", id);
59+
obj->setProperty("value", value);
5860

59-
params.add(var{obj});
61+
params.add(var{obj});
62+
}
6063
}
6164

6265
return var{params};

Source/PluginEditor.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,6 @@ void AeolusAudioProcessorEditor::resized()
204204

205205
_panicButton.setBounds(_volumeSlider.getRight() + 40, margin, 50, 20);
206206

207-
constexpr int W = 120;
208-
constexpr int H = 30;
209-
constexpr int S = 5;
210207
constexpr int T = margin * 2 + 20;
211208
constexpr int sequencerHeight = 26;
212209
constexpr int keyboardHeight = 70;

Source/PluginProcessor.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,6 @@ bool AeolusAudioProcessor::isBusesLayoutSupported (const BusesLayout& layouts) c
199199

200200
void AeolusAudioProcessor::processorLayoutsChanged()
201201
{
202-
const auto numBuses = getBusCount(false);
203202
}
204203

205204
#endif // JucePlugin_PreferredChannelConfigurations

Source/aeolus/rankwave.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -394,8 +394,7 @@ Rankwave::Rankwave(Addsynth& model, const Scale& scale)
394394
, _scale(scale)
395395
, _pipes{}
396396
{
397-
const int numPipes = _noteMax - _noteMin + 1;
398-
jassert(numPipes > 0);
397+
jassert(_noteMax - _noteMin + 1 > 0);
399398

400399
const auto fn = _model.getFn();
401400
const auto fd = _model.getFd();

0 commit comments

Comments
 (0)