From 7053a64a21e128ef3aa135f4f07921efaa74f099 Mon Sep 17 00:00:00 2001 From: Helge <47348963+HJZollner@users.noreply.github.com> Date: Thu, 7 Nov 2024 09:52:08 -0500 Subject: [PATCH 1/2] [BUG FIX] - Recent osp_combineCoils breaks compatibility with GE P-file loader (and presumably others) - Alex & Steve - remove index from string comparison as suggested by Alex --- process/osp_combineCoils.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process/osp_combineCoils.m b/process/osp_combineCoils.m index 21181123..d964104b 100644 --- a/process/osp_combineCoils.m +++ b/process/osp_combineCoils.m @@ -44,7 +44,7 @@ metab_ll = MRSCont.opts.MultipleSpectra.metab(ll); % For SPECIAL acquisitions, some of the sub-spectra need to be combined % prior to determining the CC coefficients. We'll set a flag here. - isSpecial = strcmpi(MRSCont.raw_uncomb{metab_ll,kk}.seq(1), 'special'); + isSpecial = strcmpi(MRSCont.raw_uncomb{metab_ll,kk}.seq, 'special'); MRSCont.flags.isSPECIAL = isSpecial; % Check if reference scans exist, if so, get CC coefficients from there if MRSCont.flags.hasRef From 2c47a4a50dd69ea9898fbfc3080b981f3df732a1 Mon Sep 17 00:00:00 2001 From: Helge <47348963+HJZollner@users.noreply.github.com> Date: Thu, 7 Nov 2024 09:52:35 -0500 Subject: [PATCH 2/2] Update version Update version --- settings/version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/version.json b/settings/version.json index 088a0edc..de026eca 100644 --- a/settings/version.json +++ b/settings/version.json @@ -1,3 +1,3 @@ -{"Version": "2.8.2", +{"Version": "2.8.3", "Date": "November 7, 2024", "Description": "First digit for major releases, second digit for regular compiled releases, third digit for each commit to the develop branch. "}