-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9b12bd
commit 0aedc7c
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,3 +46,37 @@ Creates a Plugin.vst bundle | |
|
||
To make the plugin work as expected, you should right-click on the plugin in the | ||
FX Rack and choose "Send all keyboard input to plugin". | ||
|
||
|
||
|
||
|
||
## FL Studio Specific | ||
|
||
The debug build initialize a log file on your desktop. At least on macOS this | ||
crashes FL Studio on start. To prevent it, comment out the log initialization. | ||
|
||
|
||
|
||
|
||
## Deployment | ||
|
||
Just tag a new version and push it to remote. | ||
|
||
|
||
### Docs | ||
|
||
You need [doctave](https://github.com/Doctave/doctave) and **gh-pages** node | ||
package. | ||
|
||
To install **gh-pages** (it's important to use 3.0.0 version): | ||
|
||
``` | ||
npm install -g [email protected] | ||
``` | ||
|
||
Building and deploying the docs: | ||
|
||
``` | ||
doctave build --release | ||
gh-pages -d site | ||
``` |