diff --git a/README.md b/README.md index 2777f6c..634f252 100755 --- a/README.md +++ b/README.md @@ -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. @@ -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.