Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update iso2mesh version for ARM #727

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions toolbox/core/bst_plugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,10 @@

% === ANATOMY: ISO2MESH ===
PlugDesc(end+1) = GetStruct('iso2mesh');
PlugDesc(end).Version = '1.9.6';
PlugDesc(end).Version = 'github-master';
PlugDesc(end).Category = 'Anatomy';
PlugDesc(end).AutoUpdate = 1;
PlugDesc(end).URLzip = 'https://github.com/fangq/iso2mesh/releases/download/v1.9.6/iso2mesh-1.9.6-allinone.zip';
PlugDesc(end).URLzip = 'https://github.com/fangq/iso2mesh/archive/refs/heads/master.zip';
PlugDesc(end).URLinfo = 'http://iso2mesh.sourceforge.net';
PlugDesc(end).TestFile = 'iso2meshver.m';
PlugDesc(end).ReadmeFile = 'README.txt';
Expand Down Expand Up @@ -3172,5 +3172,5 @@ function SetProgressLogo(PlugDesc)
%% ===== NOT SUPPORTED APPLE SILICON =====
% Return list of plugins not supported on Apple silicon
function pluginNames = PluginsNotSupportAppleSilicon()
pluginNames = {'brain2mesh', 'duneuro', 'iso2mesh', 'mcxlab-cl', 'mcxlab-cuda', 'xdf'};
pluginNames = { 'duneuro', 'mcxlab-cl', 'mcxlab-cuda', 'xdf'};
end