tone 14.8.49 → 14.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/README.md +2 -2
  2. package/Tone/component/analysis/Meter.ts +1 -1
  3. package/Tone/component/channel/Channel.ts +1 -1
  4. package/Tone/core/clock/TickSource.ts +2 -2
  5. package/Tone/core/clock/Ticker.ts +1 -1
  6. package/Tone/core/context/Context.ts +1 -1
  7. package/Tone/core/context/ToneAudioBuffer.ts +5 -5
  8. package/Tone/core/context/ToneAudioNode.ts +1 -1
  9. package/Tone/core/context/ToneWithContext.ts +1 -1
  10. package/Tone/core/type/Frequency.ts +2 -1
  11. package/Tone/effect/Chorus.test.ts +2 -2
  12. package/Tone/event/Loop.ts +2 -1
  13. package/Tone/fromContext.ts +1 -1
  14. package/Tone/instrument/DuoSynth.ts +1 -1
  15. package/Tone/instrument/PolySynth.ts +0 -1
  16. package/Tone/source/buffer/Player.test.ts +16 -13
  17. package/Tone/source/buffer/Players.ts +1 -1
  18. package/Tone/source/oscillator/OmniOscillator.ts +1 -1
  19. package/Tone/version.ts +1 -1
  20. package/build/Tone.js +1 -1
  21. package/build/Tone.js.map +1 -1
  22. package/build/esm/component/analysis/Meter.js.map +1 -1
  23. package/build/esm/component/channel/Channel.d.ts +1 -1
  24. package/build/esm/component/channel/Channel.js +1 -1
  25. package/build/esm/core/clock/TickSource.js +2 -2
  26. package/build/esm/core/clock/TickSource.js.map +1 -1
  27. package/build/esm/core/clock/Ticker.js.map +1 -1
  28. package/build/esm/core/context/Context.d.ts +1 -1
  29. package/build/esm/core/context/Context.js +1 -1
  30. package/build/esm/core/context/ToneAudioBuffer.js.map +1 -1
  31. package/build/esm/core/context/ToneAudioNode.d.ts +1 -1
  32. package/build/esm/core/context/ToneAudioNode.js +1 -1
  33. package/build/esm/core/context/ToneWithContext.d.ts +1 -1
  34. package/build/esm/core/context/ToneWithContext.js +1 -1
  35. package/build/esm/core/type/Frequency.js +1 -0
  36. package/build/esm/core/type/Frequency.js.map +1 -1
  37. package/build/esm/event/Loop.js +2 -1
  38. package/build/esm/event/Loop.js.map +1 -1
  39. package/build/esm/fromContext.js.map +1 -1
  40. package/build/esm/instrument/DuoSynth.d.ts +1 -1
  41. package/build/esm/instrument/DuoSynth.js +1 -1
  42. package/build/esm/instrument/PolySynth.d.ts +0 -1
  43. package/build/esm/instrument/PolySynth.js +0 -1
  44. package/build/esm/instrument/PolySynth.js.map +1 -1
  45. package/build/esm/source/UserMedia.d.ts +1 -1
  46. package/build/esm/source/buffer/Players.d.ts +1 -1
  47. package/build/esm/source/buffer/Players.js +1 -1
  48. package/build/esm/source/oscillator/OmniOscillator.d.ts +1 -1
  49. package/build/esm/source/oscillator/OmniOscillator.js +1 -1
  50. package/build/esm/version.js +1 -1
  51. package/build/esm/version.js.map +1 -1
  52. package/package.json +4 -4
  53. package/CHANGELOG.md +0 -313
  54. package/docs/tone.json +0 -1
