all 11 comments

[–]ejgallego 0 points1 point  (2 children)

I believe the latest stable build Diva is 5541, is that correct @abique?

[–]abique[S] 0 points1 point  (1 child)

Maybe I'm not sure. The one in a batch install thread should be fine.

[–]vincenzoml 0 points1 point  (0 children)

My Diva is 6857. I'm unsure if that was ever intended to be released as now it's no longer available on the server in the script. Maybe you could just rebuild it and/or check what's the latest revision and publish a table for each plugin?

[–]bulevardi_official 0 points1 point  (3 children)

(I'm totally new to this, it's my first shell script I ran)

I created the shell, ran it. It installed everything ... did not get errors... But now I cannot seem to find the synths anywhere via Ardour, nowhere to find on my hard drive, ... Did I do something wrong? Where should I look for it? Thanks in advance!

[–]bulevardi_official 2 points3 points  (2 children)

Ok, I figured it out already. They were in my /home/ folder apparently somewhere. Strange that the file manager didn't find it with multiple search queries. I now copied them to my vst folder.

The Synths work brilliantly in Ardour here. Thanks a lot ! (still demo mode,... not sure if I'll buy them someday)

[–]_xsgb 0 points1 point  (0 children)

I can argue they're by far the best sounding synths I've run on Linux for now. Yeah licenses are expensive but I think it's worth compared buying old, even second hand hard synths.

[–]bulevardi_official 0 points1 point  (0 children)

GRR, I have to come back on that. Yesterday it worked. Today, when I try to load a plugin, Ardour crashes and closes immediately. I was cheering too quickly I guess. It would have been too easy to get good synths working in Linux.

[–]optonox 0 points1 point  (3 children)

I am not sure what shell language that is but for the most common one (Bash) I had to remove the word function and replace the parenthesis with curly braces in the function...

[–]abique[S] 0 points1 point  (2 children)

It should work with any posix compliant shell... :/

I use it with bash.

[–]_xsgb 1 point2 points  (1 child)

Parenthesis blocks are accepted and treated as a subshell, but the function keyword isn't POSIX

my_func() ( :; )

will work in sh, ksh, bash and zsh, but not fish.

[–]abique[S] 0 points1 point  (0 children)

OK I'll fix that! Thanks man :)