The Trunk: Sound-ct.69.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Sound-ct.69.mcz

commits-2
Marcel Taeumel uploaded a new version of Sound to project The Trunk:
http://source.squeak.org/trunk/Sound-ct.69.mcz

==================== Summary ====================

Name: Sound-ct.69
Author: ct
Time: 1 October 2019, 8:25:38.912339 pm
UUID: b0d38e4d-1231-494f-8502-e1a631e232b3
Ancestors: Sound-eem.66

Add convenience setter for MIDIScore

These values are strongly related and should in most cases be set at once.

=============== Diff against Sound-eem.66 ===============

Item was changed:
  ----- Method: MIDIFileReader>>asScore (in category 'chunk reading') -----
  asScore
 
  ^ MIDIScore new
+ tracks: tracks trackInfo: trackInfo;
- tracks: tracks;
- trackInfo: trackInfo;
  tempoMap: tempoMap;
  ticksPerQuarterNote: ticksPerQuarter;
  source: stream localName
  !

Item was added:
+ ----- Method: MIDIScore>>tracks:trackInfo: (in category 'accessing') -----
+ tracks: trackList trackInfo: trackInfoList
+
+ self tracks: trackList; trackInfo: trackInfoList.!