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

Already on GitHub? Sign in to your account

Update file type from .edf to .bdf #169

Merged
merged 2 commits into from Jun 27, 2017
Jump to file or symbol
Failed to load files and symbols.
+9 −4
Split
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;
}
@@ -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 ===========================
+//END OF CODE FOR FIXING WEIRD EXIT CRASH ISSUE -- 7/27/16 ===========================