RSS feed import 

Version

main

Language

en

Authors

Simon Schaufelberger

Email

simonschaufi+gkhrssimport [at] gmail [dot] com

License

This extension documentation is published under the CC BY-NC-SA 4.0 (Creative Commons) license

Fetch an RSS / Atom Feed and display its content on the Frontend.

TYPO3

The content of this document is related to TYPO3 CMS, a GNU/GPL CMS/Framework available from typo3.org .

Community Documentation

This documentation is community documentation for the TYPO3 extension RSS feed import

It is maintained as part of this third party extension.

If you find an error or something is missing, please: Report a Problem

Extension Manual

This documentation is for the TYPO3 extension gkh_rss_import.

For Contributors

You are welcome to help improve this guide. Just click on "Edit me on GitHub" on the top right to submit your change request.

Table of Contents

Introduction 

What does it do? 

This extension inserts an RSS feed on a page, and gives you a high level of configuration options. Included is a function that trims the text to a specified length. Words are separated by space characters, and they are not chopped if possible. Logo from pages can be set to a maximum width. If the feed is encoded with a special language this can be set also.

Several templates are shipped with the extension but you can easily define a new template in the flex form or via TypoScript.

The extension uses the RSS parser from Last RSS which is modified to work with TYPO3

Screenshots 

Screenshot general settings

General plugin settings

Screenshot additional settings

Additional plugin settings

Screenshot rendered feed

Rendered feed example

Need Support? 

There are various ways to get support for EXT:gkh_rss_import!

Sponsoring 

If you need a feature which is not yet implemented, feel free to contact me anytime!

Private/Personal support 

If you need private or personal support, ask me for it.

Be aware that this support might not be free!

Help supporting further development 

This extension and manual has been created in endless hours, mostly by a single person. It is actively maintained to fit all supported TYPO3 versions, user interface concepts and best practice approaches.

If this extension helps you in anyway to achieve your requirements, please think about giving something back. You want to sponsor a feature to extend something that's already there? Then find some ideas to make me happy below - I'm looking forward to get in contact with you!

GitHub 

