diff --git a/changelog.md b/changelog.md index 73cf58a..6a28258 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,8 @@ +# Version 1.3.1 + +- Fixed an issue where the fOLD files were not included in the Windows version. Fixes [Issue 60](https://git.research.dezeeuw.ca/tyler/flares/issues/60) + + # Version 1.3.0 - This is a save-changing release due to a new save file format. Please update your project files to ensure compatibility @@ -6,7 +11,6 @@ - Fixed part of an issue where memory could increase over time despite clicking the clear button. There is still some edge cases where this can occur - Fixed an issue when clearing a bubble, reloading the same file, and clicking it would cause the app to crash. Fixes [Issue 57](https://git.research.dezeeuw.ca/tyler/flares/issues/57) - Picking a .txt or .xlsx file now has both in the same file selection instead of having to select which extension was desired -- Fixed an issue where the fOLD files were not included in the Windows version. Fixes [Issue 60](https://git.research.dezeeuw.ca/tyler/flares/issues/60) - Added a new parameter to the right side of the screen: EPOCH_EVENTS_HANDLING. Fixes [Issue 58](https://git.research.dezeeuw.ca/tyler/flares/issues/58) - EPOCH_EVENTS_HANDLING defaults to 'shift' compared to previous versions where the default would have been equivalent to 'strict' - The label for ENHANCE_NEGATIVE_CORRELATION no longer gets cut off by its dropdown selection diff --git a/flares.py b/flares.py index f9e2a06..7a43581 100644 --- a/flares.py +++ b/flares.py @@ -1676,7 +1676,7 @@ def fold_channels(raw: BaseRaw) -> None: # Locate the fOLD excel files if getattr(sys, 'frozen', False): - set_config('MNE_NIRS_FOLD_PATH', resource_path("../../mne_data/fOLD/fOLD-public-master/Supplementary")) # type: ignore + set_config('MNE_NIRS_FOLD_PATH', resource_path("/mne_data/fOLD/fOLD-public-master/Supplementary")) # type: ignore else: path = os.path.expanduser("~") + "/mne_data/fOLD/fOLD-public-master/Supplementary" set_config('MNE_NIRS_FOLD_PATH', resource_path(path)) # type: ignore