Start version 0.28 packaging

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@2958 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2016-07-26 07:21:17 +00:00
parent 3cc8300ed6
commit 0c9847042b
3 changed files with 23 additions and 2 deletions

21
debian/changelog vendored
View File

@@ -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 <dominique@fournier38.fr> 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

View File

@@ -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

View File

@@ -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");