Start packaging for 0.51 version

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@4294 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2018-07-16 09:38:39 +00:00
parent 98d5a042fc
commit c64223a234

47
debian/changelog vendored
View File

@@ -1,3 +1,50 @@
domframework (0.51-1) testing; urgency=low
FEATURES ADDED:
* form : supports multiple forms on the same page
* form : add setters for fields
* form : The label is now optional
* form : add logging support for exceptions
* form : Add redirectIfError method to simplify the code in index files
$form = new \form ();
$values = $form->values ();
$errors = $spaceObj->verify ($values);
$form->redirectIfError ($values, $errors, $route, "/admin/space/");
$spaceuuid = $spaceObj->spaceCreateConceal ($values["spacename"]);
$route->redirect ("/admin/space/");
* form: add 'file' type to upload
* dblayeroo : Add support to natural sort in ORDER
* dblayeroo : allow to orderAdd on aliases too
* dblayeroo : listTables : sort the tables. Do not return the sqlite_sequence
table
* file : add fileinfoMimeType and filesize
* console : allow to print text and get textual data from user.
Manage correctely the Ctrl+W, Ctrl+U, Ctrl+L, Backspace and Delete keys,
Begin and End keys and the cursor move (with or without Ctrl).
Manage the history and the autocompletion with key up and down.
Allow to hide the requested text, like password.
Supports correctely the UTF-8 chars.
Allow to autocomplete with value+help message, or value only
Manage correctely the window size
When moving to an old history, keep the position of the cursor if the user
come back on the tmp stored entry
Add color support
Add bold and underline text support
* authentication: manage the session only if the authentication page is
required. Do not set a session cookie if the user don't need to be
authenticated
* authentication : Add X-Frame-Options "SAMEORIGIN" to authentication page
* language : do not set the cookie if it is not needed. Update it if it is
valid
* route : add setter/getter for debug param
CORRECTED BUGS:
* MAX(field) only -> SQL crash with GROUPBY without parameter
* dblayeroo : do not generate an error if a comma is provided to GROUP_CONCAT
* dblayeroo : Manage the GROUP_CONCAT in PgSQL without error of casting
-- Dominique Fournier <dominique@fournier38.fr> Mon, 16 Jul 2018 11:37:47 +0200
domframework (0.50-1) testing; urgency=low
FEATURES ADDED: