- changed version information
- added logging for time switches
This commit is contained in:
parent
00eb07914f
commit
afc07c5117
2 changed files with 4 additions and 1 deletions
|
@ -109,7 +109,7 @@ android {
|
||||||
targetSdkVersion 28
|
targetSdkVersion 28
|
||||||
multiDexEnabled true
|
multiDexEnabled true
|
||||||
versionCode 1500
|
versionCode 1500
|
||||||
version "omnipod-0.2-SNAPSHOT"
|
version "2.6-omnipod-0.2-SNAPSHOT"
|
||||||
buildConfigField "String", "VERSION", '"' + version + '"'
|
buildConfigField "String", "VERSION", '"' + version + '"'
|
||||||
buildConfigField "String", "DEV_VERSION", '"2.6-dev"'
|
buildConfigField "String", "DEV_VERSION", '"2.6-dev"'
|
||||||
buildConfigField "String", "BUILDVERSION", '"' + generateGitBuild() + '-' + generateDate() + '"'
|
buildConfigField "String", "BUILDVERSION", '"' + generateGitBuild() + '-' + generateDate() + '"'
|
||||||
|
|
|
@ -13,6 +13,7 @@ import info.nightscout.androidaps.MainApp;
|
||||||
import info.nightscout.androidaps.interfaces.PumpInterface;
|
import info.nightscout.androidaps.interfaces.PumpInterface;
|
||||||
import info.nightscout.androidaps.logging.L;
|
import info.nightscout.androidaps.logging.L;
|
||||||
import info.nightscout.androidaps.plugins.configBuilder.ConfigBuilderPlugin;
|
import info.nightscout.androidaps.plugins.configBuilder.ConfigBuilderPlugin;
|
||||||
|
import info.nightscout.androidaps.plugins.pump.omnipod.util.OmnipodUtil;
|
||||||
|
|
||||||
public class TimeDateOrTZChangeReceiver extends BroadcastReceiver {
|
public class TimeDateOrTZChangeReceiver extends BroadcastReceiver {
|
||||||
|
|
||||||
|
@ -26,6 +27,8 @@ public class TimeDateOrTZChangeReceiver extends BroadcastReceiver {
|
||||||
|
|
||||||
LOG.debug("Date, Time and/or TimeZone changed.");
|
LOG.debug("Date, Time and/or TimeZone changed.");
|
||||||
|
|
||||||
|
LOG.debug("TimeDateOrTZChangeReceiver::Intent::{}", OmnipodUtil.getGsonInstance().toJson(intent));
|
||||||
|
|
||||||
if (action != null && activePump != null) {
|
if (action != null && activePump != null) {
|
||||||
LOG.debug("Date, Time and/or TimeZone changed. Notifying pump driver.");
|
LOG.debug("Date, Time and/or TimeZone changed. Notifying pump driver.");
|
||||||
activePump.timeDateOrTimeZoneChanged();
|
activePump.timeDateOrTimeZoneChanged();
|
||||||
|
|
Loading…
Reference in a new issue