Support me on github.com (https://github.com/sponsors/simonschaufi) and get high priority support as reward.

PayPal 

Support me by a donation on paypal.com (https://paypal.me/simonschaufi/25). It is just one click away

Let's have a coffee 

If you're in the region of Karlsruhe, Germany, just let me know. I'm always looking forward to meet new and known faces and to exchange on several topics.

Cash 

If you decided to get rid of paper money, just let me know and we'll find a way to organize that :-)

Bitcoin 

Sorry, this is no option for me as I'm not trading Bitcoins.

Installation 

The extension needs to be installed as any other extension of TYPO3 CMS:

  1. Use composer: Use composer require gkh/gkh-rss-import.
  2. Get it from the Extension Manager: Press the "Retrieve/Update" button and search for the extension key gkh_rss_import and import the extension from the repository.
  3. Get it from typo3.org: You can always get current version from https://extensions.typo3.org/extension/gkh_rss_import/ by downloading the zip version. Upload the file afterwards in the Extension Manager.

Preparation: Include static TypoScript 

The extension ships some TypoScript code which needs to be included.

  1. Go to the root page of your site.
  2. Go to the Template module and select Info/Modify.
  3. Press the link Edit the whole template record and go to the tab Includes.
  4. Select RSS Feed Import (gkh_rss_import) at the field Include static (from extensions):

Configuration 

The extension can either be configured in the content element plugin settings or via TypoScript.

Typical Example 

Minimal example of TypoScript:

plugin.tx_gkhrssimport_pi1 {
   templateFile = EXT:website_package/Resources/Private/Templates/RssImport.html
}
Copied!

TypoScript Reference 

Property
rssFeed
Data type
string
Default
(none)
Description

The URL to the RSS feed

Example::

plugin.tx_gkhrssimport_pi1.rssFeed = https://example.com/feed/
Copied!
Property
itemsLimit
Data type
int
Default
10
Description

Maximum items to show

Example::

plugin.tx_gkhrssimport_pi1.itemsLimit = 10
Copied!
Property
itemLength
Data type
int
Default
500
Description

Length of item content

Example::

plugin.tx_gkhrssimport_pi1.itemLength = 500
Copied!
Property
headerLength
Data type
int
Default
80
Description

Length of header description

Example::

plugin.tx_gkhrssimport_pi1.headerLength = 80
Copied!
Property
target
Data type
string
Default
(none)
Description

Target of URL

Example::

plugin.tx_gkhrssimport_pi1.target = _blank
Copied!
Property
logoWidth
Data type
int
Default
140
Description

Width of logo image

Example::

plugin.tx_gkhrssimport_pi1.logoWidth = 140
Copied!
Property
errorMessage
Data type
string
Default
It's not possible to reach the RSS file...
Description

Error message

Example::

plugin.tx_gkhrssimport_pi1.errorMessage = It's not possible to reach the RSS file...
Copied!
Property
dateFormat
Data type
int/string
Default
3
Description

Date format

Possible values:

Format Representation Preview
1 %A, %d. %B %Y Monday, 12. May 2008
2 %d. %B %Y 12. May 2008
3 %e/%m - %Y 12/5-2008

Additionally you can define your own format which is supported by strftime.

Examples::

plugin.tx_gkhrssimport_pi1.dateFormat = 3
plugin.tx_gkhrssimport_pi1.dateFormat = %m-%d-%Y %H:%M:%S
Copied!
Property
stripHTML
Data type
int
Default
2
Description

Remove HTML from RSS feed

Example::

plugin.tx_gkhrssimport_pi1.stripHTML = 2
Copied!
Property
flexCache
Data type
int
Default
(none)
Description

RSS Feed cache time in seconds

Example::

plugin.tx_gkhrssimport_pi1.flexCache = 86400
Copied!
Property
templateFile
Data type
string
Default
EXT:gkh_rss_import/Resources/Private/Templates/RssImport.html
Description

Template File (the path needs to start with "EXT:" if you set it via TypoScript, otherwise set the template via Plugin settings in the backend)

Example::

plugin.tx_gkhrssimport_pi1.templateFile = EXT:gkh_rss_import/Resources/Private/Templates/RssImport.html
Copied!

11.0.0 

All Changes 

This is a list of all changes in this release:

2025-05-24 [RELEASE] Release v11.0.0 (Commit 06a33d5 by Simon Schaufelberger)
2024-01-31 [FEATURE] Upgrade to TYPO3 13.4 (Commit d3e2ac0 by Simon Schaufelberger)
2025-05-22 [TASK] Bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 (Commit 0fe85aa by dependabot[bot])
2025-05-13 [TASK] Update ergebnis/composer-normalize requirement (Commit 525fe8a by dependabot[bot])
2025-04-07 [TASK] Update friendsofphp/php-cs-fixer requirement (Commit 1d7226c by dependabot[bot])
2025-05-12 [TASK] Update squizlabs/php_codesniffer requirement (Commit a2f8587 by dependabot[bot])
2025-01-27 [TASK] Bump dependabot/fetch-metadata from 2.2.0 to 2.3.0 (Commit 794cd5b by dependabot[bot])
2025-03-17 [TASK] Update friendsofphp/php-cs-fixer requirement (#143) (Commit 8a134e9 by dependabot[bot])
2025-03-10 [TASK] Update friendsofphp/php-cs-fixer requirement (#142) (Commit 85249a0 by dependabot[bot])
2025-03-03 [TASK] Update friendsofphp/php-cs-fixer requirement (#141) (Commit a7c1eaa by dependabot[bot])
2025-02-24 [TASK] Update friendsofphp/php-cs-fixer requirement (#140) (Commit 2908662 by dependabot[bot])
2025-02-17 [TASK] Update friendsofphp/php-cs-fixer requirement (#139) (Commit 1709a69 by dependabot[bot])
2025-02-03 [TASK] Update helmich/typo3-typoscript-lint requirement (#138) (Commit e62a5f7 by dependabot[bot])
2025-02-03 [TASK] Update phpunit/phpunit requirement from ^10.5.41 to ^10.5.44 (#137) (Commit cac418c by dependabot[bot])
2025-02-03 [TASK] Update friendsofphp/php-cs-fixer requirement (#136) (Commit 80ede84 by dependabot[bot])
2025-01-27 [TASK] Update squizlabs/php_codesniffer requirement (#135) (Commit 14574f3 by dependabot[bot])
2025-01-20 [TASK] Update friendsofphp/php-cs-fixer requirement (#133) (Commit 860169e by dependabot[bot])
2025-01-13 [TASK] Update phpunit/phpunit requirement from ^10.5.40 to ^10.5.41 (#131) (Commit 2e1b0cc by dependabot[bot])
2025-01-06 [TASK] Update friendsofphp/php-cs-fixer requirement (#130) (Commit c732bb0 by dependabot[bot])
2024-12-30 [TASK] Update friendsofphp/php-cs-fixer requirement (#129) (Commit 72c8446 by dependabot[bot])
2024-12-23 [TASK] Update phpunit/phpunit requirement from ^10.5.39 to ^10.5.40 (#128) (Commit 6a87498 by dependabot[bot])
2024-12-16 [TASK] Update phpunit/phpunit requirement from ^10.5.38 to ^10.5.39 (#127) (Commit 5b788e6 by dependabot[bot])
2024-12-16 [TASK] Update squizlabs/php_codesniffer requirement (#126) (Commit a255100 by dependabot[bot])
2024-12-09 [TASK] Update ergebnis/composer-normalize requirement (#125) (Commit 0055d9d by dependabot[bot])
2024-11-25 [TASK] Update friendsofphp/php-cs-fixer requirement (#124) (Commit 119c8b1 by dependabot[bot])
2024-11-25 [TASK] Update ssch/typo3-rector requirement from ^2.11.0 to ^2.12.0 (#123) (Commit 133ff82 by dependabot[bot])
2024-11-18 [TASK] Update squizlabs/php_codesniffer requirement (#122) (Commit 8df090d by dependabot[bot])
2024-11-04 [TASK] Update ezyang/htmlpurifier requirement from ^4.17.0 to ^4.18.0 (#121) (Commit 2f7e734 by dependabot[bot])
2024-11-04 [TASK] Update phpunit/phpunit requirement from ^10.5.37 to ^10.5.38 (#120) (Commit 3b9aedd by dependabot[bot])
2024-10-28 [TASK] Update ssch/typo3-rector requirement from ^2.10.2 to ^2.11.0 (#119) (Commit 64443f0 by dependabot[bot])
Copied!

This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.

10.0.1 

All Changes 

This is a list of all changes in this release:

2024-10-25 [RELEASE] Release v10.0.1 (Commit df8cf3b by Simon Schaufelberger)
2024-10-25 [BUGFIX] Cast dateFormat to int (Commit 3866a92 by Simon Schaufelberger)
Copied!

This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.

10.0.0 

All Changes 

This is a list of all changes in this release:

2024-10-22 [RELEASE] Release v10.0.0 (Commit 5c08703 by Simon Schaufelberger)
2024-10-21 [TASK] Update ssch/typo3-rector requirement from ^2.9.2 to ^2.10.2 (#117) (Commit a265bc7 by dependabot[bot])
2024-10-21 [TASK] Update phpstan/phpstan requirement from ^1.12.6 to ^1.12.7 (#116) (Commit 4557bcf by dependabot[bot])
2024-10-21 [TASK] Update phpunit/phpunit requirement from ^10.5.36 to ^10.5.37 (#115) (Commit 99c9028 by dependabot[bot])
2024-10-07 [TASK] Update ergebnis/composer-normalize requirement (Commit aec6e70 by dependabot[bot])
2024-07-08 [TASK] Bump dependabot/fetch-metadata from 2.1.0 to 2.2.0 (Commit 01364a1 by dependabot[bot])
2024-10-14 [TASK] Update phpunit/phpunit requirement from ^10.5.35 to ^10.5.36 (#114) (Commit 887ca3e by dependabot[bot])
2024-10-14 [TASK] Update typo3/testing-framework requirement from ^8.2.2 to ^8.2.3 (#113) (Commit af1b091 by dependabot[bot])
2024-10-07 [TASK] Update ssch/typo3-rector requirement from ^2.7.0 to ^2.9.2 (#111) (Commit 5bbf7da by dependabot[bot])
2024-10-07 [TASK] Update phpstan/phpstan requirement from ^1.12.5 to ^1.12.6 (#110) (Commit 5fc6f71 by dependabot[bot])
2024-09-30 [TASK] Update typo3/testing-framework requirement from ^8.2.0 to ^8.2.2 (#109) (Commit d2a8bc9 by dependabot[bot])
2024-09-30 [TASK] Update phpstan/phpstan requirement from ^1.12.4 to ^1.12.5 (#108) (Commit 6c4af7d by dependabot[bot])
2024-09-30 [TASK] Update ssch/typo3-rector requirement from ^2.6.5 to ^2.7.0 (#107) (Commit 4a09fab by dependabot[bot])
2024-09-23 [TASK] Update phpunit/phpunit requirement from ^10.5.34 to ^10.5.35 (#105) (Commit 5d0a2f1 by dependabot[bot])
2024-09-23 [TASK] Update squizlabs/php_codesniffer requirement (#106) (Commit 39f42d1 by dependabot[bot])
2024-09-23 [TASK] Update phpstan/phpstan requirement from ^1.12.3 to ^1.12.4 (#104) (Commit 3c11c6f by dependabot[bot])
2024-09-16 [TASK] Update phpunit/phpunit requirement from ^10.5.33 to ^10.5.34 (#103) (Commit 9f6da5f by dependabot[bot])
2024-09-09 [TASK] Update phpunit/phpunit requirement from ^10.5.30 to ^10.5.33 (#102) (Commit 0eff02a by dependabot[bot])
2024-09-09 [TASK] Update phpstan/phpstan requirement from ^1.12.0 to ^1.12.3 (#101) (Commit 0db161f by dependabot[bot])
2024-09-02 [TASK] Update friendsofphp/php-cs-fixer requirement (#100) (Commit e69708b by dependabot[bot])
2024-09-02 [TASK] Update ssch/typo3-rector requirement from ^2.6.4 to ^2.6.5 (#99) (Commit 0104b43 by dependabot[bot])
2024-09-02 [TASK] Update phpstan/phpstan requirement from ^1.11.11 to ^1.12.0 (#98) (Commit 011f96d by dependabot[bot])
2024-08-26 [TASK] Update phpstan/phpstan requirement from ^1.11.10 to ^1.11.11 (#97) (Commit 5691ae3 by dependabot[bot])
2024-08-19 [TASK] Update phpunit/phpunit requirement from ^10.5.29 to ^10.5.30 (#95) (Commit 858b503 by dependabot[bot])
2024-08-12 [TASK] Update phpstan/phpstan requirement from ^1.11.9 to ^1.11.10 (#94) (Commit fcd4f74 by dependabot[bot])
2024-08-12 [TASK] Update friendsofphp/php-cs-fixer requirement (#93) (Commit 9cc08b4 by dependabot[bot])
2024-08-05 [TASK] Update phpstan/phpstan requirement from ^1.11.8 to ^1.11.9 (#92) (Commit 8a64eaf by dependabot[bot])
2024-08-05 [TASK] Update phpunit/phpunit requirement from ^10.5.28 to ^10.5.29 (#91) (Commit c9e3596 by dependabot[bot])
2024-08-05 [TASK] Update friendsofphp/php-cs-fixer requirement (#90) (Commit 336bde7 by dependabot[bot])
2024-07-29 [TASK] Update friendsofphp/php-cs-fixer requirement (#89) (Commit b35f6fd by dependabot[bot])
2024-07-29 [TASK] Update phpstan/phpstan requirement from ^1.11.7 to ^1.11.8 (#88) (Commit e61503e by dependabot[bot])
2024-07-22 [TASK] Update ssch/typo3-rector requirement from ^2.6.2 to ^2.6.4 (#87) (Commit 59d90d2 by dependabot[bot])
2024-07-22 [TASK] Update phpunit/phpunit requirement from ^10.5.27 to ^10.5.28 (#86) (Commit 709fa3a by dependabot[bot])
2024-07-22 [TASK] Update squizlabs/php_codesniffer requirement (#85) (Commit af613c1 by dependabot[bot])
2024-07-15 [TASK] Update phpunit/phpunit requirement from ^10.5.26 to ^10.5.27 (#84) (Commit 938bff4 by dependabot[bot])
2024-07-08 [TASK] Update phpunit/phpunit requirement from ^10.5.24 to ^10.5.26 (#83) (Commit 03c73ce by dependabot[bot])
2024-07-08 [TASK] Update phpstan/phpstan requirement from ^1.11.5 to ^1.11.7 (#82) (Commit fbb8d57 by dependabot[bot])
2024-07-08 [TASK] Update ssch/typo3-rector requirement from ^2.6.1 to ^2.6.2 (#81) (Commit c774511 by dependabot[bot])
2024-07-01 [TASK] Update ssch/typo3-rector requirement from ^2.6.0 to ^2.6.1 (#79) (Commit a156e6d by dependabot[bot])
2024-07-01 [TASK] Update typo3/testing-framework requirement from ^8.1.1 to ^8.2.0 (#78) (Commit 90e75a9 by dependabot[bot])
2024-06-24 [TASK] Update typo3/testing-framework requirement from ^8.0.9 to ^8.1.1 (#77) (Commit 9088bf5 by dependabot[bot])
2024-06-24 [TASK] Update phpunit/phpunit requirement from ^10.5.21 to ^10.5.24 (#76) (Commit 88b2196 by dependabot[bot])
2024-06-24 [TASK] Update phpstan/phpstan requirement from ^1.11.4 to ^1.11.5 (#75) (Commit 3557fc7 by dependabot[bot])
2024-06-17 [TASK] Update friendsofphp/php-cs-fixer requirement (#74) (Commit 1005ce2 by dependabot[bot])
2024-06-17 [TASK] Update ergebnis/composer-normalize requirement (#73) (Commit 918f3b0 by dependabot[bot])
2024-06-17 [TASK] Update phpunit/phpunit requirement from ^10.5.20 to ^10.5.21 (#72) (Commit 8480946 by dependabot[bot])
2024-06-10 [TASK] Update phpstan/phpstan requirement from ^1.11.3 to ^1.11.4 (#71) (Commit 94ae27c by dependabot[bot])
2024-06-03 [TASK] Update friendsofphp/php-cs-fixer requirement (#70) (Commit 7d708a5 by dependabot[bot])
2024-06-03 [TASK] Update phpstan/phpstan requirement from ^1.11.2 to ^1.11.3 (#69) (Commit c1625c0 by dependabot[bot])
2024-05-27 [TASK] Update phpstan/phpstan requirement from ^1.11.1 to ^1.11.2 (#67) (Commit a375df6 by dependabot[bot])
2024-05-27 [TASK] Update squizlabs/php_codesniffer requirement (#68) (Commit 31b3900 by dependabot[bot])
2024-05-27 [TASK] Update friendsofphp/php-cs-fixer requirement (#66) (Commit dee52e0 by dependabot[bot])
2024-05-20 [TASK] Update squizlabs/php_codesniffer requirement (#63) (Commit 91b3721 by dependabot[bot])
2024-05-20 [TASK] Update friendsofphp/php-cs-fixer requirement (#65) (Commit ce36975 by dependabot[bot])
2024-05-20 [TASK] Update phpstan/phpstan requirement from ^1.11.0 to ^1.11.1 (#64) (Commit af474a0 by dependabot[bot])
2024-05-20 [TASK] Update ssch/typo3-rector requirement from ^2.5.0 to ^2.6.0 (#62) (Commit 757a1dc by dependabot[bot])
2024-05-17 [TASK] Improve code quality (Commit be0452a by Simon Schaufelberger)
2024-05-17 [BUGFIX] Fix TypoScript constants category (Commit 7dcdb1d by Simon Schaufelberger)
2024-05-13 [TASK] Update phpstan/phpstan-phpunit requirement from ^1.3.16 to ^1.4.0 (#59) (Commit 036a3f9 by dependabot[bot])
2024-05-13 [TASK] Update friendsofphp/php-cs-fixer requirement (#60) (Commit 72044ef by dependabot[bot])
2024-05-13 [TASK] Update phpstan/phpstan requirement from ^1.10.67 to ^1.11.0 (#58) (Commit 34925a5 by dependabot[bot])
2024-05-06 [TASK] Update friendsofphp/php-cs-fixer requirement (#57) (Commit 9a58a98 by dependabot[bot])
2024-04-29 [TASK] Improve code quality for PHP 8.1 (Commit 9eb0cd6 by Simon Schaufelberger)
2024-04-29 [TASK] Improve CI and code quality (Commit 17d290a by Simon Schaufelberger)
2024-04-29 [TASK] Bump dependabot/fetch-metadata from 1.6.0 to 2.1.0 (Commit 519c469 by dependabot[bot])
2024-04-27 [TASK] Improve code (Commit dcc0362 by Simon Schaufelberger)
2024-04-24 [TASK] Update squizlabs/php_codesniffer requirement (Commit a27aa79 by dependabot[bot])
2024-04-17 [TASK] Update friendsofphp/php-cs-fixer requirement (Commit 3763dac by dependabot[bot])
2024-04-09 [TASK] Update friendsofphp/php-cs-fixer requirement (Commit c5eafee by dependabot[bot])
2024-04-01 [TASK] Update squizlabs/php_codesniffer requirement (Commit 63242be by dependabot[bot])
2024-03-20 [TASK] Update friendsofphp/php-cs-fixer requirement (Commit 8bc4f10 by dependabot[bot])
2024-03-19 [TASK] Update friendsofphp/php-cs-fixer requirement (Commit e868b45 by dependabot[bot])
2024-03-13 [FEATURE] Rename crowdin.yml to .crowdin.yml (Commit 66e963f by Simon Schaufelberger)
2024-02-29 [TASK] Update friendsofphp/php-cs-fixer requirement (Commit 5f5d4c5 by dependabot[bot])
2024-02-29 [TASK] Update helmich/typo3-typoscript-lint requirement (Commit af9a523 by dependabot[bot])
2024-02-27 [TASK] Update helmich/typo3-typoscript-lint requirement (Commit a98fc94 by dependabot[bot])
2024-02-26 [TASK] Update friendsofphp/php-cs-fixer requirement (Commit 5cddb1b by dependabot[bot])
2024-02-19 [TASK] Update squizlabs/php_codesniffer requirement (Commit f859c20 by dependabot[bot])
2024-02-16 [TASK] Update typo3/tailor requirement from ^1.5.0 to ^1.6.0 (Commit 1c4ebd2 by dependabot[bot])
2024-02-02 [TASK] Add commit message prefix (Commit d64546a by Simon Schaufelberger)
2024-02-02 [TASK] Update friendsofphp/php-cs-fixer requirement from ^3.48.0 to ^3.49.0 (Commit a4a0b99 by dependabot[bot])
2024-02-01 [TASK] Update typo3/testing-framework requirement from ^8.0.8 to ^8.0.9 (Commit dc2c4e3 by dependabot[bot])
2024-01-31 [TASK] Update ergebnis/composer-normalize requirement from ^2.41.1 to ^2.42.0 (Commit e936115 by dependabot[bot])
2024-01-26 [TASK] Move translation to Crowdin (Commit 7ade029 by Simon Schaufelberger)
2024-01-26 [TASK] Bump actions/cache from 3 to 4 (Commit d574f96 by dependabot[bot])
2024-01-26 [TASK] Bump actions/checkout from 2 to 4 (Commit f18077f by dependabot[bot])
2024-01-26 [TASK] Update ergebnis/composer-normalize requirement from ^2.28.3 to ^2.41.1 (Commit 3450139 by dependabot[bot])
2022-10-06 [TASK] TYPO3 12 LTS compatibility (#24) (Commit fab00e3 by Simon Schaufelberger)
2022-07-03 [TASK] Format table correctly (Commit 20f2f06 by Simon Schaufelberger)
Copied!

This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.

9.0.2 

All Changes 

This is a list of all changes in this release:

2022-07-03 [RELEASE] Release v9.0.2 (Commit dcfb347 by Simon Schaufelberger)
2022-07-03 [TASK] Use official TYPO3 API method (Commit 96b387c by Simon Schaufelberger)
2022-07-03 [TASK] Use more verbose variable names (Commit 038f816 by Simon Schaufelberger)
2022-07-03 [TASK] Improve cache path (Commit 08ed6b1 by Simon Schaufelberger)
2022-07-03 [TASK] Use correct variable data type (Commit 7e65f15 by Simon Schaufelberger)
2022-07-03 [TASK] Cleanup doc header (Commit e1c9984 by Simon Schaufelberger)
2022-07-03 [TASK] Ignore false positives from extension scanner (Commit c138dc6 by Simon Schaufelberger)
2022-07-03 [TASK] Ignore Build folder from export (Commit be31c2c by Simon Schaufelberger)
2022-06-09 Apply php-cs-fixer changes (Commit d0847bc by simonschaufi)
2022-06-09 [BUGFIX] Scan also files 1 level deep (Commit aba18c9 by Simon Schaufelberger)
2022-06-09 [TASK] Cleanup composer.json with things not needed anymore (Commit 2b0a49f by Simon Schaufelberger)
2022-06-09 [TASK] Import namespace (Commit 897d19b by Simon Schaufelberger)
2022-06-09 [TASK] Remove unnecessary function wrap (Commit a2a2656 by Simon Schaufelberger)
2022-06-09 [TASK] Update PHP and TYPO3 versions (Commit 861c8fe by Simon Schaufelberger)
2022-03-09 [TASK] Improve tests (Commit b6137f7 by Simon Schaufelberger)
2022-03-09 [BUGFIX] Adjust LanguageStore constructor arguments which changed in TYPO3 11.5.3 (Commit a8982da by Simon Schaufelberger)
2022-03-09 [TASK] Add allowed composer plugins (Commit 39c2034 by Simon Schaufelberger)
2021-11-11 [TASK] New Crowdin updates (#21) (Commit f0465cb by Simon Schaufelberger)
2021-11-02 New translations locallang_db.xlf (German) (Commit 8ec2eb1 by Simon Schaufelberger)
2021-11-02 New translations locallang.xlf (German) (Commit 8f065ca by Simon Schaufelberger)
2021-10-20 [TASK] Adjust TYPO3 badges (Commit d465961 by Simon Schaufelberger)
Copied!

This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.

9.0.1 

All Changes 

This is a list of all changes in this release:

2021-10-20 [RELEASE] Release v9.0.1 (Commit 38053b2 by Simon Schaufelberger)
2021-10-20 [TASK] Rename crowdin file (Commit ce0fe68 by Simon Schaufelberger)
2021-10-20 [TASK] Run tests with ^11.5 (Commit 90f5ab4 by Simon Schaufelberger)
2021-10-20 [BUGFIX] Fix broken compatibility with TYPO3 11.5 (Commit 7effe7a by Simon Schaufelberger)
2021-10-18 [DOCS] Add toc tree (Commit d4dca03 by Simon Schaufelberger)
2021-10-18 [DOCS] Improve documentation (Commit 46fa9c3 by Simon Schaufelberger)
Copied!

This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.

9.0.0 

All Changes 

This is a list of all changes in this release:

2021-09-09 [RELEASE] Release v9.0.0 (Commit bbd93fa by Simon Schaufelberger)
2021-09-09 [TASK] Make extension fully compatible with TYPO3 11.4 (Commit 5f71b79 by Simon Schaufelberger)
2021-07-20 [TASK] Mark master branch as compatible with TYPO3 11 (Commit 89ff600 by Simon Schaufelberger)
2021-07-20 [TASK] Add TYPO3 11 badge (Commit 9769374 by Simon Schaufelberger)
Copied!

This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.

8.0.0 

All Changes 

This is a list of all changes in this release:

2021-07-20 [RELEASE] Release v8.0.0 (Commit f9c8ebf by Simon Schaufelberger)
2021-07-20 [FEATURE] TYPO3 11 compatibility (#16) (Commit eb80b12 by Simon Schaufelberger)
2021-07-07 [TASK] Remove extension key (Commit 07a37c2 by Simon Schaufelberger)
2021-05-01 [BUGFIX] Lock typoscript parser to v2.2.1 (Commit 1d94cbf by Simon Schaufelberger)
Copied!

This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.

7.0.4 

All Changes 

This is a list of all changes in this release:

2021-05-01 [RELEASE] Release v7.0.4 (Commit a510147 by Simon Schaufelberger)
2021-05-01 [BUGFIX] Invalid cache identifier for image with parameters (#15) (Commit 6d136d1 by Simon Schaufelberger)
2021-05-01 [BUGFIX] Temporarily disable errors on typoscript linting (Commit f0aef99 by Simon Schaufelberger)
2021-04-30 [BUGFIX] Install tailor globally in publish GitHub action (Commit ecb29cc by Simon Schaufelberger)
Copied!

This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.

7.0.3 

All Changes 

This is a list of all changes in this release:

2021-04-30 [RELEASE] Release v7.0.3 (Commit a33b6b9 by Simon Schaufelberger)
2021-04-30 [TASK] Install tailor locally and limit the maximum TYPO3 version in dev mode (Commit dd81304 by Simon Schaufelberger)
2021-04-30 [BUGFIX] Description should be optional (#14) (Commit 267ac76 by Kees Sonnema)
2021-04-26 [TASK] Use short TYPO3 versions (Commit c271e18 by Simon Schaufelberger)
2021-04-23 Update .crowdin.yml (Commit 535b2be by Simon Schaufelberger)
2021-04-23 Update Crowdin configuration file (Commit 77d7208 by Simon Schaufelberger)
2021-04-23 Update Crowdin configuration file (Commit 141d095 by Simon Schaufelberger)
2021-01-21 [BUGFIX] Use older TYPO3 version for testing purposes (#12) (Commit 96d7422 by Simon Schaufelberger)
2021-01-21 [BUGFIX] Make image title required (Commit 0a83f67 by Simon Schaufelberger)
2020-12-10 [TASK] Apply TYPO3 coding standards (Commit a36c488 by Simon Schaufelberger)
2020-12-10 [BUGFIX] Proper handling of error message (Commit 3e85db4 by Simon Schaufelberger)
2020-12-09 [BUGFIX] Remove tailor as dev dependency (Commit 4e1de9b by Simon Schaufelberger)
Copied!

This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.

7.0.2 

Bugfix release 

Add publish GitHub workflow and use globbing in toctree changelog.

All Changes 

This is a list of all changes in this release:

2020-12-09 [TASK] Add publish GitHub workflow (Commit c412754 by Simon Schaufelberger)
2020-11-26 [TASK] Use globbing in toctree changelog (#7) (Commit 97c612b by Sybille Peters)
Copied!

This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.

7.0.1 

Bugfix release 

Use FAL to load the html template in the plugin settings. If you upgrade from TYPO3 9, the template needs to be reselected in the plugin configuration. If you set the template path via TypoScript, nothing needs to be done.

All Changes 

This is a list of all changes in this release:

2020-11-11 [BUGFIX] striphtml parameter interpretation (#6) (Commit 03ad532 by Stephan Tittel)
2020-11-06 Add pull_request_target event (Commit 2c755eb by Simon Schaufelberger)
2020-10-31 [TASK] Rename typoscript-lint config file (Commit 4a46769 by Simon Schaufelberger)
2020-10-31 [TASK] Add PAT to PHP CS fixer (Commit 511b2d4 by Simon Schaufelberger)
2020-10-31 [BUGFIX] Import template via FAL (#4) (Commit 2f37215 by Simon Schaufelberger)
2020-10-22 [TASK] Update link to documentation (Commit eaf33c8 by Simon Schaufelberger)
2020-10-22 [TASK] Update link to documentation (Commit 243281d by Simon Schaufelberger)
2020-10-21 [BUGFIX] Change release to master (Commit 7b25364 by Simon Schaufelberger)
2020-10-21 Update Index.rst (Commit e6549ac by Simon Schaufelberger)
2020-10-17 [TASK] Exclude Documentation for archive (Commit 0f9c739 by Simon Schaufelberger)
2020-10-16 [BUGFIX] Typo in documentation (Commit 46b859d by Simon Schaufelberger)
2020-10-16 Update issue search url (Commit f1496a3 by Simon Schaufelberger)
2020-10-16 Add PR and issue templates (Commit a62dbcb by Simon Schaufelberger)
2020-10-16 [BUGFIX] Update README (Commit 6fddb1a by Simon Schaufelberger)
Copied!

This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.

7.0.0 

Support for TYPO3 9 & 10 

This version supports TYPO3 9 and 10 LTS only.

Breaking changes 

The following changes should be carefully checked.

Renamed flexform keys 

The following flexform keys have been renamed to fix the typo. To use the new key, simply edit the content element and set the values again in the plugin configuration.

Old key New key
lenght length
hlenght hlength

6.0.5 

Bugfix release 

Make category an optional field

6.0.4 

Bugfix release 

Improve title and description

6.0.3 

Bugfix release 

Release correct version number

6.0.1 

Compatibility for TYPO3 8 

Huge refactoring to make the extension compatible with TYPO3 8

All Changes 

This is a list of all changes in this release:

2019-10-30 Release v6.0.0 (Commit 9407fa4 by Simon Schaufelberger)
2017-08-18 first commit (Commit 7d8f6d9 by Simon Schaufelberger)
Copied!

This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.

Sitemap