diff --git a/CHANGES.md b/CHANGES.md index 095d616..8c4b932 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Changelog +## Version 3.2.04 de Deltacms +- Correction : + - polices : noms à la place des clefs dans les différents thèmes livrés + ## Version 3.2.03 de Deltacms - Modifications : - polices : suppression des doublons @open-face dans theme.css diff --git a/README.md b/README.md index b731e77..8c752dd 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# DeltaCMS 3.2.03 +# DeltaCMS 3.2.04 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. diff --git a/core/core.php b/core/core.php index 4ce9192..3549065 100644 --- a/core/core.php +++ b/core/core.php @@ -48,7 +48,7 @@ class common { // Numéro de version const DELTA_UPDATE_URL = 'https://update.deltacms.fr/master/'; - const DELTA_VERSION = '3.2.03'; + const DELTA_VERSION = '3.2.04'; const DELTA_UPDATE_CHANNEL = "v3"; public static $actions = []; diff --git a/core/include/update.inc.php b/core/include/update.inc.php index fdb4207..adef8fc 100644 --- a/core/include/update.inc.php +++ b/core/include/update.inc.php @@ -10,9 +10,9 @@ if ($this->getData(['core', 'dataVersion']) < 3202) { if (file_exists(self::DATA_DIR . '/theme.css')) unlink (self::DATA_DIR . '/theme.css'); $this->setData(['core', 'dataVersion', 3202]); } -if ($this->getData(['core', 'dataVersion']) < 3203) { +if ($this->getData(['core', 'dataVersion']) < 3204) { // Mise à jour - $this->setData(['core', 'dataVersion', 3203]); + $this->setData(['core', 'dataVersion', 3204]); } ?> diff --git a/core/module/install/ressource/defaultdata.php b/core/module/install/ressource/defaultdata.php index 2b2bbbd..5944556 100644 --- a/core/module/install/ressource/defaultdata.php +++ b/core/module/install/ressource/defaultdata.php @@ -55,7 +55,7 @@ class init extends common { ] ], 'core' => [ - 'dataVersion' => 3203, + 'dataVersion' => 3204, 'lastBackup' => 0, 'lastClearTmp' => 0, 'lastAutoUpdate' => 0, @@ -275,7 +275,7 @@ class init extends common { ], 'footer' => [ 'backgroundColor' => 'rgba(255, 255, 255, 1)', - 'font' => 'roboto', + 'font' => 'Roboto', 'fontSize' => '1em', 'fontWeight' => 'normal', 'height' => '5px', @@ -302,7 +302,7 @@ class init extends common { ], 'header' => [ 'backgroundColor' => 'rgba(32, 59, 82, 1)', - 'font' => 'liberation-sans', + 'font' => 'Liberation Sans', 'fontSize' => '2em', 'fontWeight' => 'normal', 'height' => '200px', @@ -325,7 +325,7 @@ class init extends common { 'menu' => [ 'backgroundColor' => 'rgba(32, 59, 82, 0.85)', 'backgroundColorSub' => 'rgba(32, 59, 82, 1)', - 'font' => 'roboto', + 'font' => 'Roboto', 'fontSize' => '1.1em', 'fontWeight' => 'normal', 'height' => '15px 10px', @@ -359,13 +359,13 @@ class init extends common { 'blockBorderShadow' => '3px 3px 6px', ], 'text' => [ - 'font' => 'roboto', + 'font' => 'Roboto', 'fontSize' => '15px', 'textColor' => 'rgba(33, 34, 35, 1)', 'linkColor' => 'rgba(74, 105, 189, 1)' ], 'title' => [ - 'font' => 'liberation-sans', + 'font' => 'Liberation Sans', 'fontWeight' => 'normal', 'textColor' => 'rgba(74, 105, 189, 1)', 'textTransform' => 'none' @@ -377,9 +377,9 @@ class init extends common { ], 'admin' => [ 'backgroundColor' => 'rgba(255, 255, 255, 1)', - 'fontText' => 'roboto', + 'fontText' => 'Roboto', 'fontSize' => '13px', - 'fontTitle' => 'liberation-sans', + 'fontTitle' => 'Liberation Sans', 'colorText' => 'rgba(33, 34, 35, 1)', 'colorTitle' => 'rgba(74, 105, 189, 1)', 'backgroundColorButton' => 'rgba(74, 105, 189, 1)', diff --git a/core/module/install/ressource/themes/theme_default.zip b/core/module/install/ressource/themes/theme_default.zip index de45dca..0e04a2c 100644 Binary files a/core/module/install/ressource/themes/theme_default.zip and b/core/module/install/ressource/themes/theme_default.zip differ diff --git a/core/module/install/ressource/themes/theme_hirondelles_960px.zip b/core/module/install/ressource/themes/theme_hirondelles_960px.zip index 849ca79..e86352f 100644 Binary files a/core/module/install/ressource/themes/theme_hirondelles_960px.zip and b/core/module/install/ressource/themes/theme_hirondelles_960px.zip differ diff --git a/core/module/install/ressource/themes/theme_montagne_960px.zip b/core/module/install/ressource/themes/theme_montagne_960px.zip index 2a86d6e..4e0921c 100644 Binary files a/core/module/install/ressource/themes/theme_montagne_960px.zip and b/core/module/install/ressource/themes/theme_montagne_960px.zip differ diff --git a/core/module/install/ressource/themes/theme_sansbanniere_fluide.zip b/core/module/install/ressource/themes/theme_sansbanniere_fluide.zip index 0596951..fce41fa 100644 Binary files a/core/module/install/ressource/themes/theme_sansbanniere_fluide.zip and b/core/module/install/ressource/themes/theme_sansbanniere_fluide.zip differ