From 2504f0f1209c02caf9b45d822120c87433238285 Mon Sep 17 00:00:00 2001 From: Nicolas Domenech Date: Fri, 27 Sep 2024 11:17:34 +0200 Subject: [PATCH] #299 [Mod] add: new version number 1.2.0 --- README.md | 6 +++--- core/modules/modDoliCar.class.php | 4 ++-- .../interface_99_modDoliCar_DoliCarTriggers.class.php | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index be0e8e7..8dd11dd 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ## Informations - Numéro du module : 436380 -- Dernière mise à jour : 17/07/2023 +- Dernière mise à jour : 27/09/2023 - Éditeur : [Evarisk](https://evarisk.com) - Thème : Eldy Menu - Licence : GPLv3 @@ -13,8 +13,8 @@ - Version : 1.2.0 - PHP : 7.4.33 -- Compatibilité : Dolibarr 16.0.0 - 20.0.0 -- Saturne Framework : 1.5.1 +- Compatibilité : Dolibarr 19.0.0 - 20.0.0 +- Saturne Framework : 1.6.1 ## Liens diff --git a/core/modules/modDoliCar.class.php b/core/modules/modDoliCar.class.php index 12607ed..d397627 100644 --- a/core/modules/modDoliCar.class.php +++ b/core/modules/modDoliCar.class.php @@ -78,7 +78,7 @@ public function __construct($db) $this->editor_url = 'https://www.evarisk.com'; // Possible values for version are: 'development', 'experimental', 'dolibarr', 'dolibarr_deprecated' or a version string like 'x.y.z' - $this->version = '1.1.1'; + $this->version = '1.2.0'; // Url to the file with your last numberversion of this module //$this->url_last_version = 'http://www.example.com/versionmodule.txt'; @@ -158,7 +158,7 @@ public function __construct($db) // Prerequisites $this->phpmin = [7, 4]; // Minimum version of PHP required by module - $this->need_dolibarr_version = [16, 0]; // Minimum version of Dolibarr required by module + $this->need_dolibarr_version = [19, 0]; // Minimum version of Dolibarr required by module // Messages at activation $this->warnings_activation = []; // Warning to show when we activate module. array('always'='text') or array('FR'='textfr','MX'='textmx'...) diff --git a/core/triggers/interface_99_modDoliCar_DoliCarTriggers.class.php b/core/triggers/interface_99_modDoliCar_DoliCarTriggers.class.php index f0acd09..50827a7 100644 --- a/core/triggers/interface_99_modDoliCar_DoliCarTriggers.class.php +++ b/core/triggers/interface_99_modDoliCar_DoliCarTriggers.class.php @@ -46,7 +46,7 @@ public function __construct(DoliDB $db) $this->name = preg_replace('/^Interface/i', '', get_class($this)); $this->family = "demo"; $this->description = 'DoliCar triggers.'; - $this->version = '1.1.1'; + $this->version = '1.2.0'; $this->picto = 'dolicar@dolicar'; }