diff --git a/debian/changelog b/debian/changelog index 54e38cc..fac0bba 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,31 @@ +domframework (0.41-1) testing; urgency=low + + FEATURES ADDED: + * dblayeroo: add < and > comparisons + * dblayeroo: Add DISTINCT feature to displayAdd + * dblayeroo: Add IS NOT NULL operator to whereAdd + * form: Block the submit button to not allow Chrome/Edge to submit multiple + times in case of multiple clicks on slow server + + CORRECTED BUGS: + * getopts: substr in PHP7 has not the same result as PHP5. + * Add Exception if MB support is not available in PHP (External module in + PHP7) + * dblayeroo: whereAdd "IS NULL" : do not add the value as it doesn't exists + * dblayeroo: whereAddParenthesisOpen: Add automatically AND before if there is + no already defined operator + * dblayeroo: in GROUP_CONCAT, allow the Separator to be set (use sqlite + syntax, with a comma and the second optional parameter is the separator + string) + * dblayeroo: MySQL: push the group_concat_max_len to maximum allowed + * dblayeroo: Add alias support (AS) to displayAdd + * dblayeroo: UPDATE should not verify if the unique are not modified + * dblayeroo: Update of multiple not unique fields should not be an exception + * dblayeroo: if displayAdd is empty, remove all the previous defined displayed + columns + + -- Dominique Fournier Wed, 26 Jul 2017 09:42:25 +0200 + domframework (0.40-1) testing; urgency=low FEATURES ADDED: diff --git a/version.php b/version.php index 2014cd5..eb4ea84 100644 --- a/version.php +++ b/version.php @@ -11,4 +11,4 @@ if (!defined ("DOMFRAMEWORK_VERSION") || version_compare (DOMFRAMEWORK_VERSION, "0.6") < 0) die ("Your DomFramework version is too old : 0.6 minimum\n"); */ -define ("DOMFRAMEWORK_VERSION", "0.40"); +define ("DOMFRAMEWORK_VERSION", "0.41");