@Chazrox Yeah, my audio files are about 6mb and 25mb for images… So I’m not quite sure why they’re not embedding in the plug-in.
Could be related
@Chazrox Yeah, my audio files are about 6mb and 25mb for images… So I’m not quite sure why they’re not embedding in the plug-in.
Could be related
@Chazrox Having the same issue. Finding it super hard to build the installer for the audio resources.
Have you tried moving the audio resource in the pooled resources to the app data folder?
@d-healey Do the resource and the post install script need to be code signed? And both pkg?
@d-healey cool! Thanks heaps!
@d-healey Yeah XD
Question: if the audio resources are over the 50mb and you don’t embed audio files - I’m assuming you need to change the pkg installer so that it installs the resources to the app data folder?
Or does the hr1 also install them?
@d-healey Okay, it’s working now - creating the app data folder and link file… And that’s without the global app data checkbox enabled…
@d-healey yeah I have tried it.
I could try recompile without and test on another computer and recompile with on another computer… being careful cleaning the build folder maybe?
@d-healey I checked and nothing was created for the project.
I had the global app data checkbox checked (and tried unchecked)
@d-healey [Here's the video] (https://youtu.be/UikC9U2iAA4)
After successfully installing the hr1, I close and open a new instance of the plug in and the window appears again.
I've checked the version number and bundle identifier.
Even choosing the uncompressed audio files doesn't get rid of the window.
Any thoughts?
@Christoph-Hart Awesome,
Primarily interested in the accessibility side, but a little confused about delivering future expansions and whether or not I need to send expansions to NI for approval... - or if it's just the initial functionality/integration...
Is there any documentation on how to use the Engine.createNKSManager(); API?
Or does anyone know how to enable NKS support after getting access to the SDK?
I'm rebuilding HISE with HISE_INCLUDE_NKS_SDK=1
@d-healey Just for consistency really... The add expansions icon isn't the most intuitive, and I would rather have all and not some :D
Is there a way to set the tooltip info for preset browser icons like favourite / save etc?
@cassettedeath Scratch that
Incase anyone encounters the same issue I did, I used
var myPresetList = Engine.getUserPresetList();
const var RandomPreset = Content.getComponent("RandomPreset");
inline function onRandomPresetControl(component, value)
{
if(value)
{
// Get the current list of presets from disk
local presets = Engine.getUserPresetList();
if(presets.length > 0)
{
// Pick a random index
local index = Math.floor(Math.random() * presets.length);
// Load it by name with the .preset extension
Engine.loadUserPreset(presets[index] + ".preset");
}
else
{
Console.print("No user presets available.");
}
}
}
RandomPreset.setControlCallback(onRandomPresetControl);
@d-healey Seemingly working for me, although it’s trying to load old presets that I’ve deleted and showing an error.
Doesn’t seem to be a refresh or clear function…
Do you know which file I might be able to delete to clear the preset list?
I’ve tried cleaning the build directory