Seem the latest version of brainstorm miss something when processing supported on apple silicon

Hi, I can not start the latest version of Brainstorm when I apply a fresh installation on a new mac. I found the PlugName does not exist when first running of brainstorm. Here is the change code, I add exist('PlugName','var')

    OsType = bst_get('OsType', 0);
    if strcmpi(OsType, 'mac64arm') && exist('PlugName','var') && ismember(PlugName, PluginsNotSupportAppleSilicon())
        errMsg = ['Plugin ', PlugDesc.Name ' is not supported on Apple silicon yet.'];
        return;
    end

Hi @zhangjb39, there was a bug in such update., fixed at: 9aa2bda
Please update you Brainstorm instance to get the bugfix.

1 Like

Thank you.