diff --git a/CHANGES.md b/CHANGES.md index 1c6830f..c8fc642 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ # Changelog -## Version 5.0.03 de Deltacms +## Version 5.1.00 de Deltacms - Modifications : - Modules Blog 7.0 / Form 6.0 / News 5.0 / Agenda 7.1 / Statislite 5.0 : Pour alléger le fichier module.json commun à l'ensemble des modules, certaines données de module de page sont enregistrées dans des fichiers json distincts, diff --git a/README.md b/README.md index 335c0f1..2c2881d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# DeltaCMS 5.0.03 +# DeltaCMS 5.1.00 DeltaCMS est un CMS sans base de données (flat-file) qui permet de créer et gérer facilement un site web sans aucune connaissance en programmation. L'administration du site est trilingue espagnol (castillan), anglais ou français, le site peut être rédigé dans une langue quelconque. diff --git a/core/core.php b/core/core.php index 2648b9c..6aa35b7 100644 --- a/core/core.php +++ b/core/core.php @@ -52,7 +52,7 @@ class common { // Numéro de version const DELTA_UPDATE_URL = 'https://update.deltacms.fr/master/'; - const DELTA_VERSION = '5.0.03'; + const DELTA_VERSION = '5.1.00'; const DELTA_UPDATE_CHANNEL = "v5"; public static $actions = []; diff --git a/core/include/update.inc.php b/core/include/update.inc.php index 6457c5b..6b4d396 100644 --- a/core/include/update.inc.php +++ b/core/include/update.inc.php @@ -218,4 +218,7 @@ if ($this->getData(['core', 'dataVersion']) < 5003) { $this->setData(['locale', 'questionnaireAccept', $text['core_config_view']['locale'][62]]); $this->setData(['core', 'dataVersion', 5003]); } +if ($this->getData(['core', 'dataVersion']) < 5100) { + $this->setData(['core', 'dataVersion', 5100]); +} ?> diff --git a/core/module/install/ressource/defaultdata.php b/core/module/install/ressource/defaultdata.php index ee32d44..a0b2d15 100644 --- a/core/module/install/ressource/defaultdata.php +++ b/core/module/install/ressource/defaultdata.php @@ -76,7 +76,7 @@ class init extends common { ] ], 'core' => [ - 'dataVersion' => 5003, + 'dataVersion' => 5100, 'lastBackup' => 0, 'lastClearTmp' => 0, 'lastAutoUpdate' => 0,