diff --git a/README.md b/README.md index 1333de4..13eaa2d 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,7 @@ DrMr scans the following directories for hydrogen drum kits: - /usr/share/drmr/drumkits/ - ~/.hydrogen/data/drumkits/ - ~/.drmr/drumkits/ +- ~/Library/Application Support/Hydrogen/drumkits If you want to add others, add them to the default_drumkit_locations array at the top of drmr_hydrogen.c @@ -94,4 +95,4 @@ You can figure out which kit is loaded by looking in the GtkUI at the bottom, or DrMr is currently using a static ttl file. This means I have to decide statically how many gain/pan controls to expose. I've settled on 32 for the moment, but that is arbitrary. At some point DrMr will probably move to using the LV2 Dynamic Manifest feature to expose the appropriate number of gain controls for the current sample set, although how force a host update of the manifest when the kit is changed is unclear (if you know how, please let me know) ### Note 3 -DrMr only currently supports a subset of things that can be specified in a hydrogen drumkit.xml file. Specifically, DrMr will not use gain/pan/pitch/asdr information. DrMr basically only uses the filename and layer min/max information to build it's internal sample representation. Values specified in .xml files will be used as DrMr begins to support the features needed for those values to make sense. \ No newline at end of file +DrMr only currently supports a subset of things that can be specified in a hydrogen drumkit.xml file. Specifically, DrMr will not use gain/pan/pitch/asdr information. DrMr basically only uses the filename and layer min/max information to build it's internal sample representation. Values specified in .xml files will be used as DrMr begins to support the features needed for those values to make sense. diff --git a/drmr_hydrogen.c b/drmr_hydrogen.c index bca3720..ab02f9c 100644 --- a/drmr_hydrogen.c +++ b/drmr_hydrogen.c @@ -45,6 +45,7 @@ static char* default_drumkit_locations[] = { "/usr/share/drmr/drumkits/", "~/.hydrogen/data/drumkits/", "~/.drmr/drumkits/", + "~/Library/Application\ Support/Hydrogen/drumkits", NULL };