You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# supercolliderStandaloneRPI1
2
2
Standalone for Raspberry Pi 1 or Zero with Raspbian Stretch including the full IDE.
3
3
4
-
This is the audio synthesis program [SuperCollider](http://github.com/supercollider/supercollider) (3.9.2, commit 6aba4ce, 3apr2018) + [sc3-plugins](https://github.com/supercollider/sc3-plugins) (master, commit 9307b41, 2feb2018) compiled for rpi1 and rpi0.
4
+
This is the audio synthesis program [SuperCollider](http://github.com/supercollider/supercollider) (3.9.3, commit f61c21d, 6apr2018) + [sc3-plugins](https://github.com/supercollider/sc3-plugins) (master, commit 9307b41, 2feb2018) compiled for rpi1 and rpi0.
5
5
6
6
It was built using [this guide](http://supercollider.github.io/development/building-raspberrypi.html) on a **Raspberry Pi Zero** under [2018-03-13-raspbian-stretch](http://raspberrypi.org/downloads/raspbian/) (Raspbian Stretch with Desktop). It also works on the **Raspberry Pi 1** model A and B.
7
7
For **Raspberry Pi 2** and **Raspberry Pi 3** use [this repository](https://github.com/redFrik/supercolliderStandaloneRPI2).
@@ -18,6 +18,7 @@ open the terminal on the RPi and type...
Copy file name to clipboardExpand all lines: share/system/CHANGELOG.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,29 @@
1
1
# Change Log
2
2
3
+
3.9.3 (2018-04-07)
4
+
==================
5
+
6
+
Contributors to this release: brianlheim, mneilsen, patrickdupuis, telephon
7
+
8
+
General: Fixed
9
+
-----
10
+
11
+
It is now possible to build the project using a system install of yaml-cpp. Previously the `SYSTEM_YAMLCPP` CMake option was broken ([#3557](https://github.com/supercollider/supercollider/pulls/3557)).
12
+
13
+
Improvements to documentation on writing and designing classes ([#3605](https://github.com/supercollider/supercollider/pulls/3605)).
14
+
15
+
sclang: Fixed
16
+
-----
17
+
18
+
Fixed a regression from 3.8 to 3.9 that prevented the tilde character from being expanded to the user's home directory during class library compilation ([#3646](https://github.com/supercollider/supercollider/pulls/3646)).
19
+
20
+
Class library: Fixed
21
+
-----
22
+
23
+
Fixed an issue with handling of ranges in `RangeSlider:setSpan` and `:setDeviation` ([#3620](https://github.com/supercollider/supercollider/pulls/3620)).
24
+
25
+
Fixed a regression in `Score`'s multichannel expansion from 3.9.1 to 3.9.2 ([#3608](https://github.com/supercollider/supercollider/pulls/3608)).
Copy file name to clipboardExpand all lines: share/system/HelpSource/Guides/Polymorphism.schelp
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -52,22 +52,20 @@ code::
52
52
53
53
subsection:: Ref
54
54
The link::Classes/Ref:: class provides a way to create an indirect reference to an object. It can be used to pass a value by reference. Ref objects have a single instance variable called code::value::.
55
-
The code::value:: method returns the value of the instance variable code::value::. Here is the class definition for Ref:
55
+
The code::value:: method returns the value of the instance variable code::value::. Here is a part of the class definition for Ref:
0 commit comments