Correction nom /clef

This commit is contained in:
Deltacms 2022-02-17 09:17:36 +01:00
parent 00872afcf0
commit 040e81756f
9 changed files with 16 additions and 12 deletions

View File

@ -1,5 +1,9 @@
# Changelog # 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 ## Version 3.2.03 de Deltacms
- Modifications : - Modifications :
- polices : suppression des doublons @open-face dans theme.css - polices : suppression des doublons @open-face dans theme.css

View File

@ -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. 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.

View File

@ -48,7 +48,7 @@ class common {
// Numéro de version // Numéro de version
const DELTA_UPDATE_URL = 'https://update.deltacms.fr/master/'; 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"; const DELTA_UPDATE_CHANNEL = "v3";
public static $actions = []; public static $actions = [];

View File

@ -10,9 +10,9 @@ if ($this->getData(['core', 'dataVersion']) < 3202) {
if (file_exists(self::DATA_DIR . '/theme.css')) unlink (self::DATA_DIR . '/theme.css'); if (file_exists(self::DATA_DIR . '/theme.css')) unlink (self::DATA_DIR . '/theme.css');
$this->setData(['core', 'dataVersion', 3202]); $this->setData(['core', 'dataVersion', 3202]);
} }
if ($this->getData(['core', 'dataVersion']) < 3203) { if ($this->getData(['core', 'dataVersion']) < 3204) {
// Mise à jour // Mise à jour
$this->setData(['core', 'dataVersion', 3203]); $this->setData(['core', 'dataVersion', 3204]);
} }
?> ?>

View File

@ -55,7 +55,7 @@ class init extends common {
] ]
], ],
'core' => [ 'core' => [
'dataVersion' => 3203, 'dataVersion' => 3204,
'lastBackup' => 0, 'lastBackup' => 0,
'lastClearTmp' => 0, 'lastClearTmp' => 0,
'lastAutoUpdate' => 0, 'lastAutoUpdate' => 0,
@ -275,7 +275,7 @@ class init extends common {
], ],
'footer' => [ 'footer' => [
'backgroundColor' => 'rgba(255, 255, 255, 1)', 'backgroundColor' => 'rgba(255, 255, 255, 1)',
'font' => 'roboto', 'font' => 'Roboto',
'fontSize' => '1em', 'fontSize' => '1em',
'fontWeight' => 'normal', 'fontWeight' => 'normal',
'height' => '5px', 'height' => '5px',
@ -302,7 +302,7 @@ class init extends common {
], ],
'header' => [ 'header' => [
'backgroundColor' => 'rgba(32, 59, 82, 1)', 'backgroundColor' => 'rgba(32, 59, 82, 1)',
'font' => 'liberation-sans', 'font' => 'Liberation Sans',
'fontSize' => '2em', 'fontSize' => '2em',
'fontWeight' => 'normal', 'fontWeight' => 'normal',
'height' => '200px', 'height' => '200px',
@ -325,7 +325,7 @@ class init extends common {
'menu' => [ 'menu' => [
'backgroundColor' => 'rgba(32, 59, 82, 0.85)', 'backgroundColor' => 'rgba(32, 59, 82, 0.85)',
'backgroundColorSub' => 'rgba(32, 59, 82, 1)', 'backgroundColorSub' => 'rgba(32, 59, 82, 1)',
'font' => 'roboto', 'font' => 'Roboto',
'fontSize' => '1.1em', 'fontSize' => '1.1em',
'fontWeight' => 'normal', 'fontWeight' => 'normal',
'height' => '15px 10px', 'height' => '15px 10px',
@ -359,13 +359,13 @@ class init extends common {
'blockBorderShadow' => '3px 3px 6px', 'blockBorderShadow' => '3px 3px 6px',
], ],
'text' => [ 'text' => [
'font' => 'roboto', 'font' => 'Roboto',
'fontSize' => '15px', 'fontSize' => '15px',
'textColor' => 'rgba(33, 34, 35, 1)', 'textColor' => 'rgba(33, 34, 35, 1)',
'linkColor' => 'rgba(74, 105, 189, 1)' 'linkColor' => 'rgba(74, 105, 189, 1)'
], ],
'title' => [ 'title' => [
'font' => 'liberation-sans', 'font' => 'Liberation Sans',
'fontWeight' => 'normal', 'fontWeight' => 'normal',
'textColor' => 'rgba(74, 105, 189, 1)', 'textColor' => 'rgba(74, 105, 189, 1)',
'textTransform' => 'none' 'textTransform' => 'none'
@ -377,9 +377,9 @@ class init extends common {
], ],
'admin' => [ 'admin' => [
'backgroundColor' => 'rgba(255, 255, 255, 1)', 'backgroundColor' => 'rgba(255, 255, 255, 1)',
'fontText' => 'roboto', 'fontText' => 'Roboto',
'fontSize' => '13px', 'fontSize' => '13px',
'fontTitle' => 'liberation-sans', 'fontTitle' => 'Liberation Sans',
'colorText' => 'rgba(33, 34, 35, 1)', 'colorText' => 'rgba(33, 34, 35, 1)',
'colorTitle' => 'rgba(74, 105, 189, 1)', 'colorTitle' => 'rgba(74, 105, 189, 1)',
'backgroundColorButton' => 'rgba(74, 105, 189, 1)', 'backgroundColorButton' => 'rgba(74, 105, 189, 1)',