From 8fd5983e3089c5496a4b794e081c73153b7bd683 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Wed, 10 Sep 2014 10:02:30 +0000 Subject: [PATCH] Start version 0.8 packaging git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@1802 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- debian/changelog | 18 ++++++++++++++++++ debian/makePackageDebian | 3 ++- version.php | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 6522d6d..f3d1f66 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,21 @@ +domframework (0.8-1) testing; urgency=low + * renderer : See if the layout can be parsed too (modified for the + login/logout button, the selected menu in bootstrap) : + Add variables support to layout. All variable defined in $variable is + available in $XXX in the layout file. It can be used with php structures + * cli : do a bash-completion module to find the classes and the methods + * cli : add a trigger_error catch (display the errors in stderr) + * route : add permanent redirect support + * Markdown : add image support + * Markdown : Add more tests + * BUG : Markdown : remove http:// mandatory in links : can be relative ! + * BUG : Markdown : carriage return : missing space : see testCarriageReturn1 + * BUG : Markdown : emphasis : see testUnderscore + * BUG : Markdown : the mailto links don't have the // + * BUG : Markdown : Correct the OL/UL imbrication + * BUG : Markdown : error ### l'utilisateur -> should be title h3 + -- Dominique Fournier Wed, 10 Aug 2014 12:01:57 +0100 + domframework (0.7-1) testing; urgency=low * dblayer : Add dropTable support * Add multi-language support diff --git a/debian/makePackageDebian b/debian/makePackageDebian index 6181f72..f4c88f1 100755 --- a/debian/makePackageDebian +++ b/debian/makePackageDebian @@ -1,5 +1,6 @@ #!/bin/bash -x -VERSION="0.7" +# Think about changing the version.php file !! +VERSION="0.8" PACKAGE="domframework" rm -rf /tmp/${PACKAGE}pack mkdir /tmp/${PACKAGE}pack diff --git a/version.php b/version.php index a964b5f..54fe1f5 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.7"); +define ("DOMFRAMEWORK_VERSION", "0.8");