Toob Flanger, Stereo Reverb, bug fixes
- support state in factory presets. - Use uncompressed json for settings files. - Set current plugin preset name to last loaded plugin preset. - Append plugins after start node, before end node fixed. - Correctly release web socket when web app goes idle. - Fit and finish issues.
This commit is contained in:
@@ -121,6 +121,7 @@ Lv2PluginState StateInterface::Save()
|
||||
features);
|
||||
CheckState(status);
|
||||
CheckState(callState.status);
|
||||
callState.state.isValid_ = true;
|
||||
}
|
||||
catch (const std::exception &e)
|
||||
{
|
||||
@@ -130,6 +131,10 @@ Lv2PluginState StateInterface::Save()
|
||||
return std::move(callState.state);
|
||||
}
|
||||
|
||||
void StateInterface::RestoreState(LilvState*pLv2State)
|
||||
{
|
||||
lilv_state_restore(pLv2State,this->pInstance,nullptr,nullptr,LV2_STATE_IS_POD,&(features[0]));
|
||||
}
|
||||
void StateInterface::Restore(const Lv2PluginState &state)
|
||||
{
|
||||
RestoreCallState callState;
|
||||
|
||||
Reference in New Issue
Block a user