Codebase list supercollider / upstream/3.5.4_repack-2 ChangeLog
upstream/3.5.4_repack-2

Tree @upstream/3.5.4_repack-2 (Download .tar.gz)

ChangeLog @upstream/3.5.4_repack-2raw · history · blame

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
User-visible changes (started after 3.4)

* sclang startup file moved to thisProcess.platform.userConfigDir +/+ "sclang.scd" - tb
* library configuration file moved to thisProcess.platform.userConfigDir +/+ "sclang.cfg" - tb
* only warn about FunctionDef not being inlined if a compiler flag is set - ds
* new help system (SCDoc) - jli
* new help browser (HelpBrowser) - jle/jli
* bitwise ops (<< >> & | ^) on ugens - jli
* new VarLag ugen - rk/jli
* new method: Node-onFree, run function when node finishes - jli
* new method: Help.methodArgs(string) - jli
* sced and sced3 updates - jli
* WiiMote.discover now returns device object, or nil if failed - jli
* LocalIn now has an input for initial value - jr/jli
* allow Bus-asMap symbols in \freq and friends in patterns - jli
* /b_free also free's sndfile if open (like /b_close) - jli
* VDiskIn and DiskIn sets done flag (to be used by Done.kr or FreeSelfWhenDone.kr) - jli
* Demand sets done flag (to be used by Done.kr or FreeSelfWhenDone.kr) - jli
* Warn when extensions overwrites methods in main class lib, unless put in SystemOverwrites folder - jli
* New cross-platform filesystem utilities: File.copy, .mtime, .mkdir, .realpath, .type, .fileSize - jli

Bugfixes:
---------
* bugfix ugen collection wrapper methods multichannel expansion - jli
* _String_Regexp bugfixes - jli
* CoinGate.ar bugfixes - jli
* T2K bugfixes - jli
* WiiMote bugfixes - jli
* SynthDesc bugfixes - jli
* fix String-openTextFile on systems without Document support - jli

Changes up to 3.4 are listed below, grouped under each point release of SuperCollider.

SuperCollider v3.4.2, released 2011-01
======================================

Bugfixes:
---------

* 2010-06-05 fix Latch first sample output bug: if trigger > 0 initially, latch should not output 0 - jh
* 2010-09-04 fix firstArg behavior in BinaryOpUGen by a list-approved hack - jh
* 2010-10-01 fix SConstruct so that libscsynth and libsclang get SONAME entries - ds
* 2010-11-13 grainBuf: audio-rate trigger fix - tb
* 2010-11-15 generate libsclang and libscsynth with .so.1 extension (and soname) on linux - ds
* 2010-11-15 scons create symlinks from libX.so to libX.so.1 on linux, and install them - ds
* 2010-11-16 added .htm files to SConstruct as approved help file extension - mb
* 2010-11-28 compile fix for curl support - tb
* 2010-11-28 prevent asBus from breaking when called with no numChannels - jh
* 2010-12-03 grain ugens: demand ugen input fix - tb
* 2010-12-05 SystemClock and TempoClock sched and schedAbs with inf time doesn't schedule the task in the first place. backported from master - tb
* 2010-12-08 prString_FindRegexp fix: match char array was too short to hold null termination - jli
* 2010-12-11 fix classbrowser colors bugs. backported from master - tb
* 2010-12-12 fixes the bug where installed quark help files would not be detected - tb/ar
* 2010-12-13 mark inherited methods in class browser by background colour. backported from master - tb
* 2010-12-30 Pipe does not remove closed pipes from openFiles - jh
* 2010-12-30 fix String:rotate - pb
* 2011-01-02 unit generators: LagControl - fix initialization order - jh
* 2011-01-02 unit generators: LagControl - dynamically allocate buffer for filter states - tb

SuperCollider v3.4.1, released 2010-11
======================================

