Disabled repeat updating of data log manager screen so you can scroll right down the list of events without it jumping back to the start when it refreshes.

This commit is contained in:
Graham Jones
2022-08-06 19:22:46 +01:00
parent 7aba4835e0
commit 0ea3cd91f3
4 changed files with 6 additions and 5 deletions

View File

@@ -1,5 +1,6 @@
OpenSeizureDetector Android App - Change Log OpenSeizureDetector Android App - Change Log
============================================ ============================================
V4.0.7 - Improvements to Data Sharing data log manager screen
V4.0.6 - fixed issue with O2sat data not being recorded to database 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.

View File

@@ -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="102" android:versionCode="103"
android:versionName="4.0.6"> android:versionName="4.0.7">
<!-- 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" />

View File

@@ -345,7 +345,7 @@ public class LogManagerControlActivity extends AppCompatActivity {
// to save hammering the databases once the UI has been populated once. // to save hammering the databases once the UI has been populated once.
if (stopUpdating) { if (stopUpdating) {
stopUiTimer(); stopUiTimer();
startUiTimer(mUiTimerPeriodSlow); //startUiTimer(mUiTimerPeriodSlow);
} }
} //updateUi(); } //updateUi();

View File

@@ -3,8 +3,8 @@
<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.7 - imporovements to Data Sharing data log manager screen.
\nV4.0.4 \nV4.0.6 - First public relase with Data Sharing feature enabled.
- Introduced the &lt;b>Data Sharing&lt;/b> feature to allow users to share their seizure and false alarm data - Introduced the &lt;b>Data Sharing&lt;/b> feature to allow users to share their seizure and false alarm data
with researchers to help improve the system.&lt;br/> with researchers to help improve the system.&lt;br/>
- Fixed &lt;b>SMS Location Alerts&lt;/b> on Android V10+ (new permissions screens)&lt;br/> - Fixed &lt;b>SMS Location Alerts&lt;/b> on Android V10+ (new permissions screens)&lt;br/>