forked from ZwiiCMS-Team/ZwiiCMS
version
This commit is contained in:
parent
1d3483f315
commit
2fa77bc465
@ -1,10 +1,14 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
|
||||||
## Version 11.2.06
|
## Version 11.3.00
|
||||||
- Correction :
|
- Correction :
|
||||||
- Thème / site : problème d'aperçu du body.
|
- Thème / site : problème d'aperçu du body.
|
||||||
|
- Bugs avec les sélecteurs de fontes.
|
||||||
- Modification :
|
- Modification :
|
||||||
|
- Police de carcatères :
|
||||||
|
- Changement de fournisseur, CdnFont remplace Google Font.
|
||||||
|
|
||||||
- Thème / Bannière : ergonomie de l'information sur l'image sélectionnée.
|
- Thème / Bannière : ergonomie de l'information sur l'image sélectionnée.
|
||||||
|
|
||||||
## Version 11.2.05
|
## Version 11.2.05
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
# ZwiiCMS 11.2.06
|
# ZwiiCMS 11.3.0
|
||||||
|
|
||||||
Zwii 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.
|
Zwii 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.
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ class common {
|
|||||||
|
|
||||||
// Numéro de version
|
// Numéro de version
|
||||||
const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/update/raw/branch/master/';
|
const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/update/raw/branch/master/';
|
||||||
const ZWII_VERSION = '11.2.06';
|
const ZWII_VERSION = '11.3.00';
|
||||||
const ZWII_UPDATE_CHANNEL = "v11";
|
const ZWII_UPDATE_CHANNEL = "v11";
|
||||||
|
|
||||||
public static $actions = [];
|
public static $actions = [];
|
||||||
@ -2265,11 +2265,19 @@ class core extends common {
|
|||||||
if(empty($cssVersion[1]) OR $cssVersion[1] !== md5(json_encode($this->getData(['theme'])))) {
|
if(empty($cssVersion[1]) OR $cssVersion[1] !== md5(json_encode($this->getData(['theme'])))) {
|
||||||
// Version
|
// Version
|
||||||
$css = '/*' . md5(json_encode($this->getData(['theme']))) . '*/';
|
$css = '/*' . md5(json_encode($this->getData(['theme']))) . '*/';
|
||||||
|
|
||||||
// Import des polices de caractères
|
// Import des polices de caractères
|
||||||
$css .= '@import url("http://fonts.cdnfonts.com/css/' . $this->getData(['theme', 'text', 'font']) . '");';
|
$importFonts = [$this->getData(['theme', 'text', 'font']),
|
||||||
$css .= '@import url("http://fonts.cdnfonts.com/css/' . $this->getData(['theme', 'title', 'font']) . '");';
|
$this->getData(['theme', 'title', 'font']),
|
||||||
$css .= '@import url("http://fonts.cdnfonts.com/css/' . $this->getData(['theme', 'header', 'font']) . '");';
|
$this->getData(['theme', 'header', 'font']),
|
||||||
$css .= '@import url("http://fonts.cdnfonts.com/css/' . $this->getData(['theme', 'menu', 'font']) . '");';
|
$this->getData(['theme', 'menu', 'font']),
|
||||||
|
$this->getData(['theme', 'footer', 'font'])
|
||||||
|
];
|
||||||
|
$imporFonts = array_unique($importFonts);
|
||||||
|
foreach ($importFonts as $fontId) {
|
||||||
|
$css .= '@import url("http://fonts.cdnfonts.com/css/' . $fontId . '");';
|
||||||
|
}
|
||||||
|
|
||||||
// Fond du body
|
// Fond du body
|
||||||
$colors = helper::colorVariants($this->getData(['theme', 'body', 'backgroundColor']));
|
$colors = helper::colorVariants($this->getData(['theme', 'body', 'backgroundColor']));
|
||||||
// Body
|
// Body
|
||||||
|
Loading…
Reference in New Issue
Block a user