summaryrefslogtreecommitdiff
path: root/gtk2_ardour
AgeCommit message (Collapse)Author
2017-02-21better solution of 3c25d26e9Robin Gareus
2017-02-21Fix potential crash at exit/close.Robin Gareus
~DisplaySuspender's PresentationInfo::unsuspend_change_signal can try to update Stripable PresentationInfo for a session that's no longer present.
2017-02-21Group-Tabs keyboard shortcutsRobin Gareus
* The return of the ctrl+right-click (edit) * and consistent shift+right click (remove)
2017-02-21fix typo in prev commitRobin Gareus
2017-02-20MB: prefs are detached initiallyRobin Gareus
2017-02-20fix thinko in prev commitRobin Gareus
2017-02-20Fix iterator off-by-one: Allow to move top-most track. via ctrl up/downRobin Gareus
2017-02-20First-time startup logic update.Robin Gareus
When *not* copying old config, Ardour should display the "first time" dialog.
2017-02-20Consistent VCA naming (Ardour/Mixbus)Robin Gareus
2017-02-20consolidate Ardour+Mixbus code, fix duplicate SeparatorElem in MB.Robin Gareus
2017-02-20use "VCA" rather than "Control Master" in the GUIPaul Davis
2017-02-20ensure that when mixer is shown in its own tab, it has a default focus ↵Paul Davis
widget, so that alt-m will always work
2017-02-20Increase default size of script-editor paneRobin Gareus
2017-02-20Lua binding for pango_cairo_layout_path (text outlines)Robin Gareus
2017-02-19probable fix for crash while dragging playheadPaul Davis
2017-02-19Consistent dialog title (match "Show Protocol Settings" button)Robin Gareus
2017-02-19Connect Script Manager "Edit" -> Lua Scripting WindowRobin Gareus
2017-02-19Build-in some doc (script types)Robin Gareus
This should probably be optional, but there's space in the dialog.
2017-02-19Remove unused ArdourUI code to add/remove Lua Session Scripts.Robin Gareus
2017-02-19Update menu for LuaRobin Gareus
- remove "Session > Scripting" entry point - change ActionScripts to LuaScripts (all of them sans DSP)
2017-02-19Allow to un/load Lua Session Scripts in the Script ManagerRobin Gareus
2017-02-19fix missing command in Editor::snap_regions_to_grid ()nick_m
- fixes 7246
2017-02-18re-layout script-selector (only grow description vertically)Robin Gareus
2017-02-18Consolidate ActionChanged callbacks, add tooltipsRobin Gareus
2017-02-18Remove LuaCairo.color_to_rgba (now Ardour.LuaAPI.color_to_rgba)Robin Gareus
2017-02-18Allow to un-assign action-scripts via shift+right-clickRobin Gareus
2017-02-18Don't scroll-jump when selecting all tracksRobin Gareus
2017-02-18Prevent direct and indirect selection of VCAsRobin Gareus
the ::selection_filter() does not cover select-all and various other indirect selection operations.
2017-02-18VCA spill should not show hidden tracksRobin Gareus
2017-02-17Allow to re-scan VST plugins after changing VST-pathsRobin Gareus
2017-02-17Add gcc suggested parenthesesRobin Gareus
2017-02-17Add Lua API to convert Canvas::Color to Cairo RGBARobin Gareus
2017-02-17Fix button sizing for IconRenderCallbackRobin Gareus
2017-02-17Allow Lua action scripts to provide a button iconRobin Gareus
2017-02-17Implement icon-render callback in ArdourButtonRobin Gareus
2017-02-17PT import: Add MIDI import functionalityDamien Zammit
This change adds support for importing all MIDI regions from a PT session onto a single track. Unfortunately, currently we don't know how to set the start offset of MIDI regions reliably, therefore all midi regions get dumped at the beginning of the Ardour session. Signed-off-by: Damien Zammit <damien@zamaudio.com>
2017-02-17Mark session dirty when changing scriptsRobin Gareus
2017-02-17Allow binding Lua Action Scripts via right-clickRobin Gareus
2017-02-17Version keybindings file.Robin Gareus
Allow to run both Ardour 5.5 and later (changed bindings name) with the same config folder. Like with .color files, custom .keys files won't be taken into account when updating to a new version. This is mostly a stopgap solution. Eventually we'll have to come up with a merge&prune mechanism for bindings or maintain a separate version for these files. Hopefully some better idea will come up...
2017-02-17Fix route ordering (mixer TV lacks master-bus)Robin Gareus
Skip master bus' order-key when re-ordering routes in the mixer. This also fixes a related issue: When a new track is added, Session::RouteAdded will call be handled by Editor::add_routes AND Mixer_UI::add_routes, leading to calls to both: - EditorRoutes::sync_presentation_info_from_treeview() - Mixer_UI::sync_presentation_info_from_treeview () which potentially set different order-keys.
2017-02-16Toolbar spacing: Add back one pixel of vertical padding, and preserve it ↵Ben Loftis
regardless of which button sections are hidden.
2017-02-16Prevent "punch" and "mon" buttons from increasing toolbar height.Robin Gareus
2017-02-16Properly update main window-title.Robin Gareus
This fixes an issue with Session > Snapshot & switch, not updating the widow title to the new snapshot (and probably some other edge cases where it was possible for a detached editor and main window to have different titles). The main UI now updates the window-title like the Editor on StateSaved. (it may lead to dup updates with DirtyChanged, c'est la vie)
2017-02-16check region action sensitivity from two more places that may alter itPaul Davis
2017-02-16improve logic for region action sensitivity settingsPaul Davis
2017-02-16fix constrained region drags across tracks (7242).nick_m
2017-02-15simplify arguments to Editor::sensitize_the_right_region_actions()Paul Davis
2017-02-15use leave/enter from track canvas to be the primary driver of region action ↵Paul Davis
sensitivity This works for context menus also, because GTK sends us leave/enter notify events when they appear.
2017-02-15classify all region actions based on how they get a list of regions to ↵Paul Davis
operate on; use this in Editor::sensitize_the_right_region_actions() There are still problems because actions like trim_front() that use the edit point get the edit point with different results than the code that sensitizes actions
2017-02-15tentative steps in trying to fix region action sensitivityPaul Davis