V3.1.4 - Added repeat beep during SMS send delay.

This commit is contained in:
Graham Jones
2019-04-25 21:59:21 +01:00
parent fc24f4d000
commit 85d6d94f73
6 changed files with 12 additions and 7 deletions

View File

@@ -4,6 +4,9 @@
V3.2.0 - (NEXT VERSION!)
- Added neural network based data analysis.
V3.1.4 - 25apr2019
- Added a periodic 'Beep' during the SMS timer to alert the user that an SMS is about to be sent.
V3.1.3 - 22apr2019
- Moved the SmsTimer creation to the UI thread to avoid a ...looper.prepare() error.

Binary file not shown.

View File

@@ -1 +1 @@
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":57,"versionName":"3.1.3","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":58,"versionName":"3.1.4","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]

View File

@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="uk.org.openseizuredetector"
android:versionCode="57"
android:versionName="3.1.3"
android:versionCode="58"
android:versionName="3.1.4"
>
<!--android:allowBackup="false"-->

View File

@@ -1141,9 +1141,9 @@ public class SdServer extends Service implements SdDataReceiver {
@Override
public void onTick(long timeRemaining) {
Log.v(TAG, "SmsTimer.onTick() - time remaining = " + timeRemaining / 1000 + " sec");
// FIXME - Update the alert dialog to show the time remaining, and beep.
// alertDialog.setMessage("SMS Will be sent in "+ (timeRemaining/1000)+" s unless Cancel Button is Pressed First.");
// The MainActivity screen picks up mTimeLeft to update the screen.
mTimeLeft = timeRemaining;
alarmBeep();
}
/**

View File

@@ -502,7 +502,8 @@ public class StartupActivity extends Activity {
+ "so I can get in touch if necessary.\nThank you! Graham \ngraham@openseizuredetector.org.uk "
+ "\n\nChanges in this version:"
+ "\n- V3.1.0 - Added fall detection algorithm into Garmin/Fitbit Data Source "
+ "\n ."
+ "\n V3.1.3 - Added delay to SMS sending to give the user chance to cancel a false alarm."
+ "\n V3.1.4 - Added repeat alarm beeps during SMS delay to alert user.."
);
// This makes the links display as links, but they do not respond to clicks for some reason...
Linkify.addLinks(s, Linkify.ALL);
@@ -533,7 +534,8 @@ public class StartupActivity extends Activity {
+ "so I can get in touch if necessary.\nThank you! Graham \ngraham@openseizuredetector.org.uk "
+ "\n\nChanges in this version:"
+ "\n- V3.1.0 - Added fall detection algorithm into Garmin/Fitbit Data Source "
+ "\n "
+ "\n V3.1.3 - Added delay to SMS sending to give the user chance to cancel a false alarm."
+ "\n V3.1.4 - Added repeat alarm beeps during SMS delay to alert user.."
+ "\n "
);
// This makes the links display as links, but they do not respond to clicks for some reason...