From 3355d89c10e8874b2d53c9a1d7c95368fde2b247 Mon Sep 17 00:00:00 2001 From: AJ Keller Date: Tue, 27 Jun 2017 16:23:22 -0400 Subject: [PATCH 1/2] Update file type from .edf to .bdf --- CHANGELOG.md | 5 +++++ OpenBCI_GUI/DataLogging.pde | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3235f6..57d909d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 2.2.1 + +### Bug Fixes +* Addresses #121 - `.edf` incompatible changed ending to `.bdf` + # 2.2.0 ### Bug Fixes diff --git a/OpenBCI_GUI/DataLogging.pde b/OpenBCI_GUI/DataLogging.pde index 0fc4830..65269c5 100644 --- a/OpenBCI_GUI/DataLogging.pde +++ b/OpenBCI_GUI/DataLogging.pde @@ -940,9 +940,9 @@ public class OutputFile_BDF { * @returns {String} - A fully qualified name of an output file with `str`. */ private String getFileName(String s) { - String output = "SavedData"+System.getProperty("file.separator")+"OpenBCI-EDF-"; + String output = "SavedData"+System.getProperty("file.separator")+"OpenBCI-BDF-"; output += s; - output += ".edf"; + output += ".bdf"; return output; } From b709b672196598278502cf73ddc13653c928050d Mon Sep 17 00:00:00 2001 From: AJ Keller Date: Tue, 27 Jun 2017 16:24:15 -0400 Subject: [PATCH 2/2] Bump ver num --- OpenBCI_GUI/OpenBCI_GUI.pde | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenBCI_GUI/OpenBCI_GUI.pde b/OpenBCI_GUI/OpenBCI_GUI.pde index 5287bc1..1f3344b 100644 --- a/OpenBCI_GUI/OpenBCI_GUI.pde +++ b/OpenBCI_GUI/OpenBCI_GUI.pde @@ -978,7 +978,7 @@ void introAnimation() { textLeading(24); fill(31, 69, 110, transparency); textAlign(CENTER, CENTER); - text("OpenBCI GUI v2.2.0\nJune 2017", width/2, height/2 + width/9); + text("OpenBCI GUI v2.2.1\nJune 2017", width/2, height/2 + width/9); } //exit intro animation at t2 @@ -1038,4 +1038,4 @@ PVector getWindowLocation(String renderer) { } return l; } -//END OF CODE FOR FIXING WEIRD EXIT CRASH ISSUE -- 7/27/16 =========================== \ No newline at end of file +//END OF CODE FOR FIXING WEIRD EXIT CRASH ISSUE -- 7/27/16 ===========================