fontes okay
This commit is contained in:
parent
de202823d9
commit
edffeecda3
@ -3,7 +3,8 @@
|
|||||||
## Version 11.3.06
|
## Version 11.3.06
|
||||||
### Corrections :
|
### Corrections :
|
||||||
- Bug d'affichage des blocs de présentation.
|
- Bug d'affichage des blocs de présentation.
|
||||||
### Amélioration :
|
- Double déclaration d'une fonte locale.
|
||||||
|
### Améliorations :
|
||||||
- Sauvegarde des fontes avec le thème.
|
- Sauvegarde des fontes avec le thème.
|
||||||
- Une fonte Websafe remplace une fonte locale dont le fichier n'est pas disponible.
|
- Une fonte Websafe remplace une fonte locale dont le fichier n'est pas disponible.
|
||||||
|
|
||||||
|
@ -808,3 +808,17 @@ if ($this->getData(['core', 'dataVersion']) < 11303) {
|
|||||||
// Mise à jour
|
// Mise à jour
|
||||||
$this->setData(['core', 'dataVersion', 11303]);
|
$this->setData(['core', 'dataVersion', 11303]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Version 11.3.06
|
||||||
|
if ($this->getData(['core', 'dataVersion']) < 11306) {
|
||||||
|
|
||||||
|
// Supprime les fontes déclarées en double par la version précédentes
|
||||||
|
$files = $this->getData(['fonts', 'files']);
|
||||||
|
foreach ($files as $fontId => $fontFile) {
|
||||||
|
if ( !is_null($this->getData(['fonts', 'imported', $fontId])) ) {
|
||||||
|
$this->deleteData(['fonts', 'imported', $fontId]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Mise à jour
|
||||||
|
$this->setData(['core', 'dataVersion', 11306]);
|
||||||
|
}
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<?php echo template::text('fontAddFontName', [
|
<?php echo template::text('fontAddFontName', [
|
||||||
'autocomplete' => 'off',
|
'autocomplete' => 'off',
|
||||||
'label' => 'Nom (Font Family)',
|
'label' => 'Nom (Font Family)',
|
||||||
'placeholder' => 'PerryGothic'
|
'placeholder' => 'PerryGothic, sans-serif'
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user