Releases: bbalet/jorani
v0.1.3 Stable release
There is no change in the database model, simply patch the PHP files (mind to save the config files).
Fixed issues:
- Typo in SQL script and optimization for mutual web hosting envs.
- Bug on server set up with CEST time (daylight saving) : leave duration wasn't correct.
Enhancements:
- UI Improvments for entitled days (update of number of days by Ajax).
- Forbid the deletion of a leave type in use
v0.1.2 Stable release
Enhancement:
- Authentication via LDAP, see : #7
Known Issue :
The calculation of a leave duration can be wrong if your server time is set to CET/CEST time and not UTC. You can patch function length() application/models/leaves_model.php by changing:
$startTimeStamp = strtotime($start);
$endTimeStamp = strtotime($end);
to:
$startTimeStamp = strtotime($start." UTC");
$endTimeStamp = strtotime($end." UTC");
V0.1.1 Stable release
We fixed an issue related to mod_security Apache module (this module blocks the JS script jquery.cookie) by renaming the name of the script.
We fixed problems of e-mail encoding in French (we now rely on PHPMailer).
E-mail settings are now into a separate config file.
No database update is needed.
Known issues :
If you run LMS with PHP 5.6 you'll get this notice message :
Severity: Notice
Message: Only variable references should be returned by reference
Filename: core/Common.php
Line Number: 257
LMS works fine but this message appears on every page. To solve this issue, the best way is to patch the line 257 of {lms path}/system/core/Common.php :
return $_config[0] =& $config;
With this code :
$_config[0] =& $config;
return $_config[0];
V0.1 Stable release
This is our first stable release ready for production.
Known issues :
This version of LMS has a problem on appache servers running mod_security (see: http://www.fixkb.com/2014/08/jquery-cookie-js-error-406-not-acceptable.html). This can cause the login form to fail. We are considering to rename the file jquery.cookie.js in order to pass the regular expression check of this security tool.
If you face this issue, try to add this rule into your .htaccess file or contact the administrator of the server:
<IfModule mod_security.c> SecRuleEngine Off SecFilterInheritance Off SecFilterEngine Off SecFilterScanPOST Off </IfModule>
v0.1 beta
v0.1 alpha
Main features are includes into this pre-release. Testing is in progress, but v0.1 almost finnished.
Prototype 1
Version stable enough for public demo and early load tests