aboutsummaryrefslogtreecommitdiffstats
path: root/src/state.c
AgeCommit message (Collapse)AuthorFilesLines
2023-09-22Clean up includesDavid Robillard1-3/+0
2022-11-16Switch to external zix dependencyDavid Robillard1-1/+1
2022-08-17Factor out jalv_write_control()David Robillard1-12/+4
2022-08-17Clarify communication function namesDavid Robillard1-1/+1
2022-08-17Use clearer names for communication ringsDavid Robillard1-1/+1
2022-08-17Use a consistent interface for error/warning/debug loggingDavid Robillard1-8/+8
Towards the ability to hook the log into other things (for display in a UI, for example). The implementation still just prints to stderr, although now with consistent formatting.
2022-08-17Move Port definition to its own headerDavid Robillard1-0/+1
2022-08-17Move control-related type definitions to control.hDavid Robillard1-0/+1
2022-08-17Move JalvURIDs and JalvNodes to their own headersDavid Robillard1-0/+1
2022-08-17Separate state.h from jalv_internal.hDavid Robillard1-0/+2
2022-08-17Separate log.h from jalv_internal.hDavid Robillard1-0/+1
2022-08-17Adopt REUSE machine-readable licensing standardDavid Robillard1-15/+2
2022-05-30Remove use of VLAsDavid Robillard1-1/+1
2022-05-27Format all code with clang-formatDavid Robillard1-157/+172
2021-01-02Use email address instead of website for attributionDavid Robillard1-1/+1
2020-12-14Initialize all variablesDavid Robillard1-1/+1
2020-12-14Update zixDavid Robillard1-5/+5
2020-09-27Clean up includesDavid Robillard1-11/+10
2020-07-21Remove unused macrosDavid Robillard1-5/+0
2019-10-17Clean up includesDavid Robillard1-9/+9
2018-11-10Move features to Jalv structTimo Wischer1-20/+11
2018-09-24Fix unused parameter warningsTimo Wischer1-5/+5
Signed-off-by: Timo Wischer <twischer@de.adit-jv.com>
2018-09-23Remove support for deprecated event and uri-map extensionsDavid Robillard1-2/+1
2018-01-16Remove unnecessary includesDavid Robillard1-1/+0
2016-10-05Factor out Jack backendDavid Robillard1-1/+1
2016-07-31Support thread-safe state restorationDavid Robillard1-5/+26
2015-12-04Remove unused macrosDavid Robillard1-2/+0
2015-11-08Support numeric and string plugin propertiesDavid Robillard1-0/+1
Also: * Print plugin/UI communication log in colour if supported * Update UI when internal plugin state is changed during preset load git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5812 a436a847-0d15-0410-975c-d299462d15a1
2015-10-17Remove unused definesDavid Robillard1-4/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5769 a436a847-0d15-0410-975c-d299462d15a1
2015-08-30Add option to load preset from the command line.David Robillard1-0/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5717 a436a847-0d15-0410-975c-d299462d15a1
2015-05-22Fix deleting and re-saving presets.David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5681 a436a847-0d15-0410-975c-d299462d15a1
2015-03-07Improve preset support.David Robillard1-11/+19
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5618 a436a847-0d15-0410-975c-d299462d15a1
2015-03-06Don't print all presets to console on load.David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5614 a436a847-0d15-0410-975c-d299462d15a1
2014-08-08Update copyright dates.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5426 a436a847-0d15-0410-975c-d299462d15a1
2014-07-15Support saving the same preset several times.David Robillard1-0/+15
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5414 a436a847-0d15-0410-975c-d299462d15a1
2013-12-17Fix more const issues.David Robillard1-4/+4
Require latest LV2 svn for Ingen (fix #945). git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5174 a436a847-0d15-0410-975c-d299462d15a1
2012-08-22Fix state restoration.David Robillard1-3/+8
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4745 a436a847-0d15-0410-975c-d299462d15a1
2012-08-09Fix warnings: -Wshadow -Wpointer-arith -Wcast-align -Wstrict-prototypes ↵David Robillard1-1/+1
-Wmissing-prototypes. git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4634 a436a847-0d15-0410-975c-d299462d15a1
2012-06-13Tolerate loading presets with port values that aren't xsd:decimal (fix #824).David Robillard1-4/+11
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4499 a436a847-0d15-0410-975c-d299462d15a1
2012-04-12Use URI defines from LV2 headers where possible.David Robillard1-8/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4175 a436a847-0d15-0410-975c-d299462d15a1
2012-04-11Write port values in presets as pretty numbers.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4168 a436a847-0d15-0410-975c-d299462d15a1
2012-04-11Simpler preset saving.David Robillard1-3/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4166 a436a847-0d15-0410-975c-d299462d15a1
2012-04-10Make controls update when changing presets (except combos).David Robillard1-1/+1
Fix scale point value bug. Fix memory leaks. git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4158 a436a847-0d15-0410-975c-d299462d15a1
2012-04-09More sensible URI node cacheing structure.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4153 a436a847-0d15-0410-975c-d299462d15a1
2012-04-09Tidy.David Robillard1-1/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4151 a436a847-0d15-0410-975c-d299462d15a1
2012-03-06Use raw type/size/value instead of LilvNode for port values.David Robillard1-9/+16
Remove use of half-baked node_to_serd() and use sratom for port values as well. git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4023 a436a847-0d15-0410-975c-d299462d15a1
2012-03-03Update for latest Lilv.David Robillard1-4/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4021 a436a847-0d15-0410-975c-d299462d15a1
2012-02-09Mac portability fixes.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@3978 a436a847-0d15-0410-975c-d299462d15a1
2012-01-28Update state interface to support multiple state snapshots with shared files.David Robillard1-5/+10
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@3967 a436a847-0d15-0410-975c-d299462d15a1
2012-01-18Use consistent *_config.h rather than *-config.h.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@3963 a436a847-0d15-0410-975c-d299462d15a1