Skip to content

Commit

Permalink
[RELEASE] 11.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
buepro committed Aug 11, 2020
1 parent abe10db commit a128d1d
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 7 deletions.
22 changes: 18 additions & 4 deletions Classes/ViewHelpers/Format/SchemaViewHelper.php
@@ -1,5 +1,11 @@
<?php

/*
* This file is part of the package buepro/pizpalue.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/

namespace Buepro\Pizpalue\ViewHelpers\Format;

Expand Down Expand Up @@ -84,9 +90,17 @@ public function initializeArguments()
false,
true
);
$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);
$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
);
}
}
33 changes: 33 additions & 0 deletions 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 <https://github.com/buepro/typo3-pizpalue/commits/master)>`__.


1 change: 1 addition & 0 deletions Documentation/Changelog/Index.rst
Expand Up @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Settings.cfg
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Expand Up @@ -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',
Expand Down

0 comments on commit a128d1d

Please sign in to comment.