aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS4
-rw-r--r--NEWS6
-rw-r--r--README29
-rw-r--r--wscript4
4 files changed, 31 insertions, 12 deletions
diff --git a/AUTHORS b/AUTHORS
index 0df71f8..88d7337 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,4 +1,4 @@
-These plugins were written by Fons Adriaensen <fons@kokkinizita.net>,
-originally as LADSPA plugins. All credit for their quality belongs to him.
+These plugins were written by Fons Adriaensen <fons@linuxaudio.org>, originally
+as LADSPA plugins. All credit for their sonic quality belongs to him.
This LV2 port is by David Robillard <d@drobilla.net>. \ No newline at end of file
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..ba503e0
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,6 @@
+fomp (1.0.0) stable;
+
+ * Initial release
+
+ -- David Robillard <d@drobilla.net> Sat, 27 Oct 2012 16:54:00 -0400
+
diff --git a/README b/README
index 86adf55..ca371b5 100644
--- a/README
+++ b/README
@@ -1,10 +1,23 @@
-This is an LV2 port of the MCP and VCO LADSPA plugins by Fons Adriaensen.
+FOMP
+----
-It features more precise plugin descriptions (in particular, CV ports are
-distinct from audio ports, and unit metadata is available), but otherwise
-remains faithful to the originals. The code is identical to the original
-LADSPA versions except for some type changes which should not affect output.
-These plugins should be sonically indestinguishable from the originals.
+This is an LV2 port of the MCP, VCO, FIL, and WAH plugins by Fons Adriaensen.
-Documentation for each plugin is included in the plugin's data file, and should
-be available as online help in the host interface. \ No newline at end of file
+There are 13 plugins in total: 1 auto-wah, 1 EQ, 3 chorus, 5 filters, and 3
+oscillators.
+
+The plugin implementations are identical to their LADSPA forebears, except the
+primary frequency port of oscillators and filters has been converted to Hz to
+facilitate use in any host without assuming the hidden tuning frequency of
+AlsaModularSynth. All other frequency ports remain as they were, using octaves
+for faithful Moog-like modulation.
+
+Aside from that, the main benefit of these LV2 ports is improved metadata: CV
+ports are distinguishable from audio ports, controls have units where
+applicable, documentation is built-in for display in host UIs, and so on.
+
+The oscillators and filters are mainly useful in modular synthesizers, but
+since CV ports are distinct from audio ports, they should work fine in
+non-modular hosts as well.
+
+ -- David Robillard <d@drobilla.net>
diff --git a/wscript b/wscript
index e93b4d3..41d391e 100644
--- a/wscript
+++ b/wscript
@@ -4,7 +4,7 @@ import shutil
import waflib.extras.autowaf as autowaf
# Version of this package (even if built as a child)
-FOMP_VERSION = '0.0.0'
+FOMP_VERSION = '1.0.0'
# Mandatory waf variables
APPNAME = 'fomp' # Package name for waf dist
@@ -31,7 +31,7 @@ def configure(conf):
conf.env.pluginlib_PATTERN = pat
conf.env.pluginlib_EXT = pat[pat.rfind('.'):]
- autowaf.display_msg(conf, "LV2 bundle directory",
+ autowaf.display_msg(conf, 'LV2 bundle directory',
conf.env.LV2DIR)
print('')