* 2010-07-12 remove accidental debug messages from SCView (on mac, posted a lot of info to Console, could affect performance) - ds
* 2010-07-11 Collections should behave as reasonably as possible when empty - some fixes to better this - jr
* 2010-07-11 SynthDef:add now sends to all running servers if no libname is given. SynthDescs are still added to the global SynthDescLib. If you want to handle multiple SynthDesc libs, you have to add the servers to each of them explicitly - jr
* 2010-07-12 PanAz: added support for audio-rate pos arg - lfsaw
* 2010-07-18 improved the sclang syntax highlighting parses - Patrick Borgeat
* 2010-07-30 Dreset UGen allows to reset the child UGens on its input - jr
* 2010-08-05 storeOn / asCompileString now simplifies its output. Default arguments that are given in the *new method anyhow are omitted - jr
* 2010-08-06 Dictionary merge and blend methods - jr
* 2010-08-09 method overwrite messages not posted by default, rather a message inviting people to run Main:overwriteMsg for the info - ds
* 2010-08-13 MethodOverride class to encapsule information on overridden messages, inviting people to run MethodOverride.printAll  - jr
* 2010-08-13 add size arg to Signal:zeroPad - jr and jh
* 2010-08-18 Pevent now uses default event if no event is passed in - jr
* 2010-08-18 added a shortcut to the rather tedious .asCompileString method. In analogy to object.postcs, object.cs returns the compile string - jr
* 2010-08-20 audio driver for scsynth running on Android (through JNI) - ds
* 2010-08-24 un-deprecate scsynth's ability to use internal "green" FFT lib, for embedded devices etc - ds
* 2010-08-28 no 'record' button for remote server GUIs, since path not generally known - ds
* 2010-09-02 token threading for sclang interpreter - tb
* 2010-09-07 when looking for a code file (openCodeFile) or cmd-J, it is now enough to select a full line, instead of having to select both words around the colon - jr
* 2010-09-07 added methods for better navigation in the class tree (findOverriddenMethod) - jr
* 2010-09-10 add method: Complex:abs to fit common usage - jr
* 2010-09-12 added Dwrand UGen - jr
* 2010-09-15 SystemClock and TempoClock sched and schedAbs with inf time doesn't schedule the task in the first place - jr
* 2010-10-07 change the mac HID error-handler code to output errors to sc post window rather than to mac log; removes a pascal-string issue - ds
* 2010-10-19 Ndef now releses its bus when server was quit or just booted - jr
* 2010-10-20 retain the path to the file in which an error has occurred and post it - jr


Bugfixes:
---------
* 2010-07-10 protecting the server against malformatted SynthDef names - jr
* 2010-06-28 syntaxColorize fix for double-backslashes, thanks Patrick Borgeat for the patch - ds
* 2010-07-24 catch crash in the case that one tries to define a unique method using a return value directly - jr
* 2010-09-07 UGen:clip, :wrap, :fold now apply correctly to scalar-rate signals; also methodSelectorForRate tweak for which class is asked - ds
* 2010-09-09 fix a bug for trigger signals in Demand.kr that hold longer than one control period - jr
* 2010-09-11 bug in audio rate mapping fixed, when new source object was inserted in a mapped node proxy - jr
* 2010-09-12 fix bug: 2994009. LFPar and LFCub audio rate modulation frequency argument work now - jr
* 2010-09-19 fix to JITGui, when numItems is not supplied - jr
* 2010-10-10 remove more crufty NSLog debug messages - ds
* 2010-10-13 fix SCUserView:receiveDrag to receive mouse co-ordinates; thanks Daniel van den Eijkel - ds
* 2010-10-19 debian-style scvim-check-if-plugin-is-active, brought upstream - ds
* 2010-10-19 bug in audio rate mapping fixed, when new source object was inserted in a mapped node proxy - jr
* 2010-10-19 partial fix for bugs item #2994009 - seems to fix LFPar but not LFCub. More work needed - ds
* 2010-10-19 DC: fix multichannel expansion - tb
* 2010-10-19 fix to demand rate unary op ugens, thanks james harkins - tb
* 2010-10-19 Ugens: LinLin/LinExp fixes - tb
* 2010-10-19 only /clearSched if RT - to fix tracker item #3033454 - tb
* 2010-10-19 UGens: binary operators - fix scalar/signal division - tb
* 2010-10-19 fix bug 2988525: SynthDef:writeDefFile appends path correctly - tb
* 2010-10-19 ProcessOSCPacket: fix possible deadlock - tb
* 2010-10-19 fix network address handling - albert graef
* 2010-11-05 fix memory issues in regular expressions: correct memory management in prString_FindRegexp - tb
* 2010-11-07 sclang: correct symlink handling - tb, ar

SuperCollider v3.4, released 2010-07
====================================

Headlines:
----------

