Skip to content
Snippets Groups Projects
Commit 36a3adb4 authored by Thomas Negre's avatar Thomas Negre
Browse files

Merge branch '2024_rc_version' into '2024_rc'

fix correction version

See merge request !13
parents 6613d759 f0cc253f
No related branches found
No related tags found
2 merge requests!15merge 2024 rc dans 2024,!13fix correction version
Pipeline #2205 passed with warnings
......@@ -3,6 +3,9 @@ Le format du fichier est basé sur [Tenez un ChangeLog](http://keepachangelog.co
## [Non Distribué]
## [14.0.10] - 05-06-2024
- Correction version.
## [14.0.9] - 29-05-2024
- Ajout CI.
......@@ -50,7 +53,8 @@ Le format du fichier est basé sur [Tenez un ChangeLog](http://keepachangelog.co
## [4.0.0] - 06-09-2017
- Version initial.
[Non Distribué]: http://git.open-dsi.fr/dolibarr-extension/tasktoagenda/compare/14.0.9...HEAD
[Non Distribué]: http://git.open-dsi.fr/dolibarr-extension/tasktoagenda/compare/14.0.10...HEAD
[14.0.10]: http://git.open-dsi.fr/dolibarr-extension/tasktoagenda/commits/14.0.10
[14.0.9]: http://git.open-dsi.fr/dolibarr-extension/tasktoagenda/commits/14.0.9
[14.0.8]: http://git.open-dsi.fr/dolibarr-extension/tasktoagenda/commits/14.0.8
[14.0.7]: http://git.open-dsi.fr/dolibarr-extension/tasktoagenda/commits/14.0.7
......
14.0.9
\ No newline at end of file
14.0.10
\ No newline at end of file
......@@ -122,8 +122,11 @@ class modTaskToAgenda extends DolibarrModules
$this->depends = array(); // List of modules id that must be enabled if this module is enabled
$this->requiredby = array(); // List of modules id to disable if this one is disabled
$this->conflictwith = array(); // List of modules id this module is in conflict with
$this->phpmin = array(5, 0); // Minimum version of PHP required by module
$this->need_dolibarr_version = array(7, 0); // Minimum version of Dolibarr required by module
// $this->phpmin = array(5, 0); // Minimum version of PHP required by module
// $this->need_dolibarr_version = array(7, 0); // Minimum version of Dolibarr required by module
$easya_info = json_decode(file_get_contents(__DIR__.'/../../.easya_info.json'));
$this->phpmin = explode('.', $easya_info->php_min_version); // Minimum version of PHP required by module
$this->need_dolibarr_version = explode('.', $easya_info->dlb_min_version); // Minimum version of Dolibarr required by module
$this->langfiles = array("tasktoagenda@tasktoagenda", "opendsi@tasktoagenda");
$langs->load('tasktoagenda@tasktoagenda');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment