Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-05-18 | Clean up whitespace | David Robillard | 2 | -3/+0 | |
2022-05-18 | Fix build with fmt 8.1.1 | David Robillard | 1 | -4/+21 | |
2021-06-04 | Fix initialisation order | David Robillard | 3 | -17/+16 | |
2021-06-04 | Fix mismatched forward declaration | David Robillard | 1 | -1/+1 | |
2021-05-11 | Refactor most functionality around actions and settings | David Robillard | 13 | -319/+490 | |
This moves more code into general places, and completely eliminates dependencies on the Patchage "god object". | |||||
2021-05-11 | Add general configuration setting mechanism | David Robillard | 6 | -88/+210 | |
2021-05-11 | Register idle callback after all other setup | David Robillard | 1 | -4/+4 | |
2021-05-11 | Add Cleared event for implementing refresh without a race | David Robillard | 5 | -2/+11 | |
2021-05-11 | Move drivers to a separate object | David Robillard | 7 | -97/+196 | |
Towards eliminating dependencies on the Patchage "god object". | |||||
2021-05-11 | Remove unused member variable | David Robillard | 2 | -4/+0 | |
2021-05-11 | Move Coord to its own header | David Robillard | 9 | -18/+36 | |
2021-05-10 | Update IWYU configuration to suppress errors on older versions | David Robillard | 1 | -12/+13 | |
Old versions of include-what-you-use (like 0.11 as in Debian buster) don't understand stdint out of the box. | |||||
2021-05-10 | Add Action representation to isolate behaviour from canvas objects | David Robillard | 14 | -195/+391 | |
A step towards isolating the canvas and ultimately the entire UI away so it can be replaced. | |||||
2021-05-08 | Put events in a namespace and simplify their names | David Robillard | 6 | -67/+72 | |
2021-05-08 | Remove redundant code | David Robillard | 4 | -32/+8 | |
2021-05-08 | Use unique_ptr for module menus | David Robillard | 2 | -9/+8 | |
2021-04-08 | Fix ALSA sequencer port subscriptions | David Robillard | 2 | -21/+24 | |
2021-04-08 | Fix crash on client disconnection | David Robillard | 2 | -2/+3 | |
2021-04-08 | Update version and NEWS file | David Robillard | 2 | -1/+7 | |
2021-04-08 | Show latency in toolbar with 2 decimal places | Colin Fowler | 1 | -2/+2 | |
The previous millisecond precision was ambiguous for some configurations, for example both 32 and 64 frames at 96kHz would show 1ms latency. | |||||
2021-01-07 | Patchage 1.0.4v1.0.4 | David Robillard | 2 | -3/+3 | |
2021-01-07 | Delete trailing whitespace | David Robillard | 1 | -1/+1 | |
2021-01-07 | Update autowaf | David Robillard | 1 | -0/+0 | |
2021-01-02 | Format all code with clang-format | David Robillard | 42 | -3744/+3562 | |
2020-12-16 | Fix build on MacOS | David Robillard | 2 | -6/+8 | |
2020-12-16 | Avoid use of boost::optional::has_value | David Robillard | 2 | -2/+2 | |
This fails to compile on CI, only with sanitizers for some reason. | |||||
2020-12-15 | Suppress clang-tidy warnings from ganv | David Robillard | 1 | -0/+2 | |
2020-12-15 | Refine include configuration for consistency with other projects | David Robillard | 2 | -1/+8 | |
2020-12-15 | Use modern GDK keysyms | David Robillard | 1 | -1/+3 | |
2020-12-15 | Use correct include for GdkEvent | David Robillard | 5 | -4/+2 | |
2020-12-14 | Clean up includes | David Robillard | 32 | -69/+265 | |
2020-12-01 | Fix include guards | David Robillard | 4 | -12/+12 | |
2020-11-30 | Use raw string literals | David Robillard | 4 | -7/+6 | |
2020-11-30 | Fix clang-tidy warnings | David Robillard | 3 | -4/+1 | |
2020-11-29 | Save myself from trying to "properly" handle Jack shutdown again | David Robillard | 1 | -1/+9 | |
JACK is a wonderful idea. Shame about the software, though. | |||||
2020-11-29 | Remove silly bitfield | David Robillard | 1 | -5/+4 | |
2020-11-29 | Unconditionally remove ports on Jack driver detachment | David Robillard | 1 | -8/+6 | |
2020-11-29 | Use shorter names for Jack callbacks | David Robillard | 1 | -36/+30 | |
2020-11-29 | Remove pointless method | David Robillard | 1 | -9/+1 | |
2020-11-29 | Simplify canvas interface | David Robillard | 2 | -22/+1 | |
2020-11-29 | Use fmt to build toolbar text | David Robillard | 1 | -6/+4 | |
2020-11-29 | Remove more dead code | David Robillard | 6 | -55/+31 | |
2020-11-29 | Fix build as a subproject | David Robillard | 1 | -0/+1 | |
2020-11-29 | Fix unstable module positions | David Robillard | 3 | -3/+12 | |
2020-11-29 | Use more reasonable class names | David Robillard | 16 | -201/+194 | |
2020-11-29 | Put everything in a namespace | David Robillard | 44 | -8/+181 | |
2020-11-29 | Clean up Patchage class | David Robillard | 2 | -14/+16 | |
2020-11-29 | Remove unnecessary use of shared_ptr | David Robillard | 2 | -3/+4 | |
2020-11-29 | Completely isolate drivers from the rest of the application | David Robillard | 11 | -394/+388 | |
2020-11-29 | Use Jack driver exclusively through AudioDriver interface | David Robillard | 2 | -11/+6 | |