diff --git a/debian/changelog b/debian/changelog index 3d35710..b7edd03 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,25 @@ +domframework (0.30-1) testing; urgency=low + * Add more debug for authentication + * ratelimitfile : raise an exception if the file already exists and is not + writeable by the webserver + * cli : go to the main directory in the constructor to allow configuration + reading + * file : copy can copy directory or files + * file : if file_exists is used, a missing parent directory doesn't + generate an exception + * file : add chown, chmod, chgrp support + * file : add flags support for file_put_contents + * authentication : manage correctely the routes (no trailling slash) + * authentication : when debugging, save the logs in file + * authhtpasswd : return the only detail available -> email + * auth : refresh the CSS to be more user friendly + * auth : better error message display (red, with round corners) + * route requestURL (true) in subdir invalid : + http://localhostiptables/ipv4/filter/INPUT (missing directory) + * form->values () : must overwrite readonly and hidden fields (the user + can modify them, but it is not allowed) + -- Dominique Fournier Tue, 06 Sep 2016 10:50:57 +0100 + domframework (0.29-1) testing; urgency=low * file : add scandirNotSorted function * cli : change the directory as soon as the cli object is created, allow to diff --git a/debian/makePackageDebian b/debian/makePackageDebian index 8a9c889..c21b143 100755 --- a/debian/makePackageDebian +++ b/debian/makePackageDebian @@ -1,6 +1,6 @@ #!/bin/bash -x # Think about changing the version.php file !! -VERSION="0.29" +VERSION="0.30" PACKAGE="domframework" rm -rf /tmp/${PACKAGE}pack mkdir /tmp/${PACKAGE}pack diff --git a/version.php b/version.php index bfa2b83..59d48dd 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.29"); +define ("DOMFRAMEWORK_VERSION", "0.30");