summaryrefslogtreecommitdiff
path: root/gtk2_ardour
AgeCommit message (Collapse)Author
2015-09-16Move DPIReset and ColorsChanged signals into UIConfigurationTim Mayberry
2015-09-16Remove unused header includeTim Mayberry
2015-09-16Move util functions into UIConfiguration as they depend on it anywayTim Mayberry
2015-09-16Remove duplicate extern declarationTim Mayberry
DPIReset signal is declared in global_signals.h
2015-09-16add datetime to snapshot sidebarRobin Gareus
Currently only information, not sortable.
2015-09-16unify recent session dialogsRobin Gareus
2015-09-16fix d6029f9 (recent sort-order)Robin Gareus
add one, because (-0 == +0)
2015-09-16add Hour:Minute to last-modified.Robin Gareus
2015-09-16remeber recent-session sort-columnRobin Gareus
2015-09-16highlight default sort columnRobin Gareus
2015-09-16disable even/odd row highlight for GtKTreeview.Robin Gareus
Almost all TreeViews in Ardour had this disabled. A few cases where it wasn't produced odd rendering artifacts. e.g.: * Radio-buttons in the Plugin Manager used "base color" regardless of even/odd lines * Sortable trees only used even/odd background for the sort-column (not others)
2015-09-16user-sortable recent session listRobin Gareus
2015-09-16add "last modified" column to session-dialogRobin Gareus
2015-09-16partially revert de53fac (pre-sort session list)Robin Gareus
<glib> header includes and commends remain for later use
2015-09-16Don't try and split a region when dragging, should fix bug #6338Tim Mayberry
2015-09-16prepare time column in recent sessionRobin Gareus
2015-09-16inspect snapshot for its info (not parent)Robin Gareus
2015-09-16pre-sort recent-sessions by modification time - #6575Robin Gareus
2015-09-15expose the new use monitor fades optionPaul Davis
2015-09-15remove unused variableRobin Gareus
2015-09-15don't allow to focus sidebar checkboxes - fixes #6445Robin Gareus
2015-09-15display active peak-buildsRobin Gareus
2015-09-15expose transport fade optionPaul Davis
2015-09-15GUI part: cleanup peak-filesRobin Gareus
2015-09-15pending-peaks: checker pattern.Robin Gareus
2015-09-15visually indicate peak-file rebuildRobin Gareus
Not yet a checker pattern, but closing it :)
2015-09-13Revert inadvertently pushed commitRobin Gareus
This reverts commit 3a6114c02579db5eaf22c1a44efc3c34f504f99c. The actual solution is http://dev.drobilla.net/ticket/1085
2015-09-13center, don't expand plugin widgetsRobin Gareus
2015-09-12valgrind: only use objc supression file on OSXRobin Gareus
2015-09-12GUI part of memleak fixesRobin Gareus
2015-09-12trick ardour to print main-thead mem-pool stats.Robin Gareus
2015-09-11Have GUI Option reflect current state (in case toggle fails)Robin Gareus
2015-09-10session->path() returns a dir (not the session file)Robin Gareus
2015-09-10ditto for the announcement messageRobin Gareus
2015-09-10fix a small memleak.Robin Gareus
downcase(char*) requires free(), downcase(std::string) does not.
2015-09-10catch mem-leaks more easily.Robin Gareus
2015-09-10Check that a route has a track before trying to insert time on it.Colin Fletcher
Routes which are busses don't have a track, and thus no playlists either: avoid a crash when inserting time when a bus is selected and 'all playlists' is chosen.
2015-09-09Don't unload session with Session -> Open -> Cancel, Fixes #6568Tim Mayberry
2015-09-08offer up (when possible) MBWF, RF64 and RF64 (WAV) optionsPaul Davis
2015-09-08NOOP, whitespace onlyGuy Sherman
2015-09-08fix prev. commitRobin Gareus
2015-09-08portable c-code for reading pingback/announcement messageRobin Gareus
2015-09-08Use glib to open our 'announcements' file, rather than opening directly with ↵John Emmas
ofstream (on Windows, std::ofstream doesn't support UTF8)
2015-09-08fix redeclaration of symbolRobin Gareus
2015-09-08Allow to override A/V-lock (when moving audio)Robin Gareus
2015-09-08Allow to override A/V-lock (when moving video)Robin Gareus
2015-09-07add OSX/objc valgrind suppression fileRobin Gareus
2015-09-07image-surface/software rendering as preferenceRobin Gareus
2015-09-06Workaround to allow loading large sessions.Robin Gareus
During session-load, ardour calls Route::SoloControllable::set_value() which calls Session::set_solo() which in turn sends a session-rt event. Along with other rt-events (locations,..) the current solo logic limits Ardour to only load sessions with about >= 200 tracks. now bumped to a few thousand tracks.. until a proper solution comes along.
2015-09-06initialize some uninitialized variables.Robin Gareus
really just nitpicking (keep valgrind clean).