summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2019-06-04Package commandline Lua-session toolRobin Gareus
2019-05-18Add support for contourdesign ShuttlePRO v2 and ShuttleXpressJohannes Mueller
2019-04-19Update Fluidsynth to v2.0.5Robin Gareus
2019-04-10Remove support for building against LV2 older than 1.2.0David Robillard
LV2 1.2.0 was released in 2012, over 6 years ago now.
2019-04-09Unify build-system customization (Ardour/Mixbus)Robin Gareus
2019-04-08Fix OMFtool; sample_rate vs frame_rateRobin Gareus
2019-02-28Remove even more cruftRobin Gareus
http://lv2plug.in/ns/dev/host-info# doesn't exist, and nobody needs a config.guess from 2005 :)
2019-02-28Move bug-tool into the Python MuseumRobin Gareus
2019-02-23Update Fluidsynth to v2.0.4Robin Gareus
see https://github.com/FluidSynth/fluidsynth/releases/tag/v2.0.4
2019-01-17remove unnecessary call to init_post_engine() (now called from libardour)Paul Davis
2019-01-02Update Fluidsynth to v2.0.3Robin Gareus
see https://github.com/FluidSynth/fluidsynth/releases/tag/v2.0.3
2019-01-01R/W test scripts are bash scriptsRobin Gareus
2018-12-28new version of Boost shared ptr debugging patchPaul Davis
2018-12-01Night of the typos III (amend prev 2 commits)Robin Gareus
2018-12-01Also use xjadeo 64bit windows versionRobin Gareus
2018-12-01Harvid and xjadeo now feature 32/64bit window version(s)Robin Gareus
2018-11-30Freeze harvid/xjadeo PPC versionRobin Gareus
2018-11-25Bundle x42-limiter with binariesRobin Gareus
2018-11-23Update Fluidsynth to v2.0.2Robin Gareus
2018-11-15Add headless split benchmark scriptRobin Gareus
2018-11-15LuaSession: allow multi-line commands and functionsRobin Gareus
2018-10-26Wimplicit-fallthrough fixes for tools/utilsRobin Gareus
2018-10-18Update Fluidsynth to 2.0.1Robin Gareus
2018-08-07Bundle Rotary Speaker with binariesRobin Gareus
2018-04-20Use https for harrison channelstrip (windows-builds)Robin Gareus
2018-01-30Prepare plugin-meta-data config-dir and filesRobin Gareus
2017-11-30Fix error when $PATH contains whitespacesMarkus Seeber
Previously, if $PATH contains whitespaces the startup script would split the new exported $PATH on the first whitespace. This was observed on an Ubuntu system where $PATH contained a directory with whitespaces. The change adds weak quotation around the new path to prevent expansion of whitespaces. $PATH though, is still expanded.
2017-11-29OSX packaging: don't create empty Plugins dirRobin Gareus
2017-09-25additional changes to follow library name change from timecode -> temporalPaul Davis
2017-09-24convert codebase to use Temporal for various time typesPaul Davis
2017-09-20Clean up and fix win x-compile scriptRobin Gareus
2017-09-20Fix buildstack revision reportRobin Gareus
2017-09-18globally change all use of "frame" to refer to audio into "sample".Paul Davis
Generated by tools/f2s. Some hand-editing will be required in a few places to fix up comments related to timecode and video in order to keep the legible
2017-09-18remove unused computationPaul Davis
2017-09-18udev rule for Ableton Push2 devicePaul Davis
2017-09-18tweaks to the beatbox toy to properly track and connect note on/offPaul Davis
2017-09-18Add NI Maschine ctrl-surface HID/udev permissions configRobin Gareus
2017-09-07Deploy dynamically loaded NSS libs with OSX bundlesRobin Gareus
2017-08-23Deploy Session-templatesRobin Gareus
2017-08-16Prepare for removal of Advanced Session Options (BusProfile)Robin Gareus
2017-08-09really fix linux packaging jack check (amend 79dc3882ea)Robin Gareus
2017-08-05full integration of beatbox test app into ardour tree+build systemPaul Davis
Plus a few attempts at catching note on/off quantization stuff
2017-08-04add tempo adjustmentPaul Davis
2017-08-04expose more internal statePaul Davis
2017-08-04change superclock ticks per second (no need for 11,13,17)Paul Davis
2017-08-04remove some debug outputPaul Davis
2017-08-04fix bbox compilation after integration into treePaul Davis
2017-08-04new mini, standalone MIDI beatbox/live looperPaul Davis
This is for experiments with loop sequencing, MIDI region generation and superclock stuff
2017-08-01Fix Linux packaging to deal with jackd -RC versionsRobin Gareus
2017-07-18Fix LD_LIBRARY_PATH in GNU/Linux startup scriptnickolas360
Currently, the startup script for GNU/Linux adds the current working directory to LD_LIBRARY_PATH if LD_LIBRARY_PATH is not empty or unset. For example, if LD_LIBRARY_PATH is set to "/lib" when the current script is run, it will be set to "<install-dir>/lib::/lib", which includes the current working directory as one of the paths. This commit removes the extra colon added to LD_LIBRARY_PATH (without changing the script's behavior of setting LD_LIBRARY_PATH to an empty string when it is unset).