you can now donate with bitcoin or your bank card by clicking the piggy icon under the logo

  • Get the best VPN on the market with 66% Discount!
Software » Mac OSX
Sonic Charge Synplant 2 macOS U2B - pknr screenshot
About Synplant
Synplant takes a genetic twist on sound design by moving beyond traditional knob-twisting and dial-adjusting, emphasizing exploration and discovery. Here, your ears guide you through a forest of organic textures and evolving timbres.

Digging into the Genome
Whether you begin from a random seed, an existing patch, or a creation from Genopatch, Synplant offers many different ways to sculpt your sound. When you are ready to delve further into the core of your patch, you can crack open your sound seeds and modify their underlying genetic code.

true U2B, AU, VST3
Fixed Integrity Check & Parameter Linking

download from free file storage
click to show download links
download from any file hoster with just one LinkSnappy account
download from more than 100 file hosters at once with LinkSnappy.

comments

  Member 1.02.2024 9
+1
I did follow your guide but timebomb hit again. Do you have other solutions? It's not so comfortable to uninstall and re- install. Please can you help?
  Member 27.09.2024 3
0
yes after writing the reply, it indeed timebombed for me aswell in like a week. The only solution that worked, is when I asked chatgpt to write a script that checks for the two files upon logging in and then deletes them if they exist. Here's the tutorial chatgpt gave me:

To run a script automatically after logging into macOS (not just when opening a terminal), you can use launchd, which manages login-time processes. By creating a Launch Agent, the script will run every time you log in.

Step 1: Write the Script
Write a script that checks and deletes files as needed. For example, save it as delete_files.sh.

Sample Script (delete_files.sh):

#!/bin/bash

# File paths
FILE1="/path/to/your/first/file"
FILE2="/path/to/your/second/file"

# Check and delete files
if [[ -f "$FILE1" ]]; then
rm "$FILE1"
rm "$FILE2"
echo "Files deleted: $FILE1 and $FILE2"
fi


After saving, make the script executable by running:


chmod +x /path/to/delete_files.sh



Step 2: Create a plist File for launchd
To configure a Launch Agent, create a .plist file that tells launchd to run the script at login.

Open the ~/Library/LaunchAgents directory (create it if it doesn’t exist):

mkdir -p ~/Library/LaunchAgents


Create a new .plist file, for example, com.username.deletefiles.plist (replace username with your username):

nano ~/Library/LaunchAgents/com.username.deletefiles.plist


Enter the following configuration:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.username.deletefiles</string>

<key>ProgramArguments</key>
<array>
<string>/path/to/delete_files.sh</string>
</array>

<key>RunAtLoad</key>
<true/>
</dict>
</plist>



Make sure the /path/to/delete_files.sh reflects the actual path to your script.
Save and close the plist file.


Step 3: Load the Launch Agent
To enable this setup to run on login, load the plist file into launchd:


launchctl load ~/Library/LaunchAgents/com.username.deletefiles.plist


Now, the script will automatically run every time you log in. If you later want to stop it, you can unload the agent with:

launchctl unload ~/Library/LaunchAgents/com.username.deletefiles.plist


This setup will check for the specified files at each login and delete them if they exist.
  Member 3.06.2024 11
0
any fix for the time bombing yet?
tried most things on here still time bombing and sound fizzles out
not so comfortable running scripts but any chance for a updated release pnkr? <3
  Member 6.10.2023 4
+2
Huge news! thank you so much for this!
  Member 26.08.2015 252
+27
Similar to spyhunter98, my sound in Synplant 2 keeps fizzling out and fading away. Does anyone know of a solution for this?
  Member 27.09.2024 3
0
DELETE:
/Users/USERNAME/Library/Application Support/Sonic Charge/.scregistry

If the folder is hidden for you, press command+shift+dot (.)

It'll timebomb eventually, but you can work with this method indefinitely

You can even set the .scregistry file to read only (in the MacOS default menu or with BatChMod) but you'll be greeted with the introduction upon opening the plugin for the first time

Spread the Word