aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-params.lv2
AgeCommit message (Collapse)AuthorFilesLines
2023-09-23Format meson.build files with muonDavid Robillard1-1/+1
The less time wasted with manual code formatting, the better.
2023-02-04Fix clang and clang-tidy warnings in WindowsDavid Robillard1-1/+1
2022-09-08Use 0BSD for trivial "public domain intent" thingsDavid Robillard1-1/+1
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-08Adopt REUSE machine-readable licensing standardDavid Robillard2-32/+4
2022-07-17Switch to meson build systemDavid Robillard2-49/+41
2022-07-17Fix whitespace and add missing clang-format configurationDavid Robillard1-1/+2
2022-05-26Suppress new warnings in clang-tidy 13David Robillard1-1/+1
2022-05-26Avoid "else" after "return"David Robillard1-3/+3
2022-05-26Fix whitespaceDavid Robillard1-1/+1
2020-12-26Format all code with clang-formatDavid Robillard2-395/+387
2020-12-26Add clang-format suppression commentsDavid Robillard1-0/+13
2020-12-16Clean up includesDavid Robillard1-0/+1
2020-12-16Fix implicit and narrowing conversionsDavid Robillard1-1/+1
2020-12-16Isolate variable declarations and initialize all variablesDavid Robillard1-5/+5
2020-09-27Don't use else after returnDavid Robillard1-1/+4
2020-09-27Initialize all variablesDavid Robillard1-1/+1
2020-02-16Make parameter data validateDavid Robillard1-3/+3
This is rather annoying, but unfortunately xsd:decimal is not a related type to xsd:float. A future smarter version of the validator will be able to deal with this, but for now we'll have to be explicit and tolerate a bit of unpleasant syntactic noise.
2019-11-10Simplify plugin building and set up source tree run environmentDavid Robillard1-10/+5
This sets up LV2_PATH in waf tests so that tests can use specifications and plugins from the source tree without installing.
2019-10-17Update autowafDavid Robillard1-1/+1
2019-04-21Fix building within a recursive projectDavid Robillard1-9/+2
2019-03-17Update autowaf and adapt to new APIDavid Robillard1-4/+0
2019-01-10Sort includes from local to standard and fix exposed issuesDavid Robillard2-6/+10
This order is better because it ensures that headers can stand alone and include everything they need. Several missing includes were exposed by this, and are also fixed in this commit.
2019-01-10Remove workaround for ancient MSVCDavid Robillard1-3/+1
2018-09-23Clean up includesDavid Robillard1-1/+3
2018-09-22Install standard headers to simpler include pathsDavid Robillard1-9/+9
2018-01-05Upgrade to waf 2.0.4David Robillard1-4/+3
2016-09-19Fix compilation as C++David Robillard1-3/+3
2016-09-18Tidy up API documentation font sizes and spacingDavid Robillard1-1/+1
2016-09-18Simplify property handling with state map utilityDavid Robillard2-227/+237
2016-09-18Reduce verbosity of logging codeDavid Robillard1-47/+41
2016-09-18Fix coding styleDavid Robillard1-5/+4
2016-09-18eg-params: Add lv2:control designation to portsDavid Robillard1-0/+2
2016-09-05Fix bundle installation directoryDavid Robillard1-0/+2
2016-07-31Fix compilation with C++David Robillard1-1/+1
2016-07-31Clean up example plugin initializationDavid Robillard1-43/+15
2016-07-30Fix include styleDavid Robillard1-4/+2
2016-07-26Make spring control decrease all the way to zeroDavid Robillard1-2/+2
2016-07-26Fix handling of Get and Set with NULL subjectDavid Robillard1-3/+4
2016-07-14Implement patch:Get for single properties.Hanspeter Portner1-18/+108
Let the plugin return values for single properties. This is useful for hosts that query for properties individually. Hosts may want to query for properties individually if there are really many properties and/or there is interest for a limited number only (e.g. limited space on UI). patch:Get and patch:Set queries are optionally checked for a matching patch:subject, if a given host should have set it in the first place.
2016-04-25eg-params: Fix invalid Put response to GetDavid Robillard1-3/+11
2015-12-04Add parameter example pluginDavid Robillard5-0/+780