Quick links: Content - sections - sub sections
EN FR

Trace:

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
en:changelog:1.2rc1 [2010/10/24 08:10] laurenten:changelog:1.2rc1 [2011/03/26 14:01] laurent
Line 3: Line 3:
 ====== Jelix 1.2RC1 ====== ====== Jelix 1.2RC1 ======
  
-**Still in development**. This page is listing updates and enhancements added since 1.2b1 version, and that will be available for the future 1.version.+This page is listing updates and enhancements added since 1.2b1 version, and that will be available for the  1.2RC1 version.
  
 Changelog updated as of : [[http://bitbucket.org/jelix/jelix-trunk/changesets/4ca85f959988|4ca85f959988]] Changelog updated as of : [[http://bitbucket.org/jelix/jelix-trunk/changesets/4ca85f959988|4ca85f959988]]
Line 10: Line 10:
 ===== Main improvements ===== ===== Main improvements =====
  
 +    * better error handling in the startup of Jelix
 +    * many improvements and bug fixes in the new install system
 +    * improvements in jForms:
 +        * dynamic changes on dependencies of controls (with ajax)
 +        * better error reporting on client side
 +        * add support of CKEditor for the htmleditor control
 +        * support of regular expression in input controls
 +        * better error handling with uploads
 +    * update of some vendors librairies
 +    * little improvements in master_admin
  
 ===== Migrating from Jelix 1.1.x ===== ===== Migrating from Jelix 1.1.x =====
  
 Read [[en:manual-1.2:installation:migrate|the corresponding chapter]] in the manual of Jelix 1.2. Read [[en:manual-1.2:installation:migrate|the corresponding chapter]] in the manual of Jelix 1.2.
 +
 +===== Migrating from Jelix 1.2b1 =====
 +
 +API of installers has been improved. The "sessionid" system has been removed and replaced by some simplier functions like firstDbExec, firstConfExec and firstExec. You must use these functions instead of sessions id.
  
 ===== Details of changes ===== ===== Details of changes =====
  
-See list of details in [[en:changelog:1.2beta1|the changelog of 1.2beta1]]. Here are changes appeared since the release of 1.2 beta 1.+Here are changes appeared since the release of 1.2 beta 1.
  
 ==== Enhancements, new features ==== ==== Enhancements, new features ====
Line 25: Line 39:
         * jInstallerBase: improvements in copyDirectoryContent and copyFile, allowing overwriting files         * jInstallerBase: improvements in copyDirectoryContent and copyFile, allowing overwriting files
         * Support of parameters for installers         * Support of parameters for installers
-        * jInstaller: added the support of an option, skipinstaller, to skip an installer when needed+        * added the support of an option, skipinstaller, to skip an installer when needed
         * better error handling during the read of dependencies         * better error handling during the read of dependencies
         * sqlite script for installers of some modules         * sqlite script for installers of some modules
Line 43: Line 57:
         * Ticket #1186: new method jUrl::getFull, to retrieve an url with the domain name         * Ticket #1186: new method jUrl::getFull, to retrieve an url with the domain name
     * jforms     * jforms
-        * ticket #288: jforms, dynamic change of the content of a list when it is dependents to an other control+        * ticket #288: dynamic change of the content of a list when it is dependents to an other control
         * added line breaks in generated html code         * added line breaks in generated html code
         * refactored code of html builders         * refactored code of html builders
         * ctrl_control now accepts attribute to add on generated html elements         * ctrl_control now accepts attribute to add on generated html elements
         * new decorator for errors, it displays errors directly in the html instead of showing an alert. fixed also an issue with the validation of datetime         * new decorator for errors, it displays errors directly in the html instead of showing an alert. fixed also an issue with the validation of datetime
-        *  replaced the css star for required field by a star in html+        * replaced the css star for required field by a star in html
         * added support of CKEditor for htmleditor element. callback function for htmleditor init have now two additionnal parameters, skin and language.         * added support of CKEditor for htmleditor element. callback function for htmleditor init have now two additionnal parameters, skin and language.
         * ticket #1147: allowing to generate optgroup in menulist and listbox. datasource accept now grouped data.         * ticket #1147: allowing to generate optgroup in menulist and listbox. datasource accept now grouped data.
         * added localized labels on datepicker buttons         * added localized labels on datepicker buttons
-        * ticket #485: jforms, support of regular expression in input controls to check data+        * ticket #485: support of regular expression in input controls to check data
         * ticket #1094: javascript components of jforms should have the possibility to access to jelixWWWPath to have the true path of jelix/. these components receive a configuration object instead of several arguments.         * ticket #1094: javascript components of jforms should have the possibility to access to jelixWWWPath to have the true path of jelix/. these components receive a configuration object instead of several arguments.
     * jelix-www     * jelix-www
Line 105: Line 119:
         * ticket #1156: fixed some messages in the wizard/checker         * ticket #1156: fixed some messages in the wizard/checker
     * jForms     * jForms
-        * jForms: for wysiwyg editors, if the content has only html elements, no text, it should be considered empty and so the check should fail if a content is required +        * for wysiwyg editors, if the content has only html elements, no text, it should be considered empty and so the check should fail if a content is required 
-        * ticket #1149: jForms: in datasources, "0" labels or values are ignored+        * ticket #1149: in datasources, "0" labels or values are ignored
         * ticket #1154: jForms::clean may lead to an exception when having several entry points with several modules accesses         * ticket #1154: jForms::clean may lead to an exception when having several entry points with several modules accesses
         * ticket #1143: htmleditor with only img, video, object, should be considered as valid         * ticket #1143: htmleditor with only img, video, object, should be considered as valid
-        * ticket #1151: jforms, subelements of unselected choice should be marked as disabled instead of readonly. Added also a buton on datetime input to erase the value+        * ticket #1151: subelements of unselected choice should be marked as disabled instead of readonly. Added also a buton on datetime input to erase the value
         * Fixed bug on retrieving labels from a datasource in a form, when the datasource is a dao with criterias. New method jIFormsDatasource2::getLabel2.         * Fixed bug on retrieving labels from a datasource in a form, when the datasource is a dao with criterias. New method jIFormsDatasource2::getLabel2.
         * ticket #1039: use FileInfo instead of mime_content_type         * ticket #1039: use FileInfo instead of mime_content_type
-        * jForms: wrong variable used in jforms_jquery.js +        * wrong variable used in jforms_jquery.js 
-        * Fixed issued on error handling on upload controls in jforms+        * Fixed issued on error handling on upload controls
     * core     * core
         * ticket #1166 basePath was rewritten in a cli context whereas it shouldn't.         * ticket #1166 basePath was rewritten in a cli context whereas it shouldn't.

en/changelog/1.2rc1.txt · Last modified: 2012/04/15 08:26 by laurent

Recent changes RSS feed Creative Commons License