Skip to content

Commit

Permalink
Prep for release 2.6 (#89)
Browse files Browse the repository at this point in the history
* Prep for release 2.6

* Make Listener destructor virtual

* Update Mac builds

Co-authored-by: jatinchowdhury18 <[email protected]>
Co-authored-by: Travis CI <[email protected]>
  • Loading branch information
3 people authored Sep 29, 2020
1 parent eb05465 commit efd27ae
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
All notable changes to this project will be documented in
this file.

## [Unreleased]
## [2.6.0] - 2020-09-29
- Added Pre/post emphasis filters for the hysteresis stage.
- Added "mix groups" to allow instances of the plugin to be synced across a mix.
- Added Chew variance parameter to control the randomness of the chew dropouts.
Expand Down
10 changes: 5 additions & 5 deletions Plugin/CHOWTapeModel.jucer
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>

<JUCERPROJECT id="jDoXPz" name="CHOWTapeModel" projectType="audioplug" version="2.5.99"
<JUCERPROJECT id="jDoXPz" name="CHOWTapeModel" projectType="audioplug" version="2.6.0"
pluginFormats="buildAU,buildStandalone,buildVST,buildVST3" cppLanguageStandard="17"
companyName="chowdsp" companyEmail="[email protected]" defines="SAVE_PRESETS=0"
pluginManufacturerCode="Chow" reportAppUsage="0" jucerFormatVersion="1">
Expand Down Expand Up @@ -36,10 +36,10 @@
file="Source/MixGroups/MixGroupsController.cpp"/>
<FILE id="vwS6BX" name="MixGroupsController.h" compile="0" resource="0"
file="Source/MixGroups/MixGroupsController.h"/>
<FILE id="yc5D3k" name="MixGroupsParamReceiver.cpp" compile="1" resource="0"
file="Source/MixGroups/MixGroupsParamReceiver.cpp"/>
<FILE id="hGI0mn" name="MixGroupsParamReceiver.h" compile="0" resource="0"
file="Source/MixGroups/MixGroupsParamReceiver.h"/>
<FILE id="yc5D3k" name="MixGroupsSharedData.cpp" compile="1" resource="0"
file="Source/MixGroups/MixGroupsSharedData.cpp"/>
<FILE id="hGI0mn" name="MixGroupsSharedData.h" compile="0" resource="0"
file="Source/MixGroups/MixGroupsSharedData.h"/>
</GROUP>
<GROUP id="{71C1FCA8-E7B0-3B66-1340-F140C452FF6F}" name="Presets">
<GROUP id="{AB6F221D-98B5-9782-2241-321BA5DFB83C}" name="PresetConfigs">
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Source/MixGroups/MixGroupsController.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef MIXGROUPSCONTROLLER_H_INCLUDED
#define MIXGROUPSCONTROLLER_H_INCLUDED

#include "MixGroupsParamReceiver.h"
#include "MixGroupsSharedData.h"

namespace MixGroupsConstants
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "MixGroupsParamReceiver.h"
#include "MixGroupsSharedData.h"
#include "MixGroupsController.h"

MixGroupsSharedData::MixGroupsSharedData()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class MixGroupsSharedData

struct Listener
{
~Listener() {}
virtual ~Listener() {}
virtual void mixGroupParamChanged (const String& /*paramID*/, int /*mixGroup*/, float /*value*/, String /*uuid*/) {}
};

Expand Down

0 comments on commit efd27ae

Please sign in to comment.