|
1 | 1 | ---
|
2 | 2 | layout: page
|
3 | 3 | title: Downloads
|
| 4 | +bootstrap: true |
4 | 5 | ---
|
5 | 6 |
|
6 |
| -Jump to: |
7 |
| -[Mac](#mac) - [Linux](#linux) - [Windows](#windows) - [Other Platforms](#other-platforms) |
8 |
| - |
9 |
| ------- |
10 |
| - |
11 |
| -{% for os in site.data.downloads.os %} |
12 |
| -## {{ os.slug }} |
13 |
| -{% for category in os.categories %} |
14 |
| -#### {{ category.name | capitalize }} |
15 |
| -{{ category.start_text }} |
16 |
| -{% for download in category.downloads %} |
17 |
| -- [{{ download.name }}]({{ download.link }}) |
18 |
| -{% endfor %} |
19 |
| -{{ category.end_text }} |
20 |
| -{% endfor %} |
21 |
| ------- |
22 |
| -{% endfor %} |
23 |
| - |
24 |
| -## Other Platforms |
25 |
| - |
26 |
| -SuperCollider can be used on embedded platforms, including Raspberry Pi and Beagle Bone Black. |
27 |
| -See the [project READMEs](https://github.com/supercollider/supercollider) for more information. |
28 |
| - |
29 |
| -## Releases |
30 |
| - |
31 |
| -[SuperCollider releases](https://github.com/supercollider/supercollider/releases) (including Stable Releases, Betas, and Release Candidates). |
32 |
| - |
33 |
| -## Building From Source |
34 |
| - |
35 |
| -Build instruction can be found on [GitHub](https://github.com/supercollider/supercollider) in the README corresponding to your Operating System. |
36 |
| - |
37 |
| -## Plugins And Extensions |
38 |
| - |
39 |
| -#### SC3 Plugins |
40 |
| - |
41 |
| -[https://supercollider.github.io/sc3-plugins](https://supercollider.github.io/sc3-plugins) |
42 |
| - |
43 |
| -The sc3-plugins are extension plugins for the SuperCollider audio synthesis server. |
44 |
| -These third-party plugins provide additional synthesis, analysis, and other capabilities for the sound server. |
45 |
| - |
46 |
| -#### Quarks |
47 |
| - |
48 |
| -[https://github.com/supercollider-quarks/quarks](https://github.com/supercollider-quarks/quarks) |
49 |
| - |
50 |
| -Quarks are packages containing classes, extension methods, documentation and UGens. |
51 |
| -The integrated Quarks package system is used to download and manage these packages on your system. |
| 7 | +Stable Releases, Betas, Release Candidates and Development builds are accessible via [GitHub releases](https://github.com/supercollider/supercollider/releases). |
| 8 | + |
| 9 | +<ul class="nav nav-tabs" id="osTab" role="tablist"> |
| 10 | + {% for os in site.data.downloads.os %} |
| 11 | + <li class="nav-item" role="presentation"> |
| 12 | + <button |
| 13 | + class="nav-link {% if forloop.first %}active{% endif %}" |
| 14 | + id="{{ os.slug | downcase }}-tab" |
| 15 | + data-toggle="tab" |
| 16 | + data-target="#{{ os.slug | downcase }}" |
| 17 | + type="button" |
| 18 | + role="tab" |
| 19 | + aria-controls="{{ os.slug }}" |
| 20 | + aria-selected="true" |
| 21 | + >{{ os.slug }} |
| 22 | + </button> |
| 23 | + </li> |
| 24 | + {% endfor %} |
| 25 | + <li class="nav-item" role="presentation"> |
| 26 | + <button |
| 27 | + class="nav-link" |
| 28 | + id="other-tab" |
| 29 | + data-toggle="tab" |
| 30 | + data-target="#other" |
| 31 | + type="button" |
| 32 | + role="tab" |
| 33 | + aria-controls="Other releases" |
| 34 | + aria-selected="true" |
| 35 | + >Other releases |
| 36 | + </button> |
| 37 | + </li> |
| 38 | + <li class="nav-item" role="presentation"> |
| 39 | + <button |
| 40 | + class="nav-link" |
| 41 | + id="extensions-tab" |
| 42 | + data-toggle="tab" |
| 43 | + data-target="#extensions" |
| 44 | + type="button" |
| 45 | + role="tab" |
| 46 | + aria-controls="Plugins And Extensions" |
| 47 | + aria-selected="true" |
| 48 | + >Plugins And Extensions |
| 49 | + </button> |
| 50 | + </li> |
| 51 | +</ul> |
| 52 | + |
| 53 | +<div class="tab-content" id="osTabContent"> |
| 54 | + {% for os in site.data.downloads.os %} |
| 55 | + <div |
| 56 | + class="tab-pane fade {% if forloop.first %}show active{% endif %}" |
| 57 | + id="{{ os.slug | downcase }}" |
| 58 | + role="tabpanel" |
| 59 | + aria-labelledby="{{ os.slug }}-tab" |
| 60 | + > |
| 61 | + {% for category in os.categories %} |
| 62 | + <b>{{ category.name | capitalize }}</b> |
| 63 | + <p>{{ category.start_text }}</p> |
| 64 | + <ul> |
| 65 | + {% for download in category.downloads %} |
| 66 | + <li> |
| 67 | + <a href="{{ download.link }}"> |
| 68 | + {{ download.name }} |
| 69 | + </a> |
| 70 | + </li> |
| 71 | + {% endfor %} |
| 72 | + </ul> |
| 73 | + <p>{{ category.end_text }}</p> |
| 74 | + {% endfor %} |
| 75 | + </div> |
| 76 | + {% endfor %} |
| 77 | + <div |
| 78 | + class="tab-pane fade" |
| 79 | + id="other" |
| 80 | + role="tabpanel" |
| 81 | + aria-labelledby="other-tab" |
| 82 | + > |
| 83 | + <b>Sources</b> |
| 84 | + <p> |
| 85 | + Build instruction can be found on <a href="https://github.com/supercollider/supercollider">GitHub</a> in the README corresponding to your Operating System. |
| 86 | + </p> |
| 87 | + <b>Other Platforms</b> |
| 88 | + <p> |
| 89 | + SuperCollider can be used on embedded platforms, including Raspberry Pi and Beagle Bone Black. |
| 90 | + See the <a href="https://github.com/supercollider/supercollider">project READMEs</a> for more information. |
| 91 | + </p> |
| 92 | + </div> |
| 93 | + <div |
| 94 | + class="tab-pane fade" |
| 95 | + id="extensions" |
| 96 | + role="tabpanel" |
| 97 | + aria-labelledby="extensions-tab" |
| 98 | + > |
| 99 | + <b>SC3 Plugins</b> |
| 100 | + <p> |
| 101 | + <a href="https://supercollider.github.io/sc3-plugins">https://supercollider.github.io/sc3-plugins</a> |
| 102 | + </p> |
| 103 | + <p> |
| 104 | + The sc3-plugins are extension plugins for the SuperCollider audio synthesis server.<br/> |
| 105 | + These third-party plugins provide additional synthesis, analysis, and other capabilities for the sound server. |
| 106 | + </p> |
| 107 | + <hl/> |
| 108 | + <b>Quarks</b><br/> |
| 109 | + <p> |
| 110 | + <a href="https://github.com/supercollider-quarks/quarks">https://github.com/supercollider-quarks/quarks</a> |
| 111 | + </p> |
| 112 | + <p> |
| 113 | + Quarks are packages containing classes, extension methods, documentation and UGens.<br/> |
| 114 | + The integrated Quarks package system is used to download and manage these packages on your system. |
| 115 | + </p> |
| 116 | + </div> |
| 117 | +</div> |
0 commit comments