V3.0.3 dev3

pull/492/head v3.0.3-dev.3
sfeakes 2026-01-16 10:55:26 -06:00
parent acbbce2d1c
commit 475ea062a3
5 changed files with 6 additions and 2 deletions

View File

@ -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)
-->

Binary file not shown.

Binary file not shown.

View File

@ -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;
}
}

View File

@ -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)"