diff --git a/README.md b/README.md index 0258b21..03777e0 100644 --- a/README.md +++ b/README.md @@ -133,6 +133,8 @@ AqualinkD will be moving over to github hosted runners for compiling, currently NEED TO FIX NEXT THIS RELEASE. Panel = RS-2/6 Dual will not have spa on auto config. (fine after saving config and restart). +Need to fix SWG when it's set to 0, thinks it's off and can't change, if it states 0 need to be enable, if blank turn off. +Need to look at sub panel (combined panels) --> diff --git a/release/aqualinkd-arm64 b/release/aqualinkd-arm64 index 6005f44..2a42c13 100755 Binary files a/release/aqualinkd-arm64 and b/release/aqualinkd-arm64 differ diff --git a/release/aqualinkd-armhf b/release/aqualinkd-armhf index 8388d03..bf9f60b 100755 Binary files a/release/aqualinkd-armhf and b/release/aqualinkd-armhf differ diff --git a/source/pda_aq_programmer.c b/source/pda_aq_programmer.c index 7838f62..4fff9a3 100644 --- a/source/pda_aq_programmer.c +++ b/source/pda_aq_programmer.c @@ -1302,7 +1302,9 @@ bool set_PDA_numeric_field_value(struct aqualinkdata *aqdata, int val, int cur_v LOG(PDA_LOG,LOG_DEBUG, "set_PDA_numeric_field_value %s from %d to %d step %d\n", select_label, cur_val, val, step); if (select_label != NULL) { - if ( ! select_pda_menu_item(aqdata, select_label, false) ) { + //if ( ! select_pda_menu_item(aqdata, select_label, false) ) { + // Changed to loose for menu items that don't start at char position 1, like SWG message " SET TO 100%". + if ( ! select_pda_menu_item_loose(aqdata, select_label, false) ) { return false; } } diff --git a/source/version.h b/source/version.h index a6f22f0..6d2eb7f 100644 --- a/source/version.h +++ b/source/version.h @@ -4,5 +4,5 @@ #define AQUALINKD_SHORT_NAME "AqualinkD" // Use Magor . Minor . Patch -#define AQUALINKD_VERSION "3.0.3 (dev.2)" +#define AQUALINKD_VERSION "3.0.3 (dev.3)" \ No newline at end of file