Skip to content

Commit

Permalink
Merge pull request #5565 from supercollider/main
Browse files Browse the repository at this point in the history
Main -> develop
  • Loading branch information
dyfer committed Sep 5, 2021
2 parents 342c3e4 + b678713 commit babcdae
Show file tree
Hide file tree
Showing 8 changed files with 425 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -474,9 +474,9 @@ jobs:
ASIO_PATH: ${{ env.LIBS_DOWNLOAD_PATH }}/asio_sdk
run: |
mkdir -p $ASIO_PATH && cd $ASIO_PATH
curl -L https://www.steinberg.net/sdk_downloads/asiosdk2.3.zip -o asio.zip
curl -L https://www.steinberg.net/asiosdk -o asio.zip
7z x asio.zip -y
mv ASIOSDK2.3 $GITHUB_WORKSPACE/external_libraries/portaudio/asiosdk
mv asiosdk_* $GITHUB_WORKSPACE/external_libraries/portaudio/asiosdk
- name: configure
shell: bash
run: |
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ Release dates of 3.x versions:
- 3.9: 2018-01-13
- 3.10: 2018-11-24
- 3.11: 2020-03-08
- 3.12: 2020-08-02
- 3.12: 2021-08-02

3.12.1-rc1 (2021-08-14)
3.12.1 (2021-09-05)
===================

The 3.12.1 release fixes compatibility with older macOS systems (10.13 and below)
Expand Down
2 changes: 2 additions & 0 deletions HelpSource/Classes/Server.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ code::
s.serverRunning // returns true if it is true
::

Some insights about common Server issues can be found on the FAQ link::Guides/UserFAQ#Server Issues#Server Issues::


ClassMethods::
private:: initClass
Expand Down
2 changes: 2 additions & 0 deletions HelpSource/Classes/SynthDef.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ The SynthDef class encapsulates the client-side representation of a given def, a

SynthDef is one of the more complicated classes in SC and an exhaustive explanation of it is beyond the scope of this document. As such, the examples at the bottom of this document and those found in the various tutorials accessible from link::Help:: may be necessary to make some aspects of its use clear.

Some insights about common SynthDef issues can be found on the FAQ link::Guides/UserFAQ#SynthDef Issues#SynthDef Issues::

subsection:: UGen Graph Functions and Special Argument Forms

The core of a def is its link::Classes/UGen##unit generator:: graph function.
Expand Down
4 changes: 3 additions & 1 deletion HelpSource/Guides/GUI-Introduction.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -390,4 +390,6 @@ Routine{
}.play(SystemClock)
::

As mentioned above, using the GUI system is also not allowed in code performed directly in response to OSC messages (this includes functions given to all kinds of OSC responder classes). The same solutions as above apply:
As mentioned above, using the GUI system is also not allowed in code performed directly in response to OSC messages (this includes functions given to all kinds of OSC responder classes). The same solutions as above apply.

Another example for addressing this issue can be found in the FAQ link::Guides/UserFAQ#Language (client) Issues#Language (client) Issues::

0 comments on commit babcdae

Please sign in to comment.