Permalink
Browse files

Update file type from .edf to .bdf

  • Loading branch information...
1 parent 0b30e21 commit 3355d89c10e8874b2d53c9a1d7c95368fde2b247 @aj-ptw aj-ptw committed Jun 27, 2017
Showing with 7 additions and 2 deletions.
  1. +5 −0 CHANGELOG.md
  2. +2 −2 OpenBCI_GUI/DataLogging.pde
View
@@ -1,3 +1,8 @@
+# 2.2.1
+
+### Bug Fixes
+* Addresses #121 - `.edf` incompatible changed ending to `.bdf`
+
# 2.2.0
### Bug Fixes
@@ -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;
}

0 comments on commit 3355d89

Please sign in to comment.