summaryrefslogtreecommitdiff
path: root/libs/surfaces
AgeCommit message (Collapse)Author
2020-04-17WebSockets: rename _lws_mnt_index to _lws_mnt_rootLuciano Iam
This mount point not only serves the index but everything that is under / , including the built-in surfaces directory
2020-04-17WebSockets: prevent crashes by validating inbound message addr and val sizesLuciano Iam
2020-04-17WebSockets: improve JS client and demoLuciano Iam
add methods to callback.js automatically reconnect js client on disconnection mixer-demo do not recreate UI on reconnection NO-OP: indentation in message.js make client JS reconnection optional fix mixer-demo scrolling minor JS client refactor improve mixer-demo readability
2020-04-17WebSockets: allow serving SVG files using libwebsockets < 3Luciano Iam
2020-04-13WebSockets: rename send_index_* to send_availsurf_* to avoid confusion with ↵Luciano Iam
a static index page
2020-04-13WebSockets: rename resource index.json to more meaningful surfaces.jsonLuciano Iam
2020-04-13WebSockets: rename all occurrences of 'disk path' to 'filesystem path'Luciano Iam
2020-04-13WebSockets: use canonical paths in index.jsonLuciano Iam
2020-04-13WebSockets: reject an empty ARDOUR_WEBSURFACES_PATHLuciano Iam
2020-04-13WebSockets: add version field in manifests and update loaderLuciano Iam
2020-04-11WebSockets: move diskPath property to surfaces group objectLuciano Iam
2020-04-11WebSockets: fix path field in index.jsonLuciano Iam
2020-04-11WebSockets: improve surface manifest format and loaderLuciano Iam
2020-04-11WebSockets: always return -1 from send_index_body() unless there is a write ↵Luciano Iam
error
2020-04-11WebSockets: add useful comment on lws_write()Luciano Iam
2020-04-11WebSockets: use lws_strncpy() when availableLuciano Iam
2020-04-11WebSockets: fix timeout when sending HTTP bodyLuciano Iam
2020-04-09websockets: shutdown UI event loop is server cannot startPaul Davis
2020-04-09change default port for websockets surfacePaul Davis
2020-04-09C++98 compatibilityRobin Gareus
2020-04-09Tweak websocket surface for use src-tree shared dirRobin Gareus
When running from the src-tree, ardev_common.sh sets multiple data-paths, to allow running ./ardev ./gtk2_ardour/ardev. Pick the first one that contains a "web_surfaces" subfolder as docroot.
2020-04-09Fix some Wunused-resultRobin Gareus
2020-04-09Update waf scriptsLuciano Iam
2020-04-09Add classes for serving content over HTTPLuciano Iam
2020-04-09Clean up and prepare for HTTPLuciano Iam
2020-04-09NO-OP update comments for header guard #endifsLuciano Iam
2020-04-08Add/remove source(s) in our MSVC project (ardour_mackie)John Emmas
2020-04-07yet another attempted fix for older gcc/mingwPaul Davis
2020-04-07another attempted fix for older gcc/mingwPaul Davis
2020-04-07do not initialize shared_ptr<Subview> with 0Paul Davis
2020-04-07more code rearrangement ... old gcc/mingw does not allow Enum::ValuePaul Davis
2020-04-07try some rearrangement to fix old mingw buildsPaul Davis
2020-04-07NOOP: whitespacePaul Davis
2020-04-07fix missing #includePaul Davis
2020-04-07fix missing #includePaul Davis
2020-04-07fix missing #includePaul Davis
2020-04-07add plugin support for mackie unitsPhil
Main features: Plugin (Select & Edit) 1. Plugin Select: When a track is selected that has PluginInserts, pushing the "Plug-In" button on a mackie will list these across the strips. Clicking a vpot of a strip enables editing the parameters of this selected plugin. 2. Plugin Edit: When a Plugin is selected for editing, the input parameters of the plugin are shown across the channel strips and the vpot is assigned the corresponsing AutomationControl for the parameter. Minor features - When the number of plugins or the number of parameters exceeds the number of strips available on the surface, one can flip through "pages" of views using the Cursor Left and Right keys (this logic I took from http://www.emagic.de/media/support/content/manuals/LogicControl_en.pdf) - When in the Plugin Select mode, rearranging the plugins in the mixer strip is reflected on the surface. - When in Plugin Edit mode, rearranging the plugins in the mixer strip still retains the edit view of the selected plugin (rearranging does not take away the current subview) - When removing a plugin in the mixer strip, this is reflected in Plugin Select, while the view jumps to Pan/Surround (the None subview) when in Plugin Edit mode. - Removing a track resets the subview to None - When in a Subview that is track-specific (Track, EQ, Send, Plug-In, Inst), selecting a different track retains the subview but updates the channel displays and vpot assignments accordingly. When in Plugin Edit mode for track A, and track B is selected, it changes to Plugin Select mode for track B (if plugins are present).
2020-04-05Add foldback busses to OSC GUILen Ovens
2020-04-05OSC: support foldback bussesLen Ovens
2020-03-26Fix websocket to glib IO condition mappingRobin Gareus
2020-03-21NO-OP: remove unused #includesRobin Gareus
2020-03-10Adhere to Ardour style guide - 810b2fb78dNikolaus Gullotta
2020-03-09Prevent double free of global observersNikolaus Gullotta
We accomplish this by explicitly setting the global_obs to NULL after free'ing it. The crash that led to this fix can be replicated as such $ sendosc localhost 3819 /set_surface i 8 i 159 i 8 $ sendosc localhost 3819 /set_surface i 0 i 0 i 0 $ sendosc localhost 3819 /set_surface i 0 i 0 i 0 In this example the observer is created, then free'd, and then free'd *again* because the new observer was never made (sur->feedback[x] checks fail)
2020-03-07Remove Mixbus send special caseRobin Gareus
Mixbus v6 uses AutomationType BusSendLevel like other Sends, however with different min/max range compared to default Ardour Aux sends. Control surfaces should use interface/internal API.
2020-03-07Fix OSC endless loop for tracks with hidden pluginsRobin Gareus
2020-02-27Fix libwebsockets compatRobin Gareus
LWS_CALLBACK_HTTP_CONFIRM_UPGRADE is only available since v3.1.0
2020-02-27Avoid occasional response delay when handling HTTP in the websockets surfaceLuciano Iam
2020-02-27Make previous commit 81ecc2b compatible with libwebsockets==2Luciano Iam
2020-02-27Gracefully reject HTTP requests reaching the websockets surfaceLuciano Iam
2020-02-25Fix deadlock, shared_ptr d'tor called from ScopedConnectionList d'torRobin Gareus
See https://ardour.org/styleguide.html #10 https://pastebin.com/gJfrNhL2