[SCM] calf/master: Merge branch 'master' of git://repo.or.cz/calf

js at users.alioth.debian.org js at users.alioth.debian.org
Tue May 7 15:37:56 UTC 2013


+ AutoHell: update version number to 0.0.16.2
+ ChangeLog: update to reflect DSSI GUI fix
+ ChangeLog: updated to 0.0.16.1 (also incremented version number in configure.ac)
+ MultiChorus: fix DSSI GUI too
+ Knob: eat mouse wheel and pointer motion events so that they do not end up (for example) moving canvas unnecessarily
+ MultiChorus: get LV2 GUI to work (continue using that nasty hack for now)
+ AutoHell: add calf.desktop to Git ignore list, as it's autogenerated
+ Multichorus: add rudimentary LFO phase display to Multichorus
+ Framework: add initial output control port support (only works in JACK host for now), emit LV2 connectionOptional property
+ Fixed point class: make one() function static as it should be
+ Monosynth: get rid of unnecessary alignment objects and box properties (they shouldn't be necessary anymore now that the knob positions itself correctly)
+ Framework: put plugin_info for Monosynth and Organ in their respective .cpp files instead of modules.cpp
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
X-Git-Refname: refs/heads/master
X-Git-Reftype: branch
X-Git-Oldrev: d6a3c1a63a147948535a50da009275278ad5e6a3
X-Git-Newrev: 34569260c452f0fa4c543155ebba174a42a343dc

The following commit has been merged in the master branch:
commit 06b19c258b1ed92b8ac2b25c9d587b80f7e18e3d
Merge: adc87f1a8453f58fee5979a9a0af0053a10594ae 329650465083d11444a9b5c9101cc1c4f9d34c63
Author: Thor Harald Johansen <thor at thor-pc.(none)>
Date:   Thu Oct 30 19:13:40 2008 +0100

    Merge branch 'master' of git://repo.or.cz/calf

diff --combined src/modules.cpp
index 954ca61,45bccef..32f6bfc
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@@ -155,14 -155,6 +155,6 @@@ synth::ladspa_plugin_info rotary_speake
  
  ////////////////////////////////////////////////////////////////////////////
  
- synth::ladspa_plugin_info organ_audio_module::plugin_info = { 0x8481, "Organ", "Calf Organ", "Krzysztof Foltman", synth::calf_copyright_info, "SynthesizerPlugin" };
- 
- ////////////////////////////////////////////////////////////////////////////
- 
- synth::ladspa_plugin_info monosynth_audio_module::plugin_info = { 0x8480, "Monosynth", "Calf Monosynth", "Krzysztof Foltman", synth::calf_copyright_info, "SynthesizerPlugin" };
- 
- ////////////////////////////////////////////////////////////////////////////
- 
  const char *multichorus_audio_module::port_names[] = {"In L", "In R", "Out L", "Out R"};
  
  parameter_properties multichorus_audio_module::param_props[] = {
@@@ -173,19 -165,12 +165,21 @@@
      { 4,          1,   8,   8, PF_INT | PF_SCALE_LINEAR | PF_CTL_FADER, NULL, "voices", "Voices"},
      { 64,         0, 360,  91, PF_FLOAT | PF_SCALE_LINEAR | PF_CTL_KNOB | PF_UNIT_DEG, NULL, "vphase", "Inter-voice phase" },
      { 2,          0,   4,   0, PF_FLOAT | PF_SCALE_GAIN | PF_CTL_KNOB | PF_UNIT_COEF | PF_PROP_NOBOUNDS, NULL, "amount", "Amount" },
+     { 180,        0, 360,  91, PF_FLOAT | PF_SCALE_LINEAR | PF_CTL_KNOB | PF_UNIT_DEG | PF_PROP_OUTPUT | PF_PROP_OPTIONAL, NULL, "lfo_phase_l", "Left LFO phase" },
+     { 180,        0, 360,  91, PF_FLOAT | PF_SCALE_LINEAR | PF_CTL_KNOB | PF_UNIT_DEG | PF_PROP_OUTPUT | PF_PROP_OPTIONAL, NULL, "lfo_phase_r", "Right LFO phase" },
  };
  
  synth::ladspa_plugin_info multichorus_audio_module::plugin_info = { 0x8501, "MultiChorus", "Calf MultiChorus", "Krzysztof Foltman", synth::calf_copyright_info, "ChorusPlugin" };
  
 +parameter_properties compressor_audio_module::param_props[] = {
 +    { 1,      0, 1,    0, PF_FLOAT | PF_SCALE_GAIN | PF_CTL_KNOB | PF_UNIT_DB, NULL, "threshold", "Threshold" },
 +    { 1,      1, 100,  0, PF_FLOAT | PF_SCALE_LOG | PF_CTL_KNOB | PF_UNIT_COEF, NULL, "ratio", "Ratio" },
 +};
 +
 +synth::ladspa_plugin_info compressor_audio_module::plugin_info = { 0x8502, "Compressor", "Calf Compressor", "Thor Harald Johansen", synth::calf_copyright_info, "CompressorPlugin" };
 +
 +const char *compressor_audio_module::port_names[] = {"In", "Out"};
 +
  ////////////////////////////////////////////////////////////////////////////
  
  template<class Module>

-- 
calf audio plugins packaging



More information about the pkg-multimedia-commits mailing list