Upload vst3 in the interface
-
@d-healey OK, I see now. But I can't replace the vst3 file during use to make auto update. it will crash right?
-
@Abyss the system won't let you do that. ('file already used by another program'). The only way would be to use a custom plugin download manager and notify the user when an update is available.
-
@Matt_SF thank your for the help. So if I code a cross platform app, which replaces the vst3 program with the new versions, it will work? (Will the vst still be recognizable by the DAW?)
-
@Abyss yes, it doesn't matter who downloads the new version : the user or the app. The result will be the same, the old plugin will be overwritten by the new one. You'll have to take into account the file/folder permissions though.
-
@Matt_SF I have a question about it : if my instrument is exported in VST3, will it be possible to change specific files whithout the user having to download the whole plugin again ? (like adding samples maps and changing scripts). Because my project size might be around 25Gb. Thank you.
-
@Abyss adding samples / sample-maps would be possible but not scripts. Scripts are part of your plugin so adding new features for example is not possible without recompiling it.
-
@Abyss use Expansions.
-
@Matt_SF OK thanks
-
@Lindon Like which one?
-
-
-
@Abyss said in Upload vst3 in the interface:
@Matt_SF @Lindon it's very usefull. And do the extensions also have to be installed via an external app, or can they be added directly from the vst3 interface?
you need to build your own installer...I built mine in HISE, not too hard I think.
-
@Abyss expansions can be added from within the plugin. But you still can't add new scripts because these have to be compiled into the plugin.
-
@d-healey said in Upload vst3 in the interface:
@Abyss expansions can be added from within the plugin......
But you would need to write the code (either in an installer or in the plugin ) to do this - there is no default installer like there is for samples...