Skip to content

Commit

Permalink
Merge pull request #46 from listensmart/develop
Browse files Browse the repository at this point in the history
Added support for 2D array
  • Loading branch information
luca-bondi authored May 5, 2020
2 parents b436440 + 31519d4 commit cb6d53c
Show file tree
Hide file tree
Showing 23 changed files with 1,792 additions and 822 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 1.0.1
#define JucePlugin_Version 1.1.0
#endif
#ifndef JucePlugin_VersionCode
#define JucePlugin_VersionCode 0x10001
#define JucePlugin_VersionCode 0x10100
#endif
#ifndef JucePlugin_VersionString
#define JucePlugin_VersionString "1.0.1"
#define JucePlugin_VersionString "1.1.0"
#endif
#ifndef JucePlugin_VSTUniqueID
#define JucePlugin_VSTUniqueID JucePlugin_PluginCode
Expand Down
4 changes: 2 additions & 2 deletions JuceLibraryCode/JuceHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ namespace ProjectInfo
{
const char* const projectName = "eBeamer";
const char* const companyName = "Polimi ISPL - Eventide";
const char* const versionString = "1.0.1";
const int versionNumber = 0x10001;
const char* const versionString = "1.1.0";
const int versionNumber = 0x10100;
}
#endif
661 changes: 661 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ A JUCE-based VST3 plug-in and standalone application to support the [eStick](htt
- Just want to try out the VST or the app? Go the the [release](https://github.com/listensmart/ebeamer/releases) page.
- If you're not familiar with JUCE, [this](https://juce.com/learn) is a good place to start.
- If you're developing on Windows, download and extract the [ASIO ASK](https://www.steinberg.net/en/company/developers.html) in the *ASIO/* folder.
- Don't have the eSticks yet? Start developing with the [eStick simulator](https://github.com/luca-bondi/estick-simulator).

## Contributing
- Any contribution to the project is highly appreciated! Get in touch to know more.
Expand Down
Loading

0 comments on commit cb6d53c

Please sign in to comment.