Skip to content

Commit b8cd431

Browse files
Merge pull request #4 from leandrosimoes/develop
Develop
2 parents 9bf4818 + 601db8d commit b8cd431

File tree

4 files changed

+21
-8
lines changed

4 files changed

+21
-8
lines changed

JuceLibraryCode/JuceHeader.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ namespace ProjectInfo
4242
{
4343
const char* const projectName = "Note Number Remaper By Velocity";
4444
const char* const companyName = "lesimoes.dev";
45-
const char* const versionString = "1.0.0";
46-
const int versionNumber = 0x10000;
45+
const char* const versionString = "0.1.0";
46+
const int versionNumber = 0x100;
4747
}
4848
#endif

JuceLibraryCode/JucePluginDefines.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@
7777
#define JucePlugin_EditorRequiresKeyboardFocus 0
7878
#endif
7979
#ifndef JucePlugin_Version
80-
#define JucePlugin_Version 1.0.0
80+
#define JucePlugin_Version 0.1.0
8181
#endif
8282
#ifndef JucePlugin_VersionCode
83-
#define JucePlugin_VersionCode 0x10000
83+
#define JucePlugin_VersionCode 0x100
8484
#endif
8585
#ifndef JucePlugin_VersionString
86-
#define JucePlugin_VersionString "1.0.0"
86+
#define JucePlugin_VersionString "0.1.0"
8787
#endif
8888
#ifndef JucePlugin_VSTUniqueID
8989
#define JucePlugin_VSTUniqueID JucePlugin_PluginCode

NoteNumberRemaperByVelocity.jucer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
useAppConfig="0" addUsingNamespaceToJuceHeader="0" displaySplashScreen="1"
55
jucerFormatVersion="1" pluginCharacteristicsValue="pluginProducesMidiOut,pluginWantsMidiIn"
66
companyName="lesimoes.dev" companyCopyright="lesimoes.dev" companyWebsite="lesimoes.dev"
7-
companyEmail="contact@lesimoes.dev">
7+
companyEmail="contact@lesimoes.dev" version="0.1.0">
88
<MAINGROUP id="wYGtXm" name="Note Number Remaper By Velocity">
99
<GROUP id="{B0EBBFF2-A38C-3865-A49E-9362B49F19D6}" name="Source">
1010
<FILE id="mINphj" name="MidiProcessor.h" compile="0" resource="0" file="Source/MidiProcessor.h"/>

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
1-
# NoteNumberRemaperByVelocityVTSPlugin
2-
VTS plugin to remap a midi note number to another based on the velocity
1+
# Note Number Remaper By Velocity VTS Plugin (Beta)
2+
3+
[<img src="https://img.shields.io/badge/slack-@lesimoes/help-blue.svg?logo=slack">](https://lesimoes.slack.com/messages/C04JV5CRGJH)
4+
[<img src="https://img.shields.io/badge/discord-@lesimoes/help-blue.svg?logo=discord">](https://discord.gg/7xegRfQjPz)
5+
6+
VTS plugin to remap a midi note number to another based on its velocity.
7+
8+
## **IMPORTANT:**
9+
I started to create this plugin for a single purpose which is to workaround the problem with the Alesis Crimson 2 module that has only one single note for the HiHat, Crash Left and Crash Right. That's why in this BETA version you see these as groups, and also only three fixed possibilities of remapping, in this case, the notes 8 (HiHat), 49 (Crash Left), and 57 (Crash Right). Using this plugin together with your favorite drums VTS (Steven Slate, EZDrummer, etc) you can get it working better and have a sound more smooth and dynamic.
10+
11+
For the next version, I decided to turn this plugin into a more generic version in the future by adding the possibility to remap more than just 3 fixed notes, so please if you like this plugin, consider supporting this project by opening issues, staring, or even donating.
12+
13+
### How to use this plugin?
14+
I'm currently working on a video tutorial, but basically, you have to use this as a middleware from your midi device to the other midi plugins.
15+

0 commit comments

Comments
 (0)