diff --git a/debian/changelog b/debian/changelog index 6892e9c..e76640f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,24 @@ +domframework (0.28-1) testing; urgency=low + * dblayer : check if the table name is defined before using it + * dblayer : check if the PDO Driver is installed in PHP before using it + * dblayer : allow read with null value + * dblayer : delete : raise a valid exception if the delete can't be done + * dblayer : return all the verify errors in the same shot• + * dblayer : allow to have external verifyOne and verifyAll functions + * dblayer : allow to define the hook functions in the specification of the + layer. Can be external ones. + * smtp : manage the dot on first column : double it before sending the email + * mail : add setSubject method + * mail : cut the long attachment filenames in headers with the correct + encoding + * mail : manage correctely the double-quotes in filenames + * language : Add a working cache management. No need to restart Apache after + upgrade of .mo files if a cache directory is available + * config : allow the defaults vals to be returned in array of arrays + * authsql : missing fields in db connection + * file : add rename and copy functions + -- Dominique Fournier Tue, 26 Jul 2016 08:22:57 +0100 + domframework (0.27-1) testing; urgency=low * outputhtml : add a timestamp after the internal resources when creating the page. Like this, when updating a script, image or css file, it is updated by diff --git a/debian/makePackageDebian b/debian/makePackageDebian index b4b90b1..93ecf2e 100755 --- a/debian/makePackageDebian +++ b/debian/makePackageDebian @@ -1,6 +1,6 @@ #!/bin/bash -x # Think about changing the version.php file !! -VERSION="0.27" +VERSION="0.28" PACKAGE="domframework" rm -rf /tmp/${PACKAGE}pack mkdir /tmp/${PACKAGE}pack diff --git a/version.php b/version.php index 06aeed1..b9d8d48 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.27"); +define ("DOMFRAMEWORK_VERSION", "0.28");