Skip to content

Commit

Permalink
[TASK] Release 3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
featdd committed Mar 2, 2020
1 parent c544752 commit 96f789c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/Utility/ParserUtility.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public static function domTextReplacer(\DOMText $DOMText, string $replacement):
*/
public static function domHtml5Repairs(string $html): string
{
$callback = function(array $match) {
$callback = function (array $match) {
return $match[1] . str_ireplace('</source>', '', $match['2']) . $match[3];
};

Expand Down
7 changes: 7 additions & 0 deletions Documentation/ChangeLog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
ChangeLog
---------

v3.0.5
- Update typoscript syntax to prevent deprecation warnings
- Parser optimizations
- add slash replacement for slug field
- Add preview option for the slug field, see: `documentation <https://docs.typo3.org/p/featdd/dpn-glossary/3.0/en-us/Configuration/ExampleTypoScriptSetup/Index.html#configure-full-url-preview-for-the-term-slug-field>`_
- Bugfix for dom picture repair function due to backtrack limit issues

v3.0.4
- Add page title provider
- Bugfix for html5 picture issues
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ A TYPO3 extension for a glossary and a contentparser to link terms to a detailpa

Links:
- [TER](https://typo3.org/extensions/repository/view/dpn_glossary)
- [Documentation](https://docs.typo3.org/p/featdd/dpn-glossary/3.0/en-us/Index.html)
- [Bug Tracker](https://github.com/featdd/dpn_glossary/issues)
- [Contact](mailto:[email protected])

Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'uploadfolder' => false,
'createDirs' => '',
'clearCacheOnLoad' => true,
'version' => '3.0.4',
'version' => '3.0.5',
'constraints' => [
'depends' => [
'typo3' => '9.5.1-9.5.99',
Expand Down

0 comments on commit 96f789c

Please sign in to comment.