Jordan Henderson

Results 74 issues of Jordan Henderson

## Environment * SuperCollider version: 1.13 ## Description Throughout the 'Writing Unit Generators' help document and the rest of the documentation, the terms 'plugin' and 'UGen' are used interchangeably, making...

bug
comp: help

## Environment * SuperCollider version: current dev ## Steps to reproduce ```supercollider SynthDef(\a, { var ins = 3.collect {|i| if (i == 2){ SendReply.kr(Impulse.kr, '/a', DC.kr(0.1)); PlayBuf.ar(1, 0); } {...

bug
comp: class library

## Environment * SuperCollider version: 3.14.dev * Operating system: * Other details (Qt version, audio driver, etc.): ## Steps to reproduce ```supercollider b = Buffer.alloc(s, 0.01 * s.sampleRate); { RecordBuf.ar(0,...

bug
comp: server plugins

## Purpose and Motivation Fixes #6408 ```supercollider [1, 2, 3].remove(3) // 3 Set[1, 2, 3].remove(3) // Set[1,2] - Bug fix Could be a breaking bug fix, but documentation is clear...

comp: class library

## Environment * SuperCollider version: dev ## Steps to reproduce ```supercollider Set[1, 2, 3].remove(3); // should return 3. [1, 2, 3].remove(3) // returns 3 Set[1, 2].remove(3) // returns Set[1, 2]...

bug
comp: class library

## Purpose and Motivation If you have a class with many instance variables and want to only initialise some of them, you currently need to call setters, which gets messy...

comp: sclang
comp: class library

## Environment * SuperCollider version: current dev ## Steps to reproduce ```supercollider SynthDef(\s, { |a, b, c, d| a + b + c + d; }).dumpUGens [0_Control, control, nil] [1_Sum3,...

bug
comp: class library

# This is a draft. ## Purpose and Motivation You can't always depend on having git install on a system. For users of which supercollider is their first programming language,...

comp: sclang
comp: class library
comp: build

## Environment * SuperCollider version: dev * Operating system: linux ## Steps to reproduce ``` TestUGen_RTAlloc.run ``` Keep running this, eventually it will fail. I have tracked this down through...

bug
comp: server plugins

## Motivation The following behaviour with the colon placement is not documented. ``` a = []; m1 = (a : 10);

enhancement
comp: help
good first issue