Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-02-04 | Fix clang and clang-tidy warnings in Windows | David Robillard | 2 | -2/+1 | |
2023-02-03 | Suppress new warnings in clang-tidy 15 | David Robillard | 1 | -0/+2 | |
2022-12-11 | Clean up include guards | David Robillard | 2 | -1/+2 | |
2022-12-11 | Simplify clang-tidy configuration | David Robillard | 1 | -4/+0 | |
2022-12-11 | Test headers for warnings more strictly | David Robillard | 1 | -12/+1 | |
2022-09-09 | Use uppercase integer literal suffixes | David Robillard | 3 | -4/+8 | |
2022-09-09 | Clean up clang-tidy configuration | David Robillard | 1 | -0/+22 | |
2022-09-08 | Suppress Wbad-function-cast everywhere | David Robillard | 1 | -6/+1 | |
Enough of this. | |||||
2022-09-08 | Suppress Wbad-function-cast warnings on FreeBSD | David Robillard | 2 | -6/+11 | |
2022-09-08 | Use 0BSD for trivial "public domain intent" things | David Robillard | 8 | -8/+8 | |
Fedora takes issue with CC0. Although it doesn't really matter for this stuff (dual licensed anyway, questionably "software", certainly not patentable, and so on), this is simpler and more consistent with the ISC license used for the actual software anyway. | |||||
2022-09-08 | Adopt REUSE machine-readable licensing standard | David Robillard | 15 | -238/+34 | |
2022-09-08 | Suppress Wstrict-overflow warnings on Fedora | David Robillard | 1 | -1/+6 | |
2022-08-31 | Fix missing example plugin UI binaries | David Robillard | 2 | -0/+38 | |
2022-08-08 | eg-sampler: Add resampling via libsamplerate | falkTX | 2 | -7/+50 | |
2022-08-08 | eg-sampler: Convert multi-channel audio files to mono | falkTX | 1 | -4/+25 | |
2022-08-08 | eg-sampler: Fix potentially corrupt notification events | David Robillard | 1 | -12/+11 | |
2022-08-08 | eg-sampler: Install click.wav to plugin bundle | David Robillard | 1 | -1/+1 | |
2022-08-07 | midigate: Fix output timing | Timothy Krause | 1 | -3/+3 | |
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. | |||||
2022-07-17 | Rearrange source tree to be directly usable by dependants | David Robillard | 1 | -2/+2 | |
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. | |||||
2022-07-17 | Switch to meson build system | David Robillard | 21 | -418/+372 | |
2022-07-17 | Clean up and modernize Python support code | David Robillard | 1 | -59/+66 | |
Switches to safer and more modern idioms, and addresses many issues raised by flake8 and pylint. | |||||
2022-07-17 | Format all Python code with black | David Robillard | 1 | -40/+49 | |
2022-07-17 | Fix whitespace and add missing clang-format configuration | David Robillard | 2 | -2/+4 | |
2022-07-17 | Use "python3" in shebangs | David Robillard | 1 | -1/+1 | |
Python 2 hit EOL long ago, and some systems don't have a "python" at all. | |||||
2022-07-17 | Make potentially lossy type conversions explicit | David Robillard | 3 | -5/+5 | |
2022-05-27 | Replace use of deprecated ui:binary in examples with lv2:binary | David Robillard | 2 | -2/+2 | |
2022-05-26 | Suppress new warnings in clang-tidy 13 | David Robillard | 4 | -7/+12 | |
2022-05-26 | Avoid "else" after "return" | David Robillard | 3 | -8/+22 | |
2022-05-26 | Fix whitespace | David Robillard | 2 | -2/+2 | |
2022-05-18 | Fix typos | David Robillard | 1 | -1/+1 | |
2022-05-09 | Fix incorrect spelling and test for regression with codespell | David Robillard | 2 | -2/+2 | |
2021-03-10 | Fix warnings with VS2019 | David Robillard | 1 | -1/+1 | |
2021-03-10 | eg-sampler: Fix out of bounds sample read after loading new file | Filipe Coelho | 1 | -0/+4 | |
2020-12-26 | Format all code with clang-format | David Robillard | 15 | -2749/+2679 | |
2020-12-26 | Make include guards surround all header contents | David Robillard | 1 | -3/+3 | |
For consistency, and because clang-tidy can't figure out if a define is an include guard unless it ends the file. | |||||
2020-12-26 | Add clang-format suppression comments | David Robillard | 9 | -0/+56 | |
2020-12-18 | eg-sampler: Send update to UI if gain parameter changes | Filipe Coelho | 2 | -8/+46 | |
2020-12-18 | eg-sampler: Save and restore gain parameter value | Filipe Coelho | 1 | -2/+28 | |
2020-12-18 | eg-sampler: Fix default gain value | Filipe Coelho | 1 | -1/+1 | |
The initial gain coefficient in the code is 1.0 (full volume). The parameter itself is in dB, though, so the matching external default value is zero. | |||||
2020-12-16 | Add assertions for atom buffer sizes | David Robillard | 2 | -0/+13 | |
This avoids warnings about potential null pointer dereferences, which is true, but in this case the buffer are static so it's really a programming error if there is ever an overrun. | |||||
2020-12-16 | Clean up includes | David Robillard | 7 | -5/+17 | |
2020-12-16 | Avoid clang-tidy warning about sizeof | David Robillard | 1 | -1/+1 | |
2020-12-16 | Fix implicit and narrowing conversions | David Robillard | 6 | -10/+10 | |
2020-12-16 | Isolate variable declarations and initialize all variables | David Robillard | 5 | -19/+20 | |
2020-12-16 | Simplify degenerate switches | David Robillard | 7 | -40/+7 | |
2020-09-27 | Don't use else after return | David Robillard | 2 | -4/+13 | |
2020-09-27 | Initialize all variables | David Robillard | 1 | -1/+1 | |
2020-09-27 | Fix narrowing conversions | David Robillard | 1 | -11/+11 | |
2020-09-27 | Clean up includes | David Robillard | 1 | -0/+2 | |
2020-07-25 | Revert "Use LV2_ATOM_BODY macros in examples instead of pointer arithmetic" | David Robillard | 3 | -3/+3 | |
This reverts commit 3aad5eb1b08ed5c27e60aa36021c4a85ce90c08f, which broke the example plugins. |