From a128d1dc5976b92fb6e6306e2c6cc4465dfa0c86 Mon Sep 17 00:00:00 2001 From: Roman Date: Tue, 11 Aug 2020 20:55:59 +0200 Subject: [PATCH] [RELEASE] 11.3.0 --- .../ViewHelpers/Format/SchemaViewHelper.php | 22 ++++++++++--- Documentation/Changelog/11.3.0.rst | 33 +++++++++++++++++++ Documentation/Changelog/Index.rst | 1 + Documentation/Settings.cfg | 4 +-- ext_emconf.php | 2 +- 5 files changed, 55 insertions(+), 7 deletions(-) create mode 100644 Documentation/Changelog/11.3.0.rst diff --git a/Classes/ViewHelpers/Format/SchemaViewHelper.php b/Classes/ViewHelpers/Format/SchemaViewHelper.php index 40fc5385d..51b53c66a 100644 --- a/Classes/ViewHelpers/Format/SchemaViewHelper.php +++ b/Classes/ViewHelpers/Format/SchemaViewHelper.php @@ -1,5 +1,11 @@ registerArgument('decodeOptions', 'string', - 'Coma separated options for decoding the json string (see php manual for json_decode).', false); - $this->registerArgument('encodeOptions', 'string', - 'Coma separated options for encoding the json array (see php manual for json_encode).', false); + $this->registerArgument( + 'decodeOptions', + 'string', + 'Coma separated options for decoding the json string (see php manual for json_decode).', + false + ); + $this->registerArgument( + 'encodeOptions', + 'string', + 'Coma separated options for encoding the json array (see php manual for json_encode).', + false + ); } } diff --git a/Documentation/Changelog/11.3.0.rst b/Documentation/Changelog/11.3.0.rst new file mode 100644 index 000000000..c4829efea --- /dev/null +++ b/Documentation/Changelog/11.3.0.rst @@ -0,0 +1,33 @@ +.. include:: ../Includes.txt + +.. highlight:: none + +==================================== +Changelog for release 11.3.0 +==================================== + +Features +======== +* [FEATURE] Add support for extension `container_elements` (11.08.2020, abe10db by Roman) +* [FEATURE] Enhance schema content element (format, breadcrumb) (24.07.2020, 8d7d8c9 by Roman) +* [FEATURE] Get data from parent record in schema content element (21.07.2020, c666d17 by Roman) +* [FEATURE] Add function `newLineToRn` to `schema` ce (07.07.2020, 1c68a0e by Roman) + +Bugfixes +======== +* [BUGFIX] Correct typo in js file reference (31.07.2020, e01f432 by Roman) +* [BUGFIX] Fix issue with sticky header (23.07.2020, c169be0 by Roman) +* [BUGFIX] Correct issue with css `text-decoration` on safari (19.07.2020, db8349e by Roman) +* [BUGFIX] Corrects output code from `schema` content element (07.07.2020, 9e76079 by Roman) + + +.. highlight:: shell + +Generated by: + +git log 11.2.0..abe10db4 --pretty="* %s (%cd, %h by %an)" --date=format:%d.%m.%Y --abbrev-commit --grep + +**Note:** The above list contains just commits marked with [FEATURE], [BUGFIX] and [!!!]. Complementary commits are +available at `Github `__. + + diff --git a/Documentation/Changelog/Index.rst b/Documentation/Changelog/Index.rst index 87388db0f..4619c2e9e 100644 --- a/Documentation/Changelog/Index.rst +++ b/Documentation/Changelog/Index.rst @@ -15,6 +15,7 @@ Releases .. toctree:: :maxdepth: 1 + Release: 11.3.0 (11.8.2020) <11.3.0> Release: 11.2.0 (23.6.2020) <11.2.0> Release: 11.1.0 (27.2.2020) <11.1.0> Release: 11.0.0 (25.9.2019) <11.0.0> diff --git a/Documentation/Settings.cfg b/Documentation/Settings.cfg index 738962078..7fb04140f 100644 --- a/Documentation/Settings.cfg +++ b/Documentation/Settings.cfg @@ -2,8 +2,8 @@ [general] project = Template pizpalue -version = 11.2.1-dev -release = 11.2.1-dev +version = 11.3.0 +release = 11.3.0 copyright = since 2018 by buechler.pro gmbh [html_theme_options] diff --git a/ext_emconf.php b/ext_emconf.php index 4a782fd44..d5ef6576d 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -11,7 +11,7 @@ 'title' => 'Pizpalue template', 'description' => 'Extension to create websites using bootstrap. It builds upon the bootstrap_package from Benjamin Kott and increases functionality by supporting the following extensions: pp_gridelements, flux_elements, timelog, ws_flexslider, slickcarousel, indexed_search, news, tt_address.', 'category' => 'template', - 'version' => '11.2.1-dev', + 'version' => '11.3.0', 'state' => 'stable', 'clearCacheOnLoad' => 1, 'author' => 'Roman Büchler',