Skip to content

Commit

Permalink
Upgrade to 3.6.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianallgeier committed Dec 9, 2021
1 parent f67366b commit 435ce00
Show file tree
Hide file tree
Showing 17 changed files with 127 additions and 77 deletions.
8 changes: 4 additions & 4 deletions kirby/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"core"
],
"homepage": "https://getkirby.com",
"version": "3.6.1",
"version": "3.6.1.1",
"license": "proprietary",
"authors": [
{
Expand All @@ -18,16 +18,16 @@
}
],
"require": {
"php": ">=7.4.0 <8.1.0",
"php": ">=7.4.0 <8.2.0",
"ext-ctype": "*",
"ext-mbstring": "*",
"claviska/simpleimage": "3.6.4",
"claviska/simpleimage": "3.6.5",
"filp/whoops": "2.14.4",
"getkirby/composer-installer": "^1.2.1",
"laminas/laminas-escaper": "2.9.0",
"michelf/php-smartypants": "1.8.1",
"mustangostang/spyc": "0.6.3",
"phpmailer/phpmailer": "6.5.1",
"phpmailer/phpmailer": "6.5.3",
"psr/log": "1.1.4",
"symfony/polyfill-intl-idn": "1.23.0",
"symfony/polyfill-mbstring": "1.23.1"
Expand Down
28 changes: 14 additions & 14 deletions kirby/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions kirby/config/areas/system/views.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?php

use Kirby\Http\Server;

return [
'system' => [
Expand Down
2 changes: 1 addition & 1 deletion kirby/config/tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@
if ($isLocalVideo === true) {
// handles local video file
if ($tag->file = $tag->file($tag->value)) {
$source = Html::tag('source', null, [
$source = Html::tag('source', '', [
'src' => $tag->file->url(),
'type' => $tag->file->mime()
]);
Expand Down
8 changes: 4 additions & 4 deletions kirby/i18n/translations/is_IS.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@

"error.license.format": "Gildur leyfiskóði hér",
"error.license.email": "Almennilegt netfang hér",
"error.license.verification": "Ekki heppnaðist að staðfest leyfið",
"error.license.verification": "Ekki heppnaðist að staðfesta leyfið",

"error.offline": "Stjórnborðið er óvirkt eins og stendur.",

Expand Down Expand Up @@ -356,7 +356,7 @@
"login.code.label.login": "Innskráningarkóði",
"login.code.label.password-reset": "Kóði fyrir endurstillingu lykilorðs",
"login.code.placeholder.email": "000 000",
"login.code.text.email": "Ef netfangið (e. email) þitt er skráð þá bíður þín nýr tölvupóstur.",
"login.code.text.email": "Ef netfangið þitt er skráð þá bíður þín nýr tölvupóstur.",
"login.email.login.body": "Já halló {user.nameOrEmail},\n\nNýlega baðstu um innskráningarkóða fyrir bakendan á sorli.is.\nEftirfarandi kóði er virkur í {timeout} mínútur:\n\n{code}\n\nEf þú óskaðir ekki eftir þessu þá hunsaðu þennan tölvupóst eða talaðu við vefstjóran ef þú vilt fræðast nánar.\nAf öryggisástæðum vinsamlegast áframsendu þennan tölvupóst ALLS EKKI.",
"login.email.login.subject": "Innskráningarkóðinn þinn",
"login.email.password-reset.body": "Nei halló {user.nameOrEmail},\n\nNýverið baðstu um að lykilorði þínu væri endurstillt fyrir bakendan á sorli.is. \nEftirfarandi kóði er virkur í {timeout} mínútur:\n\n{code}\n\nEf þú óskaðir ekki eftir þessu þá hunsaðu þennan tölvupóst eða talaðu við vefstjóran ef þú vilt fræðast nánar.\nAf öryggisástæðum vinsamlegast áframsendu þennan tölvupóst ALLS EKKI.",
Expand Down Expand Up @@ -504,7 +504,7 @@

"translation.author": "Kirby Teymið",
"translation.direction": "ltr",
"translation.name": "Íslenska A137",
"translation.name": "Íslenska",
"translation.locale": "is_IS",

"upload": "Hlaða inn",
Expand All @@ -523,7 +523,7 @@
"upload.progress": "Hleð inn…",

"url": "Slóð",
"url.placeholder": "https://hvitur.is",
"url.placeholder": "https://tildaem.is/",

"user": "Notandi",
"user.blueprint": "Þér er óhætt að skilgreina fleiri svæði fyrir þetta notenda hlutverk í <strong>/site/blueprints/users/{role}.yml</strong>",
Expand Down
2 changes: 1 addition & 1 deletion kirby/panel/dist/js/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion kirby/src/Text/KirbyTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public static function parse(string $string, array $data = [], array $options =

// extract all attributes
$regex = sprintf('/(%s):/i', implode('|', $attr));
$search = preg_split($regex, $tag, false, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
$search = preg_split($regex, $tag, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);

// $search is now an array with alternating keys and values
// convert it to arrays of keys and values
Expand Down
2 changes: 1 addition & 1 deletion kirby/src/Toolkit/Str.php
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ public static function float($value): string

$value = str_replace(',', '.', $value);
$decimal = strlen(substr(strrchr($value, '.'), 1));
return number_format((float)$value, $decimal, '.', false);
return number_format((float)$value, $decimal, '.', '');
}

/**
Expand Down
28 changes: 14 additions & 14 deletions kirby/vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@
"packages": [
{
"name": "claviska/simpleimage",
"version": "3.6.4",
"version_normalized": "3.6.4.0",
"version": "3.6.5",
"version_normalized": "3.6.5.0",
"source": {
"type": "git",
"url": "https://github.com/claviska/SimpleImage.git",
"reference": "21b6f4bf4ef1927158b3e29bd0c2d99c6681c750"
"reference": "00f90662686696b9b7157dbb176183aabe89700f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/claviska/SimpleImage/zipball/21b6f4bf4ef1927158b3e29bd0c2d99c6681c750",
"reference": "21b6f4bf4ef1927158b3e29bd0c2d99c6681c750",
"url": "https://api.github.com/repos/claviska/SimpleImage/zipball/00f90662686696b9b7157dbb176183aabe89700f",
"reference": "00f90662686696b9b7157dbb176183aabe89700f",
"shasum": ""
},
"require": {
"ext-gd": "*",
"league/color-extractor": "0.3.*",
"php": ">=5.6.0"
},
"time": "2021-04-20T12:18:18+00:00",
"time": "2021-12-01T12:42:55+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand All @@ -42,7 +42,7 @@
"description": "A PHP class that makes working with images as simple as possible.",
"support": {
"issues": "https://github.com/claviska/SimpleImage/issues",
"source": "https://github.com/claviska/SimpleImage/tree/3.6.4"
"source": "https://github.com/claviska/SimpleImage/tree/3.6.5"
},
"funding": [
{
Expand Down Expand Up @@ -414,17 +414,17 @@
},
{
"name": "phpmailer/phpmailer",
"version": "v6.5.1",
"version_normalized": "6.5.1.0",
"version": "v6.5.3",
"version_normalized": "6.5.3.0",
"source": {
"type": "git",
"url": "https://github.com/PHPMailer/PHPMailer.git",
"reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355"
"reference": "baeb7cde6b60b1286912690ab0693c7789a31e71"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/dd803df5ad7492e1b40637f7ebd258fee5ca7355",
"reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355",
"url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/baeb7cde6b60b1286912690ab0693c7789a31e71",
"reference": "baeb7cde6b60b1286912690ab0693c7789a31e71",
"shasum": ""
},
"require": {
Expand All @@ -451,7 +451,7 @@
"stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
"symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
},
"time": "2021-08-18T09:14:16+00:00",
"time": "2021-11-25T16:34:11+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand Down Expand Up @@ -483,7 +483,7 @@
"description": "PHPMailer is a full-featured email creation and transfer class for PHP",
"support": {
"issues": "https://github.com/PHPMailer/PHPMailer/issues",
"source": "https://github.com/PHPMailer/PHPMailer/tree/v6.5.1"
"source": "https://github.com/PHPMailer/PHPMailer/tree/v6.5.3"
},
"funding": [
{
Expand Down
20 changes: 10 additions & 10 deletions kirby/vendor/composer/installed.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php return array(
'root' => array(
'pretty_version' => '3.6.1',
'version' => '3.6.1.0',
'pretty_version' => '3.6.1.1',
'version' => '3.6.1.1',
'type' => 'kirby-cms',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand All @@ -11,12 +11,12 @@
),
'versions' => array(
'claviska/simpleimage' => array(
'pretty_version' => '3.6.4',
'version' => '3.6.4.0',
'pretty_version' => '3.6.5',
'version' => '3.6.5.0',
'type' => 'library',
'install_path' => __DIR__ . '/../claviska/simpleimage',
'aliases' => array(),
'reference' => '21b6f4bf4ef1927158b3e29bd0c2d99c6681c750',
'reference' => '00f90662686696b9b7157dbb176183aabe89700f',
'dev_requirement' => false,
),
'filp/whoops' => array(
Expand All @@ -29,8 +29,8 @@
'dev_requirement' => false,
),
'getkirby/cms' => array(
'pretty_version' => '3.6.1',
'version' => '3.6.1.0',
'pretty_version' => '3.6.1.1',
'version' => '3.6.1.1',
'type' => 'kirby-cms',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down Expand Up @@ -89,12 +89,12 @@
'dev_requirement' => false,
),
'phpmailer/phpmailer' => array(
'pretty_version' => 'v6.5.1',
'version' => '6.5.1.0',
'pretty_version' => 'v6.5.3',
'version' => '6.5.3.0',
'type' => 'library',
'install_path' => __DIR__ . '/../phpmailer/phpmailer',
'aliases' => array(),
'reference' => 'dd803df5ad7492e1b40637f7ebd258fee5ca7355',
'reference' => 'baeb7cde6b60b1286912690ab0693c7789a31e71',
'dev_requirement' => false,
),
'psr/log' => array(
Expand Down
28 changes: 17 additions & 11 deletions kirby/vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,30 @@
* @see http://unicode.org/udhr/n/notes_fra.html
*/

$PHPMAILER_LANG['authenticate'] = 'Erreur SMTP : échec de l\'authentification.';
$PHPMAILER_LANG['authenticate'] = 'Erreur SMTP : échec de l’authentification.';
$PHPMAILER_LANG['buggy_php'] = 'Votre version de PHP est affectée par un bogue qui peut entraîner des messages corrompus. Pour résoudre ce problème, passez à l’envoi par SMTP, désactivez l’option mail.add_x_header dans le fichier php.ini, passez à MacOS ou Linux, ou passez PHP à la version 7.0.17+ ou 7.1.3+.';
$PHPMAILER_LANG['connect_host'] = 'Erreur SMTP : impossible de se connecter au serveur SMTP.';
$PHPMAILER_LANG['data_not_accepted'] = 'Erreur SMTP : données incorrectes.';
$PHPMAILER_LANG['empty_message'] = 'Corps du message vide.';
$PHPMAILER_LANG['encoding'] = 'Encodage inconnu : ';
$PHPMAILER_LANG['execute'] = 'Impossible de lancer l\'exécution : ';
$PHPMAILER_LANG['file_access'] = 'Impossible d\'accéder au fichier : ';
$PHPMAILER_LANG['execute'] = 'Impossible de lancer l’exécution : ';
$PHPMAILER_LANG['extension_missing'] = 'Extension manquante : ';
$PHPMAILER_LANG['file_access'] = 'Impossible d’accéder au fichier : ';
$PHPMAILER_LANG['file_open'] = 'Ouverture du fichier impossible : ';
$PHPMAILER_LANG['from_failed'] = 'L\'adresse d\'expéditeur suivante a échoué : ';
$PHPMAILER_LANG['instantiate'] = 'Impossible d\'instancier la fonction mail.';
$PHPMAILER_LANG['invalid_address'] = 'L\'adresse courriel n\'est pas valide : ';
$PHPMAILER_LANG['invalid_hostentry'] = 'L\'entrée hôte n\'est pas valide : ';
$PHPMAILER_LANG['invalid_host'] = 'L\'hôte n\'est pas valide : ';
$PHPMAILER_LANG['from_failed'] = 'L’adresse d’expéditeur suivante a échoué : ';
$PHPMAILER_LANG['instantiate'] = 'Impossible d’instancier la fonction mail.';
$PHPMAILER_LANG['invalid_address'] = 'Adresse courriel non valide : ';
$PHPMAILER_LANG['invalid_header'] = 'Nom ou valeur de l’en-tête non valide';
$PHPMAILER_LANG['invalid_hostentry'] = 'Entrée d’hôte non valide : ';
$PHPMAILER_LANG['invalid_host'] = 'Hôte non valide : ';
$PHPMAILER_LANG['mailer_not_supported'] = ' client de messagerie non supporté.';
$PHPMAILER_LANG['provide_address'] = 'Vous devez fournir au moins une adresse de destinataire.';
$PHPMAILER_LANG['recipients_failed'] = 'Erreur SMTP : les destinataires suivants sont en erreur : ';
$PHPMAILER_LANG['recipients_failed'] = 'Erreur SMTP :les destinataires suivants ont échoué : ';
$PHPMAILER_LANG['signing'] = 'Erreur de signature : ';
$PHPMAILER_LANG['smtp_connect_failed'] = 'Échec de la connexion SMTP.';
$PHPMAILER_LANG['smtp_code'] = 'Code SMTP : ';
$PHPMAILER_LANG['smtp_code_ex'] = 'Informations supplémentaires SMTP : ';
$PHPMAILER_LANG['smtp_connect_failed'] = 'La fonction SMTP connect() a échouée.';
$PHPMAILER_LANG['smtp_detail'] = 'Détails : ';
$PHPMAILER_LANG['smtp_error'] = 'Erreur du serveur SMTP : ';
$PHPMAILER_LANG['variable_set'] = 'Impossible d\'initialiser ou de réinitialiser une variable : ';
$PHPMAILER_LANG['variable_set'] = 'Impossible dinitialiser ou de réinitialiser une variable : ';
$PHPMAILER_LANG['extension_missing'] = 'Extension manquante : ';
Loading

0 comments on commit 435ce00

Please sign in to comment.