package/CHANGELOG.md DELETED
@@ -1,313 +0,0 @@
1
- # 14.7.0
2
-
3
-
4
- ### Features
5
-
6
- * **Converted to typescript!!!**
7
- * adding AudioWorkletNode constructors to Context ([f7bdd75](https://github.com/Tonejs/Tone.js/commit/f7bdd75))
8
- * adding ability to get the frequency at the FFT index ([22cecdc](https://github.com/Tonejs/Tone.js/commit/22cecdc281c8076c054affaef9dc422665acda2e))
9
- * adding AudioWorkletNode constructors to Context ([f7bdd75](https://github.com/Tonejs/Tone.js/commit/f7bdd7528fa9549740dc514df6308303c060e091))
10
- * adding BiquadFilter ([75617d3](https://github.com/Tonejs/Tone.js/commit/75617d341fe44ca5d332ea4e547f07c266a54753)), closes [#686](https://github.com/Tonejs/Tone.js/issues/686)
11
- * adding linting to jsdocs ([10ef513](https://github.com/Tonejs/Tone.js/commit/10ef513))
12
- * adding send/receive to Channel ([703f27a](https://github.com/Tonejs/Tone.js/commit/703f27a))
13
- * Adding triggerRelease to PluckSynth ([04405af](https://github.com/Tonejs/Tone.js/commit/04405af))
14
- * Can set the parameter after constructing Param ([23ca0f9](https://github.com/Tonejs/Tone.js/commit/23ca0f9))
15
- * adding onerror to Sampler ([7236600](https://github.com/Tonejs/Tone.js/commit/7236600182d336d6598f86d7d7afe8761e733774)), closes [#605](https://github.com/Tonejs/Tone.js/issues/605)
16
- * Chorus extends StereoFeedbackEffect ([a28f1af](https://github.com/Tonejs/Tone.js/commit/a28f1af)), closes [#575](https://github.com/Tonejs/Tone.js/issues/575)
17
- * Convolver is just a wrapper around the ConvolverNode, no longer an effect ([1668dec](https://github.com/Tonejs/Tone.js/commit/1668dec))
18
- * Get an oscillator wave as an array ([9ad519e](https://github.com/Tonejs/Tone.js/commit/9ad519e))
19
- * OfflineContext returns a ToneAudioBuffer ([889dafa](https://github.com/Tonejs/Tone.js/commit/889dafa))
20
- * OfflineContext yields thread every second of audio rendered ([1154470](https://github.com/Tonejs/Tone.js/commit/1154470)), closes [#436](https://github.com/Tonejs/Tone.js/issues/436)
21
- * Renaming TransportTimelineSignal to SyncedSignal ([86853fb](https://github.com/Tonejs/Tone.js/commit/86853fb))
22
- * es6 output ([e5d28ba](https://github.com/Tonejs/Tone.js/commit/e5d28baa5f02c19a6f1c8c50c99e98bd1551d15b))
23
- * Render a segment of the envelope as an array ([fc5b6f7](https://github.com/Tonejs/Tone.js/commit/fc5b6f7))
24
- * testing examples in jsdocs ([e306319](https://github.com/Tonejs/Tone.js/commit/e306319))
25
- * Wrapper around the AudioWorkletNode ([2ee8cb1](https://github.com/Tonejs/Tone.js/commit/2ee8cb1))
26
- * Input/Outputs are no longer arrays.
27
- * simplifies connect/disconnect logic greatly. Simplifies API to just have clearly named inputs/outputs instead of overloading input/output connect numbers
28
- * Using "Destination" instead of "Master" for output
29
- * More consistent with Web Audio API
30
- * FrequencyShifter - thanks @Foaly
31
- * PolySynth does not require a polyphony value.
32
- * Voice allocation and disposing is done automatically based on demand.
33
- * MetalSynth and MembraneSynth extends Monophonic enabling them to be used in PolySynth
34
- * OnePoleFilter is a 6b-per-octave lowpass or highpass filter
35
- * Using OnePoleFilter in PluckSynth and LowpassCombFilter
36
- * latencyHint is now set in constructor ([ba8e82b](https://github.com/Tonejs/Tone.js/commit/ba8e82b1ca8a841a23d6e774641916019c37cc92)), closes [#658](https://github.com/Tonejs/Tone.js/issues/658)
37
- * meter output can be normalRange in addition to decibels ([2625a13](https://github.com/Tonejs/Tone.js/commit/2625a134b62af117c1c525a4e631e4e52b25ba90))
38
- * option to pass in the number of input channels to Panner ([d966735](https://github.com/Tonejs/Tone.js/commit/d966735bd97bddc70039bce5a48f26413054eddc)), closes [#609](https://github.com/Tonejs/Tone.js/issues/609)
39
-
40
-
41
- ### BREAKING CHANGES
42
-
43
- * TransportTimelineSignal renamed SyncedSignal
44
- * Master renamed Destination
45
- * Buffer renamed ToneAudioBuffer
46
- * Buffer.on("loaded") is should now use: `Tone.loaded(): Promise<void>`
47
- * Removing bower ([71c8b3b](https://github.com/Tonejs/Tone.js/commit/71c8b3bbb96e45cfc4aa2cce8a2d8c61a092c91e)), closes [#197](https://github.com/Tonejs/Tone.js/issues/197)
48
- * Removing Ctrl classes ([51d06bd](https://github.com/Tonejs/Tone.js/commit/51d06bd9873b2f1936a3169930f9696f1ccfb845))
49
- * `Players.get(name: string)` is renamed to `Players.player(name: string)`
50
-
51
- # 13.8.25
52
-
53
- * Moving to common.js-style code
54
-
55
- ### BREAKING CHANGES
56
-
57
- * AudioNode.prototype.connect is no longer overwritten. This means that you can no longer connect native nodes to Tone.js Nodes.
58
- * Tone.connect(srcNode, destNode, [ouputNum], [inputNum]) is the way to connect native Web Audio nodes with Tone.js nodes.
59
-
60
- # 13.4.9
61
-
62
- * Updating semantic versioning to be more in line with other [semvers](https://semver.org/). Now version is 13.x.x
63
- * logging full version
64
- * Added Object notation for Tone.TimeBase and classes that extend it.
65
- - i.e. Tone.Time({'4n' : 1, '8t' : 2})
66
- - Replacement for deprecated expression strings.
67
- * Tone.Meter uses RMS instead of peak (thanks [@Idicious](https://github.com/Idicious))
68
- * Tone.Sampler supports polyphonic syntax (thanks [@zfan40](https://github.com/zfan40))
69
- * Building files with [webpack](https://webpack.js.org/)
70
- * Follower/Gate uses a single "smoothing" value instead of separate attacks and releases
71
- * Changing references to `window` allowing it to not throw error in node context
72
- * Testing examples
73
- * Tone.Channel combines Tone.PanVol with Tone.Solo.
74
- * Removing require.html example.
75
- * adding `partialCount` and `baseType` to Oscillator classes, helps with getting/setting complex types.
76
-
77
-
78
- # r12
79
-
80
- * Consolidating all shims into [shim folder](https://github.com/Tonejs/Tone.js/tree/dev/Tone/shim)
81
- * Using ConstantSourceNode in Signal when available
82
- * switching to eslint from jshint
83
- * Running [CI tests](https://travis-ci.org/Tonejs/Tone.js/) on Firefox, Chrome (latest and canary) and Safari (latest and version 9).
84
- * [Tone.Reverb](https://tonejs.github.io/docs/Reverb) is a convolution-based stereo reverb. [Example](https://tonejs.github.io/examples/#reverb).
85
- * Optimizing basic Oscillator types and many Signal use-case
86
- * Optimizing basic connection use-case of Tone.Signal where one signal is controlling another signal
87
- * Testing rendered output against an existing audio file for continuity and consistency
88
- * Optimizing triggerAttack/Release by starting/stopping oscillators when not playing
89
- * [TickSource](https://tonejs.github.io/docs/TickSource) (used in Clock and Player) tracks the elapsed ticks
90
- * Improved precision of tracking ticks in Transport and Clock
91
- * `Player.position` returns the playback position of the AudioBuffer accounting for any playbackRate changes
92
- * Removing `retrigger` option with Tone.Player. Tone.BufferSource should be used if retriggering is desired.
93
-
94
- **BREAKING CHANGES:**
95
-
96
- * Tone.TimeBase and all classes that extend it not longer support string expressions.
97
- RATIONALE :
98
- * Since all classes implement `valueOf`, expressions can be composed in JS instead of as strings
99
- * e.g. `Time('4n') * 2 + Time('3t')` instead of `Time('4n * 2 + 3t')`
100
- * this change greatly simplifies the code and is more performant
101
-
102
- # r11
103
-
104
- * [Code coverage](https://coveralls.io/github/Tonejs/Tone.js) analysis
105
- * [Dev build](https://tonejs.github.io/build/dev/Tone.js) with each successful commit
106
- * [Versioned docs](https://tonejs.github.io/docs/Tone) plus a [dev build of the docs](https://tonejs.github.io/docs/dev/Tone) on successful commits
107
- * [Tone.AudioNode](https://tonejs.github.io/docs/AudioNode) is base class for all classes which generate or process audio
108
- * [Tone.Sampler](https://tonejs.github.io/docs/Sampler) simplifies creating multisampled instruments
109
- * [Tone.Solo](https://tonejs.github.io/docs/Solo) makes it easier to mute/solo audio
110
- * [Mixer](https://tonejs.github.io/examples/#mixer) and [sampler](https://tonejs.github.io/examples/#sampler) examples
111
- * Making type-checking methods static
112
- * [Tone.TransportTimelineSignal](https://tonejs.github.io/docs/TransportTimelineSignal) is a signal which can be scheduled along the Transport
113
- * [Tone.FFT](https://tonejs.github.io/docs/FFT) and [Tone.Waveform](https://tonejs.github.io/docs/Waveform) abstract Tone.Analyser
114
- * [Tone.Meter](https://tonejs.github.io/docs/Meter) returns decibels
115
- * [Tone.Envelope](https://tonejs.github.io/docs/Envelope) uses exponential approach instead of exponential curve for decay and release curves
116
- * [Tone.BufferSource](https://tonejs.github.io/docs/BufferSource) fadeIn/Out can be either "linear" or "exponential" curve
117
-
118
- # r10
119
-
120
- * Tone.Context wraps AudioContext
121
- * Tone.OfflineContext wraps OfflineAudioContext
122
- * Tone.Offline: method for rendering audio offline
123
- * Rewriting tests with Tone.Offline
124
- * Optimizing Tone.Draw to only loop when events are scheduled: [#194](https://github.com/Tonejs/Tone.js/issues/194)
125
- * Time.eval->valueOf which takes advantage of build-in primitive evaluation [#205](https://github.com/Tonejs/Tone.js/issues/205)
126
- * [Offline example](https://tonejs.github.io/examples/#offline)
127
-
128
- # r9
129
-
130
- * Tone.Clock performance and lookAhead updates.
131
- * Tone.Transport.lookAhead = seconds|'playback'|'interactive'|'balanced'
132
- * Convolver.load and Player.load returns Promise
133
- * Tone.ExternalInput -> Tone.UserMedia, simplified API, open() returns Promise.
134
- * Tone.Draw for animation-frame synced drawing
135
- * Compressor Parameters are now Tone.Params
136
- * Bug fixes
137
-
138
- # r8
139
-
140
- * Transport.seconds returns the progress in seconds.
141
- * Buffer.from/toArray, Float32Array <-> Buffer conversions
142
- * Buffer.slice(start, end) slices and returns a subsection of the Buffer
143
- * Source.sync now syncs all subsequent calls to `start` and `stop` to the TransportTime instead of the AudioContext time.
144
- * e.g. source.sync().start(0).stop(0.8); //plays source between 0 and 0.8 of the Transport
145
- * Transport.on("start" / "stop") callbacks are invoked just before the event.
146
- * Param can accept an LFO description in the constructor or .value
147
- * e.g. param.value = {min : 10, max : 20, frequency : 0.4}
148
- * Time.TimeBase has clone/copy methods.
149
- * Tone.Buffer.prototype.load returns Promise
150
- * Using Tone.Delay and Tone.Gain everywhere
151
- * Patch for Chrome 53+ issue of not correctly scheduling AudioParams with setValueAtTime
152
- * Panner3D and Tone.Listener wrap native PannerNode and AudioListener to give 3D panning ability.
153
-
154
- # r7
155
-
156
- * MetalSynth creates metalic, cymbal sounds
157
- * DrumSynth -> MembraneSynth
158
- * FMOscillator, AMOscillator types
159
- * FatOscillator creates multiple oscillators and detunes them slightly
160
- * FM, AM, Fat Oscillators incorporated into OmniOscillator
161
- * Simplified FM and AM Synths and APIs
162
- * Panner.pan is between -1,1 like the StereoPannerNode
163
- * Pruned away unused (or little used) Signal classes.
164
- * All this functionality will be available when the AudioWorkerNode is introduced.
165
- * Clock uses Web Workers instead of requestAnimationFrame which allows it to run in the background.
166
- * Removed `startMobile`. Using [StartAudioContext](https://github.com/tambien/StartAudioContext) in examples.
167
- * Automated test runner using [Travis CI](https://travis-ci.org/Tonejs/Tone.js/)
168
- * Simplified NoiseSynth by removing filter and filter envelope.
169
- * Added new timing primitive types: Time, Frequency, TransportTime.
170
- * Switching parameter position of type and size in Tone.Analyser
171
- * Tone.Meter uses Tone.Analyser instead of ScriptProcessorNode.
172
- * Tone.Envelope has 5 new attack/release curves: "sine", "cosine", "bounce", "ripple", "step"
173
- * Renamed Tone.SimpleSynth -> Tone.Synth
174
- * Tone.Buffers combines multiple buffers
175
- * Tone.BufferSource a low-level wrapper, and Tone.MultiPlayer which is good for multisampled instruments.
176
- * Tone.GrainPlayer: granular synthesis buffer player.
177
- * Simplified Sampler
178
-
179
- DEPRECATED:
180
- * Removed SimpleFM and SimpleAM
181
-
182
- # r6
183
-
184
- * Added PitchShift and Vibrato Effect.
185
- * Added Timeline/TimelineState/TimelineSignal which keeps track of all scheduled state changes.
186
- * Clock uses requestAnimationFrame instead of ScriptProcessorNode
187
- * Removed `onended` event from Tone.Source
188
- * Refactored tests into individual files.
189
- * Renamed some Signal methods: `exponentialRampToValueNow`->`exponentialRampToValue`, `setCurrentValueNow`->`setRampPoint`
190
- * LFO no longer starts at bottom of cycle. Starts at whatever phase it's set at.
191
- * Transport is an event emitter. triggers events on "start", "stop", "pause", and "loop".
192
- * Oscillator accepts a "partials" array.
193
- * Microphone inherits from ExternalInput which is generalized for different inputs.
194
- * New scheduling methods on Transport - `schedule`, `scheduleOnce`, and `scheduleRepeat`.
195
- * Tone.Gain and Tone.Delay classes wrap the native Web Audio nodes.
196
- * Moved [MidiToScore](https://github.com/Tonejs/MidiConvert) and [TypeScript](https://github.com/Tonejs/TypeScript) definitions to separate repos.
197
- * Tone.Param wraps the native AudioParam and allows for unit conversion.
198
- * Quantization with Transport.quantize and using "@" in any Time. [Read more](https://github.com/Tonejs/Tone.js/wiki/Time).
199
- * Control-rate generators for value interpolation, patterns, random numbers, and markov chains.
200
- * Scheduable musical events: Tone.Event, Tone.Loop, Tone.Part, Tone.Pattern, Tone.Sequence.
201
- * Player's playbackRate is now a signal and Noise includes a playbackRate signal.
202
- * All filterEnvelopes use new Tone.FrequencyEnvelope with frequency units and `baseFrequency` and `octaves` instead of `min` and `max`.
203
- * Phaser uses "octaves" instead of "depth" to be more consistent across the whole Tone.js API.
204
- * Presets now have [their own repo](https://github.com/Tonejs/Presets)
205
-
206
- DEPRECATED:
207
- * `setTimeout`, `setInterval`, `setTimeline` in favor of new `schedule`, `scheduleOnce`, and `scheduleRepeat`.
208
- * Tone.Signal no longer takes an AudioParam in the first argument. Use Tone.Param instead.
209
- * Tone.Buffer.onload/onprogress/onerror is deprecated. Use `Tone.Buffer.on("load", callback)` instead.
210
-
211
- # r5
212
-
213
- * reverse buffer for Player and Sampler.
214
- * Tone.Volume for simple volume control in Decibels.
215
- * Panner uses StereoPannerNode when available.
216
- * AutoFilter and Tremolo effects.
217
- * Made many attributes read-only. preventing this common type of error: `oscillator.frequency = 200` when it should be `oscillator.frequency.value = 200`.
218
- * Envelope supports "linear" and "exponential" attack curves.
219
- * Renamed Tone.EQ -> Tone.EQ3.
220
- * Tone.DrumSynth makes kick and tom sounds.
221
- * Tone.MidSideCompressor and Tone.MidSideSplit/Tone.MidSideMerge
222
- * Tone.Oscillator - can specify the number of partials in the type: i.e. "sine10", "triangle3", "square4", etc.
223
- * mute/unmute the master output: `Tone.Master.mute = true`.
224
- * 3 new simplified synths: SimpleSynth, SimpleAM and SimpleFM
225
- * `harmonicity` is a signal-rate value for all instruments.
226
- * expose Q in Phaser.
227
- * unit conversions using Tone.Type for signals and LFO.
228
- * [new docs](http://tonejs.org/docs)
229
- * [updated examples](http://tonejs.org/examples)
230
-
231
- # r4
232
-
233
- * `toFrequency` accepts notes by name (i.e. `"C4"`)
234
- * Envelope no longer accepts exponential scaling, only Tone.ScaledEnvelope
235
- * Buffer progress and load events which tracks the progress of all downloads
236
- * Buffer only accepts a single url
237
- * Sampler accepts multiple samples as an object.
238
- * `setPitch` in sampler -> `setNote`
239
- * Deprecated MultiSampler - use Sampler with PolySynth instead
240
- * Added [cdn](http://cdn.tonejs.org/latest/Tone.min.js) - please don't use for production code
241
- * Renamed DryWet to CrossFade
242
- * Functions return `this` to allow for chaining. i.e. `player.toMaster().start(2)`.
243
- * Added `units` to Signal class which allows signals to be set in terms of Tone.Time, Tone.Frequency, Numbers, or Decibels.
244
- * Replaced set/get method with ES5 dot notation. i.e. `player.setVolume(-10)` is now `player.volume.value = -10`.
245
- To ramp the volume use either `player.volume.linearRampToValueNow(-10, "4n")`, or the new `rampTo` method which automaically selects the ramp (linear|exponential) based on the type of data.
246
- * set/get methods for all components
247
- * syncSignal and unsyncSignal moved from Signal to Transport
248
- * Add/Multiply/Subtract/Min/Max/GreaterThan/LessThan all extend Tone.Signal which allows them to be scheduled and automated just like Tone.Signal.
249
- * Deprecated Tone.Divide and Tone.Inverse. They were more complicated than they were useful.
250
-
251
- BREAKING CHANGES:
252
-
253
- The API has been changed consistently to use `.attribute` for getting and setting instead of `getAttribute` and `setAttribute` methods. The reasoning for this is twofold: firstly, Tone.Signal attributes were previously limited in their scheduling capabilities when set through a setter function. For exactly, it was not possible to do a setValueAtTime on the `bpm` of the Transport. Secondly, the new EcmaScript 5 getter/setter approach resembles the Web Audio API much more closely, which will make intermixing the two APIs even easier.
254
-
255
- If you're using Sublime Text, one way to transition from the old API to the new one is with a regex find/replace:
256
- find `Tone.Transport.setBpm\((\d+)\)` and replace it with `Tone.Transport.bpm.value = $1`.
257
-
258
- Or if setBpm was being invoked with a rampTime:
259
- find `Tone.Transport.setBpm\((\d+)\, (\d+)\)` and replace it with `Tone.Transport.bpm.rampTo($1, $2)`.
260
-
261
-
262
- # r3
263
-
264
- Core Change:
265
-
266
- * Swing parameter on Transport
267
- * Player loop positions stay in tempo-relative terms even with tempo changes
268
- * Envelope ASDR stay in tempo-relative terms even with tempo changes
269
- * Modified build script to accommodate using requirejs with build and minified version
270
-
271
- Signal Processing:
272
-
273
- * Tone.Expr: signal processing expression parser for Tone.Signal math
274
- * All signal binary operators accept two signals as inputs
275
- * Deprecated Tone.Threshold - new class Tone.GreaterThanZero
276
- * NOT, OR, AND, and IfThenElse signal logic operators
277
- * Additional signal classes: Inverse, Divide, Pow, AudioToGain, Subtract
278
- * Scale no longer accepts input min/max. Assumes [0,1] range.
279
- * Normalize class if scaling needs to happen from other input ranges
280
- * WaveShaper function wraps the WaveShaperNode
281
-
282
- Effects:
283
-
284
- * Distortion and Chebyshev distortion effects
285
- * Compressor and MultibandCompressor
286
- * MidSide effect type and StereoWidener
287
- * Convolver effect and example
288
-
289
- Synths:
290
-
291
- * Setters on PluckSynth and PulseOscillator
292
- * new PWMOscillator
293
- * OmniOscillator which combines PWMOscillator, Oscillator, and PulseOscillator into one
294
- * NoiseSynth
295
-
296
-
297
- # r2
298
-
299
- * PluckSynth - Karplus-Strong Plucked String modeling synth
300
- * Freeverb
301
- * John Chowning Reverb (JCReverb)
302
- * LowpassCombFilter and FeedbackCombFilter
303
- * Sampler with pitch control
304
- * Clock tick callback is out of the audio thread using setTimeout
305
- * Optimized Tone.Modulo
306
- * Tests run using OfflineRenderingContext
307
- * Fixed Transport bug where timeouts/intervals and timelines were on a different tick counter
308
- * AmplitudeEnvelope + triggerAttackDecay on Envelope
309
- * Instruments inherit from Tone.Instrument base-class
310
- * midi<-->note conversions
311
-
312
-
313
- # r1 - First!