Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
2.3KB

  1. ! title TODO list for the Non-sequencer
  2. --
  3. ; General
  4. * allow deletion and renumbering of individual patterns and phrases.
  5. * add mode for disconnected operation. This is especially important
  6. for the situation where there is a timebase master when Non is
  7. started that exits before Non is closed, resulting in a lack of BBT
  8. information on the transport and a subsequent crash.
  9. * add option to create new instrument defintion.
  10. * per phrase tempo setting? Perhaps a percentage of global tempo?
  11. * add channel field to event list widget (but channel bits in pattern
  12. event lists are currently meaningless.)
  13. * add uneditable "other" tab to event list widget.
  14. * new Phrase playback mode. In this mode, a single phrase is looped,
  15. and the next phrase to be looped can be queued. This is similar the
  16. the playlist, but not linear from bar 1.
  17. * live performance record. Does this have to be internal to Non? Is
  18. there no jack MIDI capable recorder that could be connected to all
  19. non ports? How would ports be handled anyway? As separate tracks in
  20. an SMF-1 file, perhaps?
  21. * add global setting for composer name/copyright to be included in
  22. song files.
  23. * !!! now that we're not using stupid-ass STL list container for the
  24. event lists we can perhaps keep a pointer to the next event in the
  25. playback thread, which would eliminate much overhead. This might
  26. also require keeping a "dirtied" bit in the grid to let the
  27. playback thread know that the UI thread has changed the list
  28. between process calls (also, what about transport relocations?)
  29. * guess key signature of imports?
  30. * figure out how to handle SysEx events with Jack MIDI (packetize them?)
  31. * add chords to scale list... a pattern using the scale of a chord
  32. would contain a melody within that chord.
  33. ; Canvas
  34. * custom scrollbar widget (dots)
  35. * add vertical scrollbar widget to canvas.
  36. * update beat/measure line drawing when BPB changes.
  37. * update phrase height when number of patterns changes... (good use
  38. for a signal?)
  39. * phrases need a way to show/hide relevant patterns. The whole
  40. "mapping" system is a total mess. How about only showing rows
  41. containing events? How would one add a pattern in this system? A
  42. button that adds an event for the given pattern?
  43. * split canvas into separate widgets (ruler, names, canvas)?