Skip to content

Releases: bbalet/jorani

v0.1.3 Stable release

31 Oct 15:25
Compare
Choose a tag to compare

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

13 Oct 14:22
Compare
Choose a tag to compare

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

29 Sep 06:26
Compare
Choose a tag to compare

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

20 Sep 10:38
Compare
Choose a tag to compare

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

09 Jun 19:43
Compare
Choose a tag to compare
v0.1 beta Pre-release
Pre-release

All features are implemented. Application is available in French and English. User Acceptance Tests in progress before going live.

v0.1 alpha

22 May 17:52
Compare
Choose a tag to compare
v0.1 alpha Pre-release
Pre-release

Main features are includes into this pre-release. Testing is in progress, but v0.1 almost finnished.

Prototype 1

09 Apr 21:16
Compare
Choose a tag to compare
Prototype 1 Pre-release
Pre-release

Version stable enough for public demo and early load tests