Skip to content
Snippets Groups Projects
Commit 533fab49 authored by Patrice ANDREANI's avatar Patrice ANDREANI
Browse files

Merge branch '2024_rc_fichiers' into '2024_rc'

2024 rc fichiers

See merge request dolibarr-extension/massupdaterights!13
parents 6a031469 ca17d844
No related branches found
No related tags found
No related merge requests found
{
"dlb_min_version": 14,
"dlb_max_version": 18,
"php_min_version": 7.1,
"php_max_version": 8.2
}
\ No newline at end of file
include:
- project: "opendsi/ci-templates"
file: "/dolibarr/module/main.yml"
\ No newline at end of file
......@@ -3,6 +3,9 @@ Le format du fichier est basé sur [Tenez un ChangeLog](http://keepachangelog.co
## [Non Distribué]
## [4.0.8] - 29-05-2024
- Ajout CI.
## [4.0.7] - 23-05-2024
- Changement de logo easya
......@@ -33,7 +36,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/massupdaterights/compare/v4.0.7...HEAD
[Non Distribué]: http://git.open-dsi.fr/dolibarr-extension/massupdaterights/compare/v4.0.8...HEAD
[4.0.8]: http://git.open-dsi.fr/dolibarr-extension/massupdaterights/commits/4.0.8
[4.0.7]: http://git.open-dsi.fr/dolibarr-extension/massupdaterights/commits/v4.0.7
[4.0.6]: http://git.open-dsi.fr/dolibarr-extension/massupdaterights/commits/v4.0.6
[4.0.5]: http://git.open-dsi.fr/dolibarr-extension/massupdaterights/commits/v4.0.5
......
4.0.7
\ No newline at end of file
4.0.8
\ No newline at end of file
......@@ -77,8 +77,12 @@ class modMassUpdateRights extends DolibarrModules
// Possible values for version are: 'development', 'experimental', 'dolibarr', 'dolibarr_deprecated' or a version string like 'x.y.z'
$this->version = file_get_contents(__DIR__.'/../../VERSION');
$this->url_last_version = 'https://git.open-dsi.fr/dolibarr-extension/'.strtolower($this->name).'/-/raw/2022.5.3/VERSION';
$this->url_last_version = 'https://git.open-dsi.fr/dolibarr-extension/'.strtolower($this->name).'/-/raw/2024/VERSION';
// Key used in llx_const table to save module status enabled/disabled (where MYMODULE is value of property name of module in uppercase)
$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->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
// Name of image file used for this module.
// If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue'
......
factory @ b37e7a7c
Subproject commit b37e7a7c2fb6f55c83f7db1d7e03c530aed982b6
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