Skip to content

Commit

Permalink
Fix issue #2 Neural Capture' is a registered trademark of NDSP
Browse files Browse the repository at this point in the history
  • Loading branch information
brummer10 committed Sep 2, 2023
1 parent c0780be commit 005f875
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 17 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ libs:
$(MAKE) -C dpf/dgl ../build/libdgl-cairo.a

plugins: libs
$(MAKE) all -C plugins/NeuralCapture
$(MAKE) all -C plugins/NeuralRecord

ifneq ($(CROSS_COMPILING),true)
gen: plugins dpf/utils/lv2_ttl_generator
Expand All @@ -108,14 +108,14 @@ endif
clean:
$(MAKE) clean -C dpf/dgl
$(MAKE) clean -C dpf/utils/lv2-ttl-generator
$(MAKE) clean -C plugins/NeuralCapture
$(MAKE) clean -C plugins/NeuralRecord
rm -rf bin build

install: all
$(MAKE) install -C plugins/NeuralCapture
$(MAKE) install -C plugins/NeuralRecord

install-user: all
$(MAKE) install-user -C plugins/NeuralCapture
$(MAKE) install-user -C plugins/NeuralRecord

# --------------------------------------------------------------

Expand Down
File renamed without changes
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Neural Capture
# Neural Record

A Neural Capture plug to make the process of cloning external soft/hardware a bit more comfortable
A Neural Recorder plug to make the process of cloning external soft/hardware a bit more comfortable

![NeuralCapture](https://github.com/brummer10/neuralcapture/blob/main/NeuralCapture.png?raw=true)
![NeuralRecord](https://github.com/brummer10/neuralrecord/blob/main/NeuralRecord.png?raw=true)


## Formats

Neural Capture come in the following plug-in formats:
Neural Record come in the following plug-in formats:

* [LV2]
* [VST3]
Expand All @@ -19,8 +19,8 @@ section "Prerequisites" below) and then clone this repository (including
sub-modules) and simply run `make` in the project's root directory:

```con
git clone --recursive https://github.com:brummer10/neuralcapture
cd neuralcapture
git clone --recursive https://github.com:brummer10/neuralrecord
cd neuralrecord
make
```

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
#define DISTRHO_PLUGIN_INFO_H

#define DISTRHO_PLUGIN_BRAND "brummer"
#define DISTRHO_PLUGIN_NAME "NeuralCapture"
#define DISTRHO_PLUGIN_URI "urn:brummer10:neuralcapture"
#define DISTRHO_PLUGIN_CLAP_ID "com.github.brummer10.neuralcapture"
#define DISTRHO_PLUGIN_NAME "Neural Record"
#define DISTRHO_PLUGIN_URI "urn:brummer10:neuralrecord"
#define DISTRHO_PLUGIN_CLAP_ID "com.github.brummer10.neuralrecord"

#define DISTRHO_PLUGIN_HAS_UI 1
#define DISTRHO_UI_USE_NANOVG 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# --------------------------------------------------------------
# Project name, used for binaries

NAME = neuralcapture
NAME = neuralrecord

# --------------------------------------------------------------
# Plugin types to build
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,19 @@ class PluginNeuralCapture : public Plugin {
// Information

const char* getLabel() const noexcept override {
return "NeuralCapture";
return "Neural Record";
}

const char* getDescription() const override {
return "A Neural Capture plug to make the process of cloning external soft/hardware a bit more comfortable ";
return "A Neural Record plug to make the process of cloning external soft/hardware a bit more comfortable ";
}

const char* getMaker() const noexcept override {
return "brummer";
}

const char* getHomePage() const override {
return "https://github.com/brummer10/neuralcapture";
return "https://github.com/brummer10/neuralrecord";
}

const char* getLicense() const noexcept override {
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,15 @@ inline std::string Profil::get_path() {
std::string pPath;

#ifndef __MOD_DEVICES__
#if defined(WIN32) || defined(_WIN32)
pPath = getenv("USERPROFILE");
if (pPath.empty()) {
pPath = getenv("HOMEDRIVE");
pPath += getenv("HOMEPATH");
}
#else
pPath = getenv("HOME");
#endif
pPath +=PATH_SEPARATOR;
pPath +="profiles";
pPath +=PATH_SEPARATOR;
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 005f875

Please sign in to comment.