Fixed issue with O2sat data not being recorded to data sharing database - V4.0.6
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
OpenSeizureDetector Android App - Change Log
|
OpenSeizureDetector Android App - Change Log
|
||||||
============================================
|
============================================
|
||||||
|
V4.0.6 - fixed issue with O2sat data not being recorded to database
|
||||||
V4.0.5 - Added support for 3D data logging
|
V4.0.5 - Added support for 3D data logging
|
||||||
- Fixed issue with seizure reporting crashing if quotation marks included in text.
|
- Fixed issue with seizure reporting crashing if quotation marks included in text.
|
||||||
V4.0.4 - Added support for Data Sharing system
|
V4.0.4 - Added support for Data Sharing system
|
||||||
|
|||||||
Binary file not shown.
@@ -2,8 +2,8 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
package="uk.org.openseizuredetector"
|
package="uk.org.openseizuredetector"
|
||||||
android:versionCode="101"
|
android:versionCode="102"
|
||||||
android:versionName="4.0.5">
|
android:versionName="4.0.6">
|
||||||
<!-- android:allowBackup="false" -->
|
<!-- android:allowBackup="false" -->
|
||||||
<uses-permission android:name="android.permission.BLUETOOTH" />
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
||||||
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
||||||
|
|||||||
@@ -272,7 +272,7 @@ public abstract class SdDataSource {
|
|||||||
mSdData.mHR = -1;
|
mSdData.mHR = -1;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
mSdData.mO2Sat = dataObject.getDouble("O2Sat");
|
mSdData.mO2Sat = dataObject.getDouble("O2sat");
|
||||||
} catch (JSONException e) {
|
} catch (JSONException e) {
|
||||||
// if we get 'null' O2 Saturation (For example if the oxygen sensor is not working)
|
// if we get 'null' O2 Saturation (For example if the oxygen sensor is not working)
|
||||||
mSdData.mO2Sat = -1;
|
mSdData.mO2Sat = -1;
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
<string name="app_name">OpenSeizureDetector</string>
|
<string name="app_name">OpenSeizureDetector</string>
|
||||||
<string name="changelog">
|
<string name="changelog">
|
||||||
"\n
|
"\n
|
||||||
|
\nV4.0.5 - fixed issue with O2 saturation data not being recorded to data sharing database.
|
||||||
\nV4.0.4
|
\nV4.0.4
|
||||||
- Introduced the <b>Data Sharing</b> feature to allow users to share their seizure and false alarm data
|
- Introduced the <b>Data Sharing</b> feature to allow users to share their seizure and false alarm data
|
||||||
with researchers to help improve the system.<br/>
|
with researchers to help improve the system.<br/>
|
||||||
|
|||||||
Reference in New Issue
Block a user