V4.2.9 - fixed crash when using Polish translation and corrected network data source fault display on main screen.

This commit is contained in:
Graham Jones
2024-06-10 20:17:07 +01:00
parent 28dc9eabb4
commit 7871de926c
5 changed files with 11 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
OpenSeizureDetector Android App - Change Log
============================================
V4.2.9 - fixed crash when using Polish translation.
V4.2.8 -
- Fixed crash in export data function when using european style comma based decimal separator.
- Added seizure probability bar graph from CCN algorithm

View File

@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:versionCode="142"
android:versionName="4.2.8">
android:versionCode="143"
android:versionName="4.2.9">
<!-- android:allowBackup="false" -->
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>

View File

@@ -141,6 +141,11 @@ public class FragmentCommon extends FragmentOsdBaseClass {
tv.setBackgroundColor(warnColour);
tv.setTextColor(warnTextColour);
}
if (mConnection.mSdServer.mSdData.alarmState == 7) {
tv.setText(R.string.NetFault);
tv.setBackgroundColor(warnColour);
tv.setTextColor(warnTextColour);
}
tv = (TextView) mRootView.findViewById(R.id.algsTv);

View File

@@ -2,9 +2,10 @@
<resources>
<string-array name="datasource_list">
<item>"Zegarek Garmin"</item>
<item>"Urządzenie Bluetooth"</item>
<item>"BangleJS (BLE)"</item>
<item>"PineTime (BLE2)"</item>
<item>"Zegarek Pebble"</item>
<item>"Czujnik w telefonie (dla testów)"</item>
<item>"Sieć (dla alarmów przez Wifi)"</item>
</string-array>
</resources>
</resources>

Binary file not shown.