* 2009-09-03 add support for Mac OS 10.5 and greater 64-bit builds of plugins and scsynth
* 2009-07-xx iphone support by Axel Balley added - ab
* 2009-07-21 EnvirGui added, a gui for livecoding/editing environments - adc
* 2009-07-24 Server.plotTree method for visualising the groups and synths on the server - sw
* 2009-07-31 mac osx text-completion feature now includes sclang objects - ds
* 2009-08-01 sclang now has a flag (Platform.ideName) for which IDE is in use (scapp, scvim, scel, sced, jsceclipse...) so that the same class-library can be used with different IDEs, enabling IDE-specific code as necessary - ds
* 2009-08-16 add emergency escape route: if sclang is caught in an infinite loop, send it a USR1 signal to break out of it - ds
* 2009-09-12 String:findRegexp and other regular expressions now available on linux as well as mac - mb,ds
* 2009-09-18 n_order and Server:reorder allow one to specify chains of nodes - sw
* 2009-09-20 simplify the Server recording interface. prepareForRecord is now optional (will be automatically invoked if you don't), and the server gui button is now just two-state "record" "stop" - ds
* 2009-10-04 support multichannel indices for Env:at - jr
* 2009-10-29 improve OSC message correctness: for convenience, sclang allows command names as symbols with no leading slash e.g. \g_new. To improve compliance with the OSC standard, the leading slash is now added to those symbols before dispatch - ds
* 2009-11-07 use nova-simd framework for performance improvements of unit generators - tb
* 2009-11-21 Event type \note supports polyphonic sustain, lag and timingOffset, and responds correctly to free and release. Add \grain event type. - jr
* 2009-11-28 windows: system "application support path", previously hardcoded as C:\SuperCollider, now settable by environment variable SC_SYSAPPSUP_PATH. Default setting for that env var (when using official wix bundle) will be [SC3INSTALLLOCATION] - ds
* 2009-12-15 sclang: 64-bit safety - tb
* 2009-12-15 sclang: performance improvement of math ops - tb
* 2010-01-02 scsynth: use osc-compilant address patterns for server/lang communication - tb
* 2010-01-24 add readline interface to sclang command-line. This is used by default when invoking "sclang" (to use the non-readline interface set the "-i" option to something other than "none") - ds
* 2010-01-24 enable GPL3 code by default - this 'upgrades' the overall binary license from GPL2+ to GPL3+, and allows supercollider to benefit from GPL3+ libraries such as libsimdmath and gnu readline  - ds
* 2010-02-04 Improvements to SC.app editor: Split pane documents, AutoInOutdent - sw
* 2010-02-18 scvim: now compatible with gnu screen, opens post window using screen, making it compatible with a pure-CLI environment - ds
* 2010-02-xx add the Deployment32-64 build style for building on OS X (10.5 and greater) - jp
* 2010-03-10 SynthDef:memStore deprecated in favour of the more coherent and typeable SynthDef:add - jr
* 2010-04-11 Moved some more experimental JITLib classes to "JITLib extensions" Quark - jr


Bugfixes:
---------

* 2009-06-12 fix for level indicator: critical and warning now display based on peak if it is shown rather than on value - sw
* 2009-06-18 fix for mouse coordinates bug - sw
* 2009-06-22 fix for negative bounds issue in SCUserView - sw
* 2009-06-23 avoid memory corruption when unknown OSC type tags are received. Instead forward them to sclang - jr
* 2009-06-23 Fix server crash with negative buffer numbers. - jr
* 2009-07-20 factors(): no prime factors exist below the first prime - jr
* 2009-07-21 Loudness ugen now supports LocalBuf - nc
* 2009-07-23 Fix very nasty bug in Pbindf: if a key is an array, new values were written into the incoming event, instead of the outgoing event - jh
* 2009-07-28 catch unintialised value in sc_GetUserHomeDirectory(), fixing potential memory corruption if HOME not set - ds
* 2009-08-01 SpecCentroid, fix its reaction to silence (output zero instead of NaN) - ds
* 2009-08-01 NamedControl: single default value now returns instance, not array, default values are obtained in a consistent way - jr
* 2009-08-04 fix the CPU-usage issue when calling plain "./sclang" from the terminal on OSX (seems it was caused by a bug in how OSX handles poll() calls) - ds
* 2009-08-15 LinPan2: fix initialisation issue - panning was not correctly applied during the first calc block - ds
* 2009-09-28 Workaround for faded colours in HTML docs - sw
* 2009-09-13 fix PV_MagShift argument handling, so that the defaults mean no-change, matching the behaviour of PV_BinShift - ds
* 2009-09-20 warn about weirdness of Float:switch - ds
* 2009-09-30 prevent NaN output from SpecFlatness when input is silence - ds
* 2009-10-16 fix cropping issue in printing SuperCollider.app documents - cq
* 2009-10-17 many phase-vocoder (PV_) ugens previously didn't handle the DC/nyquist bins as expected. fixed most of these (PV_MagAbove, PV_MagBelow, PV_MagClip, PV_LocalMax, PV_BrickWall, PV_MagSquared, PV_BinWipe, PV_CopyPhase, PV_Max, PV_RandComb) - ds
* 2009-11-01 fix audio rate arg problem in PlayBuf - jp
* 2009-11-02 fix amplitude-convergence issue in Pan2, Balance2, LinPan2, XFade2, which could sometimes result in sound despite zero amp, as discovered by jh - ds
* 2009-11-03 fix unsafe implementation of methods that allow sending collections to buffers - jr
* 2009-11-04 fix signalRange for MouseX, MouseY and KeyState, so that the range message works now - jr
* 2009-11-19 Fix for PV chains and LocalBuf - sw
* 2009-12-14 fix uninitialised variable in Pulse (could sometimes cause small glitch on init), thanks to rhian lloyd - ds
* 2010-01-10 Demand ugens can now handle more than 32 channels, thanks Patrick Borgeat for the patch - ds
* 2010-02-05 scsynth now respects the -D commandline option when running in NRT mode - ds
* 2010-02-11 Fix for nowExecutingPath with Routines - sw
* 2010-02-23 Performance fixes for SCUserView - sw
* 2010-02-25 Fix interpolation / indexing problem in VDiskIn that caused slight pitch fluctuations - jp
* 2010-03-11 SequenceableCollection:reduce no longer returns nil if the collection has only 1 element - ds
* 2010-03-28 fix memory leak of empty command line, for interactive sclang mode - tb
* 2010-03-29 main menu for Mac lang editor app: correction to key for evaluate selection, used to be return, now return+shift - nc
* 2010-04-19 fix missing font issue in Plotter -jr

Other additions/improvements:
-----------------------------

* 2009-06-11 Evaluate Selection menu command - sw
* 2009-06-23 allow remote apps to send type chars - jr
* 2009-06-27 build 32bit sclang on x86_64 - tb
* 2009-07-xx efficiency improvements on some UGens - tb
* 2009-07-xx improve Quarks use of svn for smoother user experience - ds
* 2009-07-22 catch the case when a user tries to compile into a synthdef, a unary/binary operator that the server can't apply - jh
* 2009-08-29 String:toUpper and String:toLower - ds
* 2009-09-06 Boolean:while now throws an informative error, since Boolean:while has no particular use but is often used in error by beginners in code where Function:while is intended - ds
* 2009-09-12 method FunctionDef:makeEnvirFromArgs allows to create template events from a function - jr
* 2009-09-30 Error is now posted if maxSynthDefs exceeded -sw
* 2009-11-03 TwoWayIdentityDictionary has a removeAt method now - jr
* 2009-11-04 update of deferredTaskInterval from 0.038 to 0.01667 - fo
* 2009-11-07 improved PyrSlot typesafety - tb
* 2009-11-23 menu system improvements in Windows IDE - mv
* 2009-12-13 tidyups for "sclang when on osx but not in sc.app" - ds
* 2009-12-13 added lincurve and curvelin methods for numbers and UGens - jr
* 2010-01-01 OSCresponder and OSCresponderNode respond equally to messages with or without preceding slash - jr
* 2010-01-04 sclang: deprecated Proutine - switch back to the original Prout
* 2010-01-06 UnitTest Quark improved, added script support - jr
* 2010-01-23 Improved NodeProxy and ProxySpace helpfiles. Added proxy composition syntax to NodeProxy - jr
* 2010-01-30 Make multichannel plotting easier. If no numChannels is given, find out automatically  - jr
* 2010-01-31 add new LOOP1 macro - tb
* 2010-01-31 use c99 log2 functions for sc_log2 - tb
* 2010-02-09 rearrangement of supercollider source code tree - ds
* 2010-02-11 Server:default_ now assigns to s by default. Settable with flag - sw
* 2010-02-27 removed SCAnimationView and added SCUserView:animate_ - fo
* 2010-03-10 SCPen:setSmoothing changed to SCPen:smoothing_, harmonised change with swingosc - ds
* 2010-03-23 exponentiation for Complex numbers - jr
* 2010-xx-xx many helpfiles improved - various authors
* 2010-03-30 Image class added, a redirect for SCImage or JSCImage - hr
* 2010-03-30 Pitch ugen ability to output clarity measure (by default not activated, for backwards compat) - ds

SuperCollider v3.3.1, released 2009-06-19
=========================================

Headlines:
----------

* 2009-05-11 SCWindow additions for visible, visible_, unminimize - cq
* 2009-05-17 server guis (on osx) now indicate which one is currently default - adc
* 2009-05-18 enabled control rate versions of Ball, TBall and Spring - mb
* 2009-05-18 LID support for setting "MSC" state as well as "LED" on devices - ds
* 2009-06-19 patched for compatibility with Safari 4, fixing a lockup issue when opening help docs - ar

Bugfixes:
---------

* 2009-05-11 fix keyword addressing for the order: argument - jmc
* 2009-05-15 update libsndfile to 1.0.20 to fix security issues (overflow vulnerabilities) in libsndfile - ds
* 2009-05-20 fix bug #2790649, "very large SimpleNumber:series can crash sclang" - ds
* 2009-05-25 mac icons for document types .quark .scd .rtfd were omitted from the app bundle, now fixed - ds
* 2009-06-02 EnvGen: fix off by one block latency in envelope attacks and releases - jr
* 2009-06-12 bug fix for level indicator: critical and warning now display based on peak if it is shown rather than on value - sw
* 2009-06-12 mouse coordinates fix, deprecate SCUserView:mousePosition - sw
* 2009-06-17 some issues fixed in SCUserView - cq
* 2009-06-20 fix redirect for Stethoscope - adc

Other additions/improvements:
-----------------------------

* 2009-05-05 fixes/improvements to cocoabridge primitives - cq
* 2009-05-06 SCImage various minor improvements - cq
* 2009-05-16 optimisation for scrollview drawing, remove VIEWHACK - sw
* 2009-05-xx various documentation updates - various
* 2009-05-xx various improvements to ubuntu-debian packaging scripts - ds, am
* 2009-05-20 SynthDef:writeOnce now available as an instance method as well as a class method - ds
* 2009-06-11 sc.app gets a menu command for "Evaluate selection" - sw
* 2009-06-17 adjusted SCKnob to use relative mouse coordinates - jm
* 2009-06-17 small fix to SConstruct to allow for new Debian X11 location when compiling on linux - mb
* 2009-06-19 Blip ugen: prevent sound blowup by never letting numharm be less than 1 - fo
* 2009-06-20 SCPen: fillStroke changed default from draw(4) to draw(3) - fo
* 2009-06-21 Fold, Clip and Wrap can now modulate the low and high inputs.

SuperCollider v3.3, released 2009-04-30
=======================================

Headlines:
----------
* 2008-04-08 scvim is now part of the distro - ds
* 2008-04-20 improvements to MIDI sysex handling - added sysex parsing directly in source - thanks to charles picasso
* 2008-07-12 scsynth on Mac can now use separate devices for audio input vs audio output. Thanks to Axel Balley for much of the work on this, also a bit by ds.
* 2008-07-12 PlayBuf, RecordBuf, BufWr, BufRd, ScopeOut - used to be limited to 16-channel audio maximum. Now can handle massively multichannel audio - ds
* 2008-07-19 Buffer:normalize method added - ds
* 2008-07-23 FFT and IFFT added option for zero-padding, by optional "framesize" argument - ds
* 2008-09-03 new VDiskIn ugen - jp
* 2008-10-08 SCImage for manipulating bitmap image objects (mac only) - ch
* 2008-10-09 LocalBuf system to allow synths to manage their own purely-local buffers - jr
* 2008-10-17 Added "-P" option to scsynth (accessible as s.options.restrictedPath) to allow restricting which paths scsynth is allowed to read/write - ds
* 2008-10-18 new PartConv ugen, performs efficient frequency-domain convolution - nc
* 2008-10-26 support on mac for "modal windows/sheets" (for user dialogs etc) - sw
* 2008-xx-xx various behind-the-scenes efficiency improvements, for a sleeker audio server that can do more on a given machine - various contributors
* 2008-11-01 add BEQSuite filter UGens (blackrain, jp)
* 2008-11-11 add Pfxb pattern - jr
* 2008-11-25 new EZPopUpMenu - jm
* 2008-11-29 Pitch ugen can now also track the pitch of control-rate signals - mb
* 2008-11-30 Drag and drop paths from Finder to Documents and SCViews - sw
* 2008-12-03 added PV_Div ugen for complex division - ds
* 2008-12-07 added PV_Conj ugen for complex conjugate - ds
* 2008-12-15 new ViewRedirect for easier cross-platform gui syntax. e.g. Window now redirects to SCWindow or JWindow. ds & jm
* 2008-12-15 revised and updated all SC Gui documentation. New gui introduction. New SCUserView subclassing tutorial. - jm
* 2008-12-15 the /done message for Buffer allocation/free/etc now also includes the buffer index - jt
* 2008-12-15 added methods to SCFreqScope for "special" SynthDef, and for visualising frequency responses - ds
* 2008-12-18 the main windows version of sc is now called "SuperCollider" rather than "PsyCollider" (although psycollider is the name of the code editor). SuperCollider on windows now has a different (better? who knows) installer, uses the main sc3 icon, and has some other tweaks that make it different from version 3.2 - ds
* 2008-12-19 new EZListView - jm
* 2009-01-02 sced (the gedit sc plugin) is now part of the distro - mb/artem
* 2009-01-06 SendReply UGen - jr
* 2009-01-06 VDiskIn sends file position to client - jr
* 2009-01-12 map audio to SynthDef controls. new OSC messages n_mapa and n_mapan. - jp, jr, rk
* 2009-01-13 relativeOrigin=true. SC's coordinate system in container views and user views are now by default relative.
* 2009-01-15 SCLevelIndicator view added - sw
* 2009-01-16 Scale and Tuning classes added - tw
* 2009-01-17 SuperColliderAU (scsynth as a Mac OSX "Audio Unit") added to main distribution - gr
* 2009-02-03 EZKnob revised and now part of distro - br, jm
* 2009-02-23 SystemActions refactored - jr
* 2009-02-23 SCMenuItem, SCMenuGroup, and SCMenuSeparator for user customisable menus - sw
* 2009-02-23 LFGauss UGen added - jr
* 2009-03-14 Added GeneralHID based patterns PhidKey and PhidSlot - mb

Bugfixes:
---------
* 2008-05-20 fix for the special case when 0.2.asFraction beachballs the lang (bug id 1856972) - jr
* 2008-05-20 fix slight mistake in the defaults printed by scsynth on command-line (bug id 1953392) - ds
* 2008-07-24 Routine / AppClock fix setting the clock of the thread (bug id 2023852) - jr
* 2008-09-16 stability fixes to FFT and IFFT - ds
* 2008-09-27 fix TExpRand.ar - ds
* 2008-11-11 SystemSynthDefs.numChannels can now be set from the startup file - jr
* 2008-11-24 avoid FFT failure when buffer not allocated - jr
* 2008-11-29 resolved inconsistency in Server:waitForBoot - function is always executed in a Routine, whether or not the server is booted - ds
* 2008-12-07 FlowView setting inital margin and gap fixed (bug id 1986059) - jh
* 2008-12-07 OSCpathResponder fixed (bug id 2021481) - jh
* 2009-01-08 b_readChannel fixed (bug id 1938480) - mb
* 2009-01-08 MIDIIn.connect on Linux fixed (bug id 1986850) - mb
* 2009-01-09 Tabbing in SCTextView - sw
* 2008-08-23 fix for sclang crashing sometimes when compiling erroneous code (bug id 2022297) - rb
* 2009-01-18 SCScrollView relativeOrigin glitch fixed (bug id 2508451) - jr, sw
* 2009-01-28 Fixed QuartzComposer view bounds bug - sw
* 2009-02-21 NodeProxy handles groups more consistently - jr
* 2009-04-16 asFraction fix by JMcC - jr

Other additions/improvements:
-----------------------------
* 2008-03-22 added open Method and link handling to SCTextView - sw
* 2008-04-04 SoundFile:toCSV - ds
* 2008-04-29 buffer UGens now post a warning (rather than failing silently) if buffer channels doesn't match num ins/outs - ds
* 2008-07-14 Deprecated rendezvous in favour of zeroConf - sw
* 2008-09-xx various code improvements, including compiling for 64-bit linux - tb
* 2008-10-03 improvements to standalone build - jp
* 2008-10-03 SCEnvelopeView remembers drawing order. - sw
* 2008-10-05 Maintain initial offset when dragging on an Envelope View node. This avoids nodes jumping to a new position on mouse down. - sw
* 2008-10-05 Enabled gridOn, gridResolution, gridColor, timeCursorOn, timeCursorPosition, and timeCursorColor for SCSoundFileViews. - sw
* 2008-10-31 thisProcess.pid - sclang now can know what its process id is - ds
* 2008-11-21 support for LocalBuf in FFT UGens - jr
* 2008-11-27 SC3 will ignore ugens/class-files in folders named "ignore". Previously the name has been "test" - ignoring folders named "test" is now deprecated and will be removed - ds
* 2008-12-06 Added Main:recompile to allow recompiling from code (SC.app only so far) - sw
* 2008-12-08 Added custom drag label for SCView - sw
* 2008-12-15 Buffer's done osc reply now includes the bufnum - jt
* 2008-12-20 Help tree in help menu (OSX) - sw
* 2008-12-24 EZSLider and EZNumber now have an enclosing containers, as well labelPosition =\left, \right, or \stack modes - jm
* 2009-01-03 Help browser text is editable/executable (CocoaGUI) - sw
* 2009-01-04 Escape exits modal and fullscreen states (OSX) - sw
* 2009-01-08 interface change to ProxySpace.stop (now stops all proxies, just like free/end/clear) - jr
* 2009-01-08 improved Ndef implementation, stores values in an internal ProxySpace, Ndef takes server names for multiple servers. - jr
* 2009-01-08 improved ProxyMixer implementation, added NdefMixer. - adc
* 2009-01-11 Added class browser to help menu (OSX) - sw
* 2009-01-20 New Cocoa based SCTextField - sw
* 2009-01-28 More helpful error string for operation cannot be called from this Process - sw
* 2009-02-23 CocoaDialog takes allowsMultiple arg rather than maxItems - sw


SuperCollider v3.2, released 2008-02-21
=======================================

Headlines:
----------
* 2007-11-xx new suite of machine listening ugens - Loudness, BeatTrack, Onsets, KeyTrack, SpecCentroid, SpecPcile, SpecFlatness - nc, ds
* 2008-01-06 FreeBSD compatibility - hb
* 2008-01-10 Quarks updating on OSX should now be easier for first-time users; commands are run in a separate terminal window - ds
* 2008-01-15 "Advanced find" in Mac interface - jt
* 2008-01-20 Buffer.copy changed to match other .copy methods - now copies language-side object rather than server buffer. Buffer.copyData can be used to copy data from one server buffer to another - jh
* 2008-01-20 - add volume controls to the Server and Server guis - jp
* 2008-01-xx Pattern library implementation changes, Pfx, Pbus, Pgroup etc. - rk, jr, jh
* 2008-01-26 TDuty outputs trigger first, not level. for backwards compatibility TDuty_old - jr
* 2008-02-03 moved the search location for "startup.rtf" on Mac - now searches in system, then user, "Application Support/SuperCollider" folders - ds

Bugfixes:
---------
* 2007-11-16 bug fixes for MIDIIn in connect/disconnect methods. split MIDIOut.sysex into user method and primitive (breaks with previous implementation). default value for uid arg in MIDIOut.new. - mb
* 2007-11-18 fixed a bug in prTry / protect - jr
* 2007-11-27 lock avoided in nextTimeOnGrid
* 2007-12-12 Node-setn fixed when using integers as control indices - jr
* 2008-01-16 fixed Pen: bug with fillRect, fillOval and fillColor (bugtracker id 1837775) - jt
* 2008-01-20 CheckBadValues rate-checking was too restrictive - ds
* 2008-01-20 fix for Saw and Pulse's offset noise on first instantiation, thanks to hisao takagi - ds
* 2008-01-26 TDuty / Duty does not drift anymore - jr
* 2008-02-07 Fixed hang and incorrect background drawing in Cocoa scrollviews - sw

Other additions/improvements:
-----------------------------
* 2007-11-16 MIDIOut.connect and disconnect - mb
* 2007-11-18 added T2A UGen - jr
* 2007-11-18 Refactoring of Document class, including new CocoaDocument class to handle the Cocoa-specific (SuperCollider.app) document management - ds
* 2007-11-18 More macros available in the plugin API for UGen programmers: GET_BUF, SIMPLE_GET_BUF, FULLRATE, RGET, RPUT - ds
* 2007-11-20 UnixPlatform:arch method - jp
* 2007-11-20 FFTTrigger UGen - a ugen to create "fake" (empty) FFT chains - jp
* 2007-11-21 StartUp protects its added functions from each other - if one fails this no longer prevents others from running - ds
* 2007-11-25 added Pclutch and moved StreamClutch to common - jr
* 2007-11-27 Function:inEnvir added - jh
* 2007-12-12 added Collection.flatIf - jr
* 2007-12-15 added control rate functionality to NumRunningSynths - jr
* 2008-01-08 martin rumori's DiskIn bugfix and loop enhancement - jp
* 2008-01-10 String:runInTerminal method - ds
* 2008-01-11 poll now works for scalar ugens - jr
* 2008-01-15 Collection:maxIndex and Collection:minIndex - nc
* 2008-01-24 Server.options.rendezvous to (de)activate Rendezvous if desired - ds
* 2008-01-24 demand ugens accept audio rate inputs correctly - jr
* 2008-01-26 added Dbufwr ugen, for writing to buffers from a demand ugen chain  - jr
* 2008-01-27 Main:version and associated methods for programmatically determining which version SC is - ds
* 2008-02-03 Server:defaultRecDir class variable, to allow user to specify default rec location - ds
* 2008-02-07 SCScrollView and SCScrollTopView no longer fire their action when scrolled programatically - sw


SuperCollider v3.1.1, released 2007-11-16
=========================================
Bugfixes:
---------
* 2007-11-09 re-organized the main help file - rb
* 2007-11-14 fix for .asStringPrec, to avoid crashes on intel systems for large precision values - jt

Other additions/improvements:
-----------------------------
* 2007-11-14 added a preprocessor to the interpreter - jr
* 2007-11-14 added a startup message specifying how to get help - rk


SuperCollider v3.1, released 2007-10-31
=======================================
(changes below are since 2007-09-22, for first ever point release)

Headlines:
----------
* 2007-09-27 SparseArray class added - jr
* 2007-09-28 Help.gui added - ds
* 2007-10-01 FFT and IFFT rewrite - now using more efficient libs, also allows user to vary the overlap and the window type, also large-sized FFTs are possible - ds
* 2007-10-02 UnpackFFT and PackFFT added - these allow for flexible frequency-domain manipulations inside synths - ds
* 2007-10-04 Pkey and Pif added - hjh
* 2007-10-05 reformed Patterns - all patterns accept patterns as arguments - jr
* 2007-10-08 change to UGen plugin loading fixes the audio dropout issue that various users have experienced - rb
* 2007-10-08 GeneralHID crossplatform HID wrapper - mb
* 2007-xx-xx many improvements to Quarks package-management system. gui improvements, dependency-handling improvements, etc - various
* 2007-10-20 added a Glossary file - sw
* 2007-10-xx various new help files added, and many help files improved - various
* 2007-10-26 changed Cmd-? to Cmd-D in lieu of the default help menu shortcut in Leopard. Also changed Cmd-Shift-K (clear post window) to Cmd-Shift-C to avoid accidental recompiles. - rb

Other additions/improvements:
---------------------------
* 2007-09-22 change log added, much rejoicing
* 2007-09-25 added packagesource.sh script to produce source code bundles - ds
* 2007-09-28 IdentityDictionary:doesNotUnderstand now warns if adding a pseudo-method which overrides a real method - jr
* 2007-09-28 String:openHTMLFile added - ds
* 2007-10-04 Integer:collect and Integer:collectAs methods added - ds/jr
* 2007-10-05 Dwhite:new and Dbrown:new have default values for lo and hi - jr
* 2007-10-10 SC no longer automatically writes data (synthdefs, archive.scxtar) to the application folder - instead writes to "app support". This fixes problems with running SC using an unprivileged user account - ds
* 2007-10-16 SequenceableCollection:median speed improvement, approx ten times faster in many cases - ds
* 2007-10-20 Object:deprecated and DeprecatedError added to allow for method deprecation - sw
* 2007-10-21 Amplitude : attackTime and releaseTime can be modulated now - jr
* 2007-10-25 Collection : histo method improved and moved from mathLib to common - jr
* 2007-10-30 improvements to cocoa Gui, including SCUserView improved to support layering and own draw hook - jt, sciss
* 2007-10-31 refactored Pbrown, added Pgbrown - jr

Bugfixes:
---------
* 2007-09-29 takekos bug fixed (obscure issue with garbage collection in arrays) - jm
* 2007-10-01 fixed off by one bug in Dswitch and Dswitch1 that caused a server crash - jr
* 2007-10-09 fixed deadlock and other problems in NSAttributedStringAdditions.m - rb
* 2007-10-11 fixed inaccurate automatic determination of whether SC is running as standalone - ds
* 2007-10-14 .quark files now saved correctly as plain-text, not RTF - ds
* 2007-10-24 fixed a bug in Pbeta - jp