Skip to content

Commit

Permalink
update README.md for 3.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dathinaios committed Feb 21, 2020
1 parent e5ef76d commit 9b21261
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@

Modified from [the linux version](https://github.com/miguel-negrao/scStandalone).

[SuperCollider](http://supercollider.sourceforge.net/) version `3.6.6`
[SuperCollider](http://supercollider.sourceforge.net/) version `3.10.4`

## Usage

1. Navigate to the downloaded folder from the terminal with `cd location_path_of_sc-osx-standalone-master`.
2. Run the standalone with `sh run.sh` script. You should hear some white noise. This is the default sound as defined in `init.scd`.
3. To modify `init.scd` replace the code inside the curly brackets after `doWhenBooted` with your own code:
2. Unzip the `Frameworks` folder and delete the `zip` file.
3. Run the standalone with `sh run.sh` script. You should hear some white noise. This is the default sound as defined in `init.scd`.
4. To modify `init.scd` replace the code inside the curly brackets after `waitForBoot` with your own code:

s.boot;
s.doWhenBooted{
s.waitForBoot{
// your own code here
};

4. Include your extensions in the `SCClassLibrary` folder.
5. [Platypus ](http://sveinbjorn.org/platypus) can be used to convert the script based structure into a native OSX application.
5. Include your extensions in the `SCClassLibrary` folder.
6. [Platypus ](http://sveinbjorn.org/platypus) can be used to convert the script based structure into a native OSX application.
- Open Platypus
- Fill in the App name
- Click the `Select Script` button and choose the `run.sh` file.
Expand All @@ -29,7 +29,3 @@ Modified from [the linux version](https://github.com/miguel-negrao/scStandalone)
Q: Where do I put soundfiles and how do i access them?

A: Put your files in the `Resources` directory. You can then access them using `Platform.resourceDir ++ "/path/to/your/file.wav");`

Q: Where is the `3.8` version?

A: There are some issues with linking the `QT` libraries in `3.8` that makes it impossible to create the standalone for now. See [this thread](http://new-supercollider-mailing-lists-forums-use-these.2681727.n2.nabble.com/3-7-sc-osx-standalone-Qt-issue-td7624112.html) in the mailing list for more info.

0 comments on commit 9b21261

Please sign in to comment.