This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "=== Floe Quarantine Removal (v2) ===" | |
| echo "This will remove quarantine from ALL files in the plugin bundles" | |
| echo "You may have to enter your user password. As you type your password it will be invisible. Press enter to submit." | |
| echo "" | |
| PLUGINS=( | |
| "/Library/Audio/Plug-Ins/Components/Floe.component" | |
| "/Library/Audio/Plug-Ins/VST3/Floe.vst3" | |
| "/Library/Audio/Plug-Ins/CLAP/Floe.clap" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "Removing quarantine from Floe plugins..." | |
| echo "You may have to enter your user password. As you type your password it will be invisible. Press enter to submit." | |
| sudo xattr -r -d com.apple.quarantine /Library/Audio/Plug-Ins/Components/Floe.component | |
| sudo xattr -r -d com.apple.quarantine /Library/Audio/Plug-Ins/VST3/Floe.vst3 | |
| sudo xattr -r -d com.apple.quarantine /Library/Audio/Plug-Ins/CLAP/Floe.clap | |
| echo "Done!" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "" | |
| echo "Starting Floe plugin diagnostics..." | |
| echo "This will take about a minute. Please wait..." | |
| echo "" | |
| # Capture all output to a variable | |
| output=$(cat <<'EOF_DIAGNOSTICS' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This code can now be found in Floe | |
| // https://github.com/Floe-Synth/Floe/blob/main/src/utils/thread_extra/atomic_ref_list.hpp |