From 9493e5a1db3be24ad82eaf3bd0982e7451861c52 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Wed, 13 May 2015 13:43:42 +0000 Subject: [PATCH] Package the 0.17 version git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@2173 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- debian/changelog | 9 +++++++++ debian/makePackageDebian | 2 +- version.php | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 8075808..48a3c42 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +domframework (0.17-1) testing; urgency=low + * route : the redirect can be done outside the site, with a warning + * logger : allow the types of log to be a string or already an array + * config : add the '@prefix' support + * form : add the cols,rows for fields + * form : the fields are now extendable (to add new types by extends the class) + * outputtxt : allow the titles to be longer than the datas, without error + -- Dominique Fournier Wed, 13 May 2015 15:41:57 +0100 + domframework (0.16-1) testing; urgency=low * route : requestURL wrong if the URL is at the base of the Web server * route : correct the routing if the mod_rewrite is disabled diff --git a/debian/makePackageDebian b/debian/makePackageDebian index be51a95..9507971 100755 --- a/debian/makePackageDebian +++ b/debian/makePackageDebian @@ -1,6 +1,6 @@ #!/bin/bash -x # Think about changing the version.php file !! -VERSION="0.16" +VERSION="0.17" PACKAGE="domframework" rm -rf /tmp/${PACKAGE}pack mkdir /tmp/${PACKAGE}pack diff --git a/version.php b/version.php index b34cfff..4b8c648 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.16"); +define ("DOMFRAMEWORK_VERSION", "0.17");