summaryrefslogtreecommitdiff
path: root/gtk2_ardour
AgeCommit message (Collapse)Author
2020-03-25NO-OP: whitespaceRobin Gareus
2020-03-25Fix crash at exit when closing session before quitRobin Gareus
2020-03-24debug outputPaul Davis
2020-03-24debug outputPaul Davis
2020-03-24handle scratch session when quittingPaul Davis
2020-03-24Remove redundant AZERTY Virtual MIDI Keyboard LayoutNil Geisweiller
2020-03-24when saving an unnamed session, rename it (GUI edition)Paul Davis
Note that this is done at the GUI level, might need to double check if there are other paths into a "save" that should be covered. Control surfaces use the action, but Lua comes to mind
2020-03-24introduce the idea of an "unnamed" session (GUI edition)Paul Davis
2020-03-24fix startup behavior if answering "No" to "Do you want to open (this ↵Paul Davis
existing session)?"
2020-03-24detect whether or not user edited the name for a new sessionPaul Davis
Suprisingly hard/irritating. Thanks, GTK! (Gtk::Entry::set_text() emits all the same signals that actual user interaction can trigger, except for key events)
2020-03-24prefill new session name with a date-based defaultPaul Davis
Select it, so that typing will immediately replace it
2020-03-24Do not use openGL backed canvas + widgets on CatalinaRobin Gareus
This needs testing: local builds on Catalina vs. running existing (10.6, 10.11) builds on 10.15.
2020-03-24Add API to query OSX/MacOS versionRobin Gareus
2020-03-23fix error in multiple calls to SourceFactory::createWritable()Paul Davis
removal of tape tracks removed an intermediate argument in the argument list; presence of default args for the last two arguments and implicit conversion from int->bool prevented the compiler from complaining about any existing calls. This supplements/extends a54b000a70
2020-03-23control over transport-masters-just-roll-when-sync-is-lostPaul Davis
2020-03-23tweaks to display in TransportMastersWidget to reduce width jumpingPaul Davis
2020-03-23Show Sends button should instigate a Spill, akin to a VCA spillBen Loftis
2020-03-23Theme-ing: Replace lost color for aux-send-pannersBen Loftis
2020-03-23Remove Mixbus Aux-Link special case 2/2Robin Gareus
2020-03-23Pan: remove automation-state indirection 1/2Robin Gareus
2020-03-23Remove unused variableRobin Gareus
2020-03-22fix port/connection combo/dropdown for TransportMastersWidgetPaul Davis
2020-03-22fix small error in GUI dimensions stemming from removal of tape tracksPaul Davis
THe original determinant of width was: double const width = ((at->mode() == Destructive) ? 2 : 0); the conditional is always false now, so the width is a constant (zero)
2020-03-21Pan: consolidate what_can_be_automated APIRobin Gareus
2020-03-21Pan: remove/consolidate parameter-descriptorRobin Gareus
2020-03-21Panner GUI: fix detent in centerRobin Gareus
Previously the dead-zone was too small (1/360). The mono/balance panner GUI has a throw of 180 deg L<>R. Also snapping to center didn't allow to smoothly move out of the center. The accumulated_delta as directly applied. This caused jumps by 4.5. degrees. This commit reduces the deadzone to 1 degree of the azimuth around the center.
2020-03-19Remove Audio+MIDI track, and consolidate route creation methodsRobin Gareus
Audio+MIDI tracks were just MIDI tracks with an additional audio input, and do not directly allow use of vocoders (an instrument is loaded by default). For pitch-correction or similar use-cases one would prefer an audio-track (main data) with MIDI only being used as control-input. Ardour 5/6 pin-connections and side-chain offer a much nicer workflow for this setup. Alternatively one can get those tracks-types by manually adding an input port to an existing track, and creating a custom template.
2020-03-18Fix wine-VST buildRobin Gareus
2020-03-18Hide hidden Controls in GUIRobin Gareus
2020-03-17warn user about destructive/tape tracksPaul Davis
2020-03-17remove reference to ImportAsTapeTracksPaul Davis
2020-03-17remove destructive/tape mode tracksPaul Davis
2020-03-17Prevent adding routes in read-only sessionsRobin Gareus
"AddTrackBus" is a rec_sensitive and write_sensitive action. However the mixer bypasses this and unconditionally calls ARDOUR_UI::instance()->add_route () in various cases (right-click on blank space or scroller, left-click on "Add" buttons in the VCA pane, route pane, etc). Since those are direct events, not related actions, they need to be explicitly ignored. Ideally the "+" buttons would be made insensitive...
2020-03-17LV2: Implement ui:requestValue featureDavid Robillard
2020-03-15NO-OP: cleanup includesRobin Gareus
2020-03-14Update GUI: freeze operation error/warningsRobin Gareus
2020-03-14Show latency display/config button for in all plugin UIsRobin Gareus
2020-03-13somewhat convoluted reworking to get TransportMastersWidget's per-row port ↵Paul Davis
combos to update for hotplug This approach should extended to other things, notably control surfaces
2020-03-12Fix setting automation state for Aux-sendsRobin Gareus
When switching the Mixer to show sends, using _amp as intermediate for automation is not correct. The control is not owned by the amp. The same is true for VCAs, prefer the control (see 8400ebd175e0)
2020-03-11audio clocks that are not editable are not focusable eitherPaul Davis
2020-03-11Prevent stuck VCA buttonRobin Gareus
This is for Mixbus, which always shows the VCA button regardless of VCAs being present in the session.
2020-03-10remove debug outputPaul Davis
2020-03-10small improvements to Transport Masters dialog (in preferences and elsewhere)Paul Davis
2020-03-08Replace strftime() with Glib::DateTime() -- GUIRobin Gareus
This is mainly for windows compatibility "%F" is not supported. An alternative would be to s/%F/%Y-%m-%d/ to produce the ISO date.
2020-03-07Iniialize uninitialized variableRobin Gareus
2020-03-06fix startupFSM handling of a ShouldLoad signalPaul Davis
This currently only handles initial session load by dbl-click on a session file. It also does not work if the user or new or subject to a pre-release warning. These last two restrictions may remain in place, although if a person's first exposure to the program is "copy my session, download program, dbl-click on the session file", then that's not so nice
2020-03-06fix apple/clang warningPaul Davis
2020-03-06fix (potentially serious) typo that confused comparison with assignmentPaul Davis
2020-03-06Remove debug outputRobin Gareus
2020-03-06Fix realtime export checkbox consistencyRobin Gareus