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.

49 lines
2.2KB

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