diff options
author | cbdev <cb@cbcdn.com> | 2020-03-09 21:31:54 +0100 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2020-03-09 21:31:54 +0100 |
commit | 4ebcda3a1b0d90c44e91a5dfe455ad59fe694cbe (patch) | |
tree | e3642cdfbe11422edeb4f64118b1700292ad9231 | |
parent | 878988c9d5a8e106af16d55702176a0ce8f0ae71 (diff) | |
download | midimonster-4ebcda3a1b0d90c44e91a5dfe455ad59fe694cbe.tar.gz midimonster-4ebcda3a1b0d90c44e91a5dfe455ad59fe694cbe.tar.bz2 midimonster-4ebcda3a1b0d90c44e91a5dfe455ad59fe694cbe.zip |
Update README and example config
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | configs/osc-artnet.cfg | 2 | ||||
-rw-r--r-- | midimonster.h | 2 |
3 files changed, 9 insertions, 4 deletions
@@ -172,6 +172,10 @@ chmod +x ./installer.sh ./installer.sh ``` +The installer can also be used for automating installations by specifying additional +command line arguments. To see a list of valid arguments, run the installer with the +`--help` argument. + The installer script can also update MIDIMonster to the latest version automatically, using a configuration file generated during the installation. To do so, run `midimonster-updater` as root on your system after using the installer. @@ -187,8 +191,9 @@ dpkg -i <file>.deb ### Building from source To build the MIDIMonster directly from the sources, you'll need some libraries that provide -support for the protocols to translate. When building from source, you can also to exclude -backends (for example, if you don't need them or don't want to install their prerequisites). +support for the protocols to translate. When building from source, you can also choose to +exclude backends (for example, if you don't need them or don't want to install their +prerequisites). * `libasound2-dev` (for the ALSA MIDI backend) * `libevdev-dev` (for the evdev backend) diff --git a/configs/osc-artnet.cfg b/configs/osc-artnet.cfg index ab1d767..35b2111 100644 --- a/configs/osc-artnet.cfg +++ b/configs/osc-artnet.cfg @@ -5,7 +5,7 @@ bind = 0.0.0.0 [osc touch] -bind = * 8000 +bind = 0.0.0.0 8000 dest = learn@8001 [artnet out] diff --git a/midimonster.h b/midimonster.h index 2c29956..bad83c7 100644 --- a/midimonster.h +++ b/midimonster.h @@ -7,7 +7,7 @@ /* Core version unless set by the build process */ #ifndef MIDIMONSTER_VERSION - #define MIDIMONSTER_VERSION "v0.4-dist" + #define MIDIMONSTER_VERSION "v0.5-dist" #endif /* Set backend name if unset */ |