<feed xmlns='http://www.w3.org/2005/Atom'>
<title>lv2.git/plugins, branch v1.18.8</title>
<subtitle>LV2</subtitle>
<link rel='alternate' type='text/html' href='https://lv2plug.in/git/cgit.cgi/lv2.git/'/>
<entry>
<title>eg-sampler: Add resampling via libsamplerate</title>
<updated>2022-08-09T01:46:09+00:00</updated>
<author>
<name>falkTX</name>
<email>falktx@falktx.com</email>
</author>
<published>2021-03-15T11:09:48+00:00</published>
<link rel='alternate' type='text/html' href='https://lv2plug.in/git/cgit.cgi/lv2.git/commit/?id=2f17c8c0e0dda285c35c1048454190c90c142b24'/>
<id>2f17c8c0e0dda285c35c1048454190c90c142b24</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>eg-sampler: Convert multi-channel audio files to mono</title>
<updated>2022-08-09T01:46:08+00:00</updated>
<author>
<name>falkTX</name>
<email>falktx@falktx.com</email>
</author>
<published>2021-03-10T14:22:10+00:00</published>
<link rel='alternate' type='text/html' href='https://lv2plug.in/git/cgit.cgi/lv2.git/commit/?id=18c99199deec1b0bbeea4ae659d91aef90a928c3'/>
<id>18c99199deec1b0bbeea4ae659d91aef90a928c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>eg-sampler: Fix potentially corrupt notification events</title>
<updated>2022-08-09T01:46:07+00:00</updated>
<author>
<name>David Robillard</name>
<email>d@drobilla.net</email>
</author>
<published>2022-08-09T01:45:04+00:00</published>
<link rel='alternate' type='text/html' href='https://lv2plug.in/git/cgit.cgi/lv2.git/commit/?id=1c32082b4679a7a4898a20575c0550c8097f6406'/>
<id>1c32082b4679a7a4898a20575c0550c8097f6406</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>eg-sampler: Install click.wav to plugin bundle</title>
<updated>2022-08-09T01:45:50+00:00</updated>
<author>
<name>David Robillard</name>
<email>d@drobilla.net</email>
</author>
<published>2022-08-08T20:32:59+00:00</published>
<link rel='alternate' type='text/html' href='https://lv2plug.in/git/cgit.cgi/lv2.git/commit/?id=d69fdf76163882eaef3f4c00373ecebdfca85deb'/>
<id>d69fdf76163882eaef3f4c00373ecebdfca85deb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>midigate: Fix output timing</title>
<updated>2022-08-08T01:21:01+00:00</updated>
<author>
<name>Timothy Krause</name>
<email>tmkrs4482@gmail.com</email>
</author>
<published>2021-11-30T13:26:10+00:00</published>
<link rel='alternate' type='text/html' href='https://lv2plug.in/git/cgit.cgi/lv2.git/commit/?id=906deeb65880163de93027cd804c596f3bc2936e'/>
<id>906deeb65880163de93027cd804c596f3bc2936e</id>
<content type='text'>
Previously, the state was updated before writing the output (up to the current
time), so output "in the past" would be incorrectly written based on the
current state.  This fixes that by switching things around, so the output is
first written up to the current time, then the state is updated (and the loop
continues).

This takes advantage of the fact that write_output() effectively does nothing
with a zero length.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, the state was updated before writing the output (up to the current
time), so output "in the past" would be incorrectly written based on the
current state.  This fixes that by switching things around, so the output is
first written up to the current time, then the state is updated (and the loop
continues).

This takes advantage of the fact that write_output() effectively does nothing
with a zero length.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rearrange source tree to be directly usable by dependants</title>
<updated>2022-07-17T22:14:00+00:00</updated>
<author>
<name>David Robillard</name>
<email>d@drobilla.net</email>
</author>
<published>2022-07-07T22:59:32+00:00</published>
<link rel='alternate' type='text/html' href='https://lv2plug.in/git/cgit.cgi/lv2.git/commit/?id=1eccbe4355685b322194df72b5de2382d5290b3b'/>
<id>1eccbe4355685b322194df72b5de2382d5290b3b</id>
<content type='text'>
This allows the LV2 source distribution to be used as an include path for
compilers and an LV2_PATH for applications, at the expense of self-contained
bundles.  That's a nice idea, but it made LV2 itself weird and annoying to
depend on.  This rearranges things so that directories in the source tree
correspond more closely to installation directories.

To make this possible, the "aux" directory in the documentation output has been
changed to "style", to avoid the reserved name "aux" on Windows.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows the LV2 source distribution to be used as an include path for
compilers and an LV2_PATH for applications, at the expense of self-contained
bundles.  That's a nice idea, but it made LV2 itself weird and annoying to
depend on.  This rearranges things so that directories in the source tree
correspond more closely to installation directories.

To make this possible, the "aux" directory in the documentation output has been
changed to "style", to avoid the reserved name "aux" on Windows.
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch to meson build system</title>
<updated>2022-07-17T22:13:53+00:00</updated>
<author>
<name>David Robillard</name>
<email>d@drobilla.net</email>
</author>
<published>2022-07-07T22:59:06+00:00</published>
<link rel='alternate' type='text/html' href='https://lv2plug.in/git/cgit.cgi/lv2.git/commit/?id=d4a970f6962dda28133290194832b726b566ddab'/>
<id>d4a970f6962dda28133290194832b726b566ddab</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up and modernize Python support code</title>
<updated>2022-07-17T21:08:38+00:00</updated>
<author>
<name>David Robillard</name>
<email>d@drobilla.net</email>
</author>
<published>2022-06-16T18:30:06+00:00</published>
<link rel='alternate' type='text/html' href='https://lv2plug.in/git/cgit.cgi/lv2.git/commit/?id=86835a05f5e4d4ca7e016e29210cd613af0ea2ce'/>
<id>86835a05f5e4d4ca7e016e29210cd613af0ea2ce</id>
<content type='text'>
Switches to safer and more modern idioms, and addresses many issues raised by
flake8 and pylint.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Switches to safer and more modern idioms, and addresses many issues raised by
flake8 and pylint.
</pre>
</div>
</content>
</entry>
<entry>
<title>Format all Python code with black</title>
<updated>2022-07-17T21:08:38+00:00</updated>
<author>
<name>David Robillard</name>
<email>d@drobilla.net</email>
</author>
<published>2022-06-16T17:36:45+00:00</published>
<link rel='alternate' type='text/html' href='https://lv2plug.in/git/cgit.cgi/lv2.git/commit/?id=85e480aa08aef7d20617bd084e8a61b745e0aed6'/>
<id>85e480aa08aef7d20617bd084e8a61b745e0aed6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix whitespace and add missing clang-format configuration</title>
<updated>2022-07-17T21:08:38+00:00</updated>
<author>
<name>David Robillard</name>
<email>d@drobilla.net</email>
</author>
<published>2022-06-16T12:19:54+00:00</published>
<link rel='alternate' type='text/html' href='https://lv2plug.in/git/cgit.cgi/lv2.git/commit/?id=487caa5868d816ae811c6a68f2bb9b1f5a798dbe'/>
<id>487caa5868d816ae811c6a68f2bb9b1f5a798dbe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
