Expansion Installation Issue
-
@casey-kolb said in Expansion Installation Issue:
I've been zipping the hr1
Seems redundant, like putting a zip file in a zip file.
-
@d-healey Yeah, but Macs at least know what a zip file is when you're downloading. It does seem safer, especially considering that things can get corrupted if they're not zipped, and if you're using Dropbox or other platforms to share with beta testers.
-
Not sure if they're related but a Windows user just informed me that the expansion installer gets stuck at 0% for them... Master branch
-
@iamlamprey Unrelated I think, test on develop branch
-
@d-healey Yeh it was unrelated, just following up here in case someone else has something similar happen -> run Ableton as an Admin :)
-
Ok so after testing this and code signing / notarizing my apps and installers, this is still an issue I can't resolve. It won't install expansions on certain Macs unless the Samples folder has Write permissions for "Everyone", even if I use
setReadOnly(false)
for the Samples folder.@Christoph-Hart Any thoughts on this?
-
@Casey-Kolb I have users getting stuck on the install too, across Win and Mac... Did you get to the bottom of this? I can't recreate the problems here so its super tricky to know what's going wrong!
-
@DanH Yes, we figured out that you need to install the samples to the default Expansions folder within the AppData folder to ensure your plugin has the right permissions for unpacking the samples. Basically, your plugin won't be able to write to a lot of directories on the OS because the folders may be read-only for the plugin. I'd recommend not even giving the user a choice for where to install the samples, and if they need to move the samples, they can always move them to their samples folder manually.
-
@Casey-Kolb great, thanks for letting me know! Did you run the install within the plugin or with a .pkg?
And no problems on Windows then?
-
@DanH It's currently installed within the plugin, but honestly a .pkg makes a lot more sense. We do have license keys for expansions though, so it's a bit tricky. It would certainly be faster with a .pkg file
-
Might be relevant to this thread...
I've just added a
File.hasWriteAccess()
script wrapper function so you can verify if a directory selected by the user is writable and prompt them for another location if it isn't.