Changed default local data retention period to 7 days from 28 to reduce local database access times - work around for #63

This commit is contained in:
Graham Jones
2022-08-06 20:56:23 +01:00
parent e953887a4b
commit c8c62db447
2 changed files with 3 additions and 1 deletions

View File

@@ -4,6 +4,8 @@
- Removed automatic refresh of shared data events list (Issue #62) - Removed automatic refresh of shared data events list (Issue #62)
- Added option to include warnings in shared data events list (Issue #64) - Added option to include warnings in shared data events list (Issue #64)
- Added catch of NullPointerException in LogManager in case of network disruption (Issue #61) - Added catch of NullPointerException in LogManager in case of network disruption (Issue #61)
- Added 'demo mode' on main screen when phone data source selected and highighted it in warning colour (Issue #56)
- Changed default local data retention time to 7 days (from 28) - works around #63
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

@@ -21,7 +21,7 @@
android:summary="@string/AutoPruneDbSummary" android:summary="@string/AutoPruneDbSummary"
android:title="@string/AutoPruneDbTitle" /> android:title="@string/AutoPruneDbTitle" />
<EditTextPreference <EditTextPreference
android:defaultValue="28" android:defaultValue="7"
android:key="DataRetentionPeriod" android:key="DataRetentionPeriod"
android:summary="@string/dataRetentionPeriodSummary" android:summary="@string/dataRetentionPeriodSummary"
android:title="@string/dataRetentionPeriodTitle" /> android:title="@string/dataRetentionPeriodTitle" />