tidalcycles / strudel

Web-based environment for live coding algorithmic patterns, incorporating a faithful port of TidalCycles to JavaScript
https://strudel.cc/
GNU Affero General Public License v3.0
642 stars 111 forks source link

rename trig -> reset, trigzero -> restart #1010

Closed felixroos closed 6 months ago

felixroos commented 6 months ago

renames trig to reset and trigzero to restart in all places

this is a breaking change that should affect very little patterns, as the alignment feature is not very used often. to update your pattern, replace:

x.add.trig(...)
// with
x.add.reset(...)
// or
x.add.trigzero(...)
// with
x.add.restart(...)

partly adresses https://github.com/tidalcycles/strudel/issues/970