Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 6 additions & 15 deletions src/routes/(content)/installation/max/+page.svx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,15 @@ flair: article
<script>
import Image from '$lib/components/Image.svelte';
import { Tabs, TabList, TabPanel, Tab } from '$lib/components/tabs/tabs';
import CodeBlock from '$lib/components/CodeBlock.svelte';
import Admonition from '$lib/components/Admonition.svelte';
</script>

<Admonition type="note">

The FluCoMa package is now part of Max's native [Package Manager](https://docs.cycling74.com/userguide/package_manager/). This insures the latest public version of the package is installed, and therefore this is the recommended approach. The instructions below are for a manual installation.

</Admonition>

## Step 1: Download the Max Package

Download the latest version of the Max package from GitHub releases.
Expand Down Expand Up @@ -58,20 +63,6 @@ Now check that the installation worked.

2. Open <a href='/installation/max-install-test.maxpat' download='max-install-test.maxpat'>this patch</a>.

<Admonition type="danger">

Binaries compiled by us for macOS are signed and notarised. However, you might need to "dequarantine" them. The command below will recursively do this for you if you provide it the valid path to the FluCoMa package, which should be located in the Max packages folder.

<CodeBlock title='Dequarantine Instructions' snippet={true}>

```sh
xattr -d -r com.apple.quarantine <path_to_package>
```

</CodeBlock>

</Admonition>




Expand Down
24 changes: 7 additions & 17 deletions src/routes/(content)/installation/pd/+page.svx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ flair: article

<script>
import Image from '$lib/components/Image.svelte';
import CodeBlock from '$lib/components/CodeBlock.svelte';
import Admonition from '$lib/components/Admonition.svelte';
</script>

Expand All @@ -21,6 +20,12 @@ FluCoMa will only work with the 64-bit version of [Pure Data](https://puredata.i

</Admonition>

<Admonition type="note">

The FluCoMa package is now available through *deken*, PureData's native [Package Manager](https://deken.puredata.info/). This insures the latest public version of the package is installed, and therefore this is the recommended approach. The instructions below are for a manual installation.

</Admonition>

## Step 1: Download the Pure Data Package

Download the latest version of the Pure Data package from GitHub releases. Choose the appropriate release for your operating system.
Expand Down Expand Up @@ -78,19 +83,4 @@ Now check that the installation worked.

1. Restart Pure Data.

2. Open <a href='/installation/pd-install-test.pd' download='pd-install-test.pd'>this patch</a>.

<Admonition type="danger">

Binaries compiled by us for macOS are signed and notarised. However, you might need to "dequarantine" them. The command below will recursively do this for you if you provide it the valid path to the FluCoMa package, wherever that might be.

<CodeBlock title='Dequarantine Instructions' snippet={true}>

```sh
xattr -d -r com.apple.quarantine <path_to_package>
```

</CodeBlock>

</Admonition>

2. Open <a href='/installation/pd-install-test.pd' download='pd-install-test.pd'>this patch</a>.
17 changes: 1 addition & 16 deletions src/routes/(content)/installation/sc/+page.svx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ flair: article
<script>
import Image from '$lib/components/Image.svelte';
import CodeBlock from '$lib/components/CodeBlock.svelte';
import Admonition from '$lib/components/Admonition.svelte';
</script>

## Step 1: Download the FluCoMa SuperCollider Extension Package
Expand Down Expand Up @@ -57,18 +56,4 @@ s.waitForBoot({

</CodeBlock>

If this code block prints the version of the FluCoMa tools then it is installed correctly.

<Admonition type="danger">

Binaries compiled by us for macOS are signed and notarised. However, you might need to "dequarantine" them. The command below will recursively do this for you if you provide it the valid path to the FluCoMa package, wherever that might be.

<CodeBlock title='Dequarantine Instructions' snippet={true}>

```js
("xattr -d -r com.apple.quarantine"+Platform.userExtensionDir.quote++"/FluidCorpusManipulation/plugins").runInTerminal
```

</CodeBlock>

</Admonition>
If this code block prints the version of the FluCoMa tools then it is installed correctly.
Loading