Skip to content

Latest commit

 

History

History
90 lines (62 loc) · 4.62 KB

CHANGELOG.md

File metadata and controls

90 lines (62 loc) · 4.62 KB

Fluidpages Change log

Upcoming

  • #278 Allow raw content be put into section of a template

    • New section HeaderCode should be used in your page templates for this
    • Beware, that if you used such section name for your own purposes, you need to rename it
  • 'enabled' flux form attribute is respected, when building list of available page templates

  • #279 Avoid error is not a valid template resource URI ...Resources/Private/Templates/Page/.

3.3.1 - 2015-08-08

  • No important changes

3.3.0 - 2015-08-08

  • Support of TYPO3 7.4 added

  • Support of upcoming Flux 7.3 added

  • #261 Multi-domain installations can rely on static TS inclusion of provider extension

    • In other words: no more output of any page layouts on those page-tree branches, where no TS from provider extension included
  • #259 plugin.tx_fluidpages.siteRootInheritance = 0 also affects sub-pages selector now

3.2.3 - 2015-05-20

  • #257 Runtime cache for inherited values implemented, which speeds up BE and FE page load on deep pages of a page tree

3.2.2 - 2015-04-26

3.2.1 - 2015-04-23

  • #252 Bugfix for incorrectly resolved main/sub provider and template resulting in use of wrong page configuration and broken inheritance

  • #241 Bugfix for saving incomplete page records when working in the page tree or access module

3.2.0 - 2015-03-18

  • ❗ Legacy TYPO3 support removed and dependencies updated

    • TYPO3 6.2 is minimum required
    • TYPO3 7.1 is supported
    • Flux 7.2 is minimum required
    • ClassAliasMap removed - switch to the proper vendor and namespace
  • ❗ Legacy support for TS registration removed

  • \FluidTYPO3\Fluidpages\Controller\AbstractPageController deprecated

  • #226 Possible to use 'templateRootPaths' (plural) option from TYPO3 6.2 to overload template paths

    • plugin.tx_yourext.view.templateRootPaths syntax is supported
    • 'templateRootPath' (singular) and 'overlays' are deprecated
    • FluidTYPO3/flux#758 - source feature
  • #208 Template icon can be autoloaded, based on name convention

    • Template EXT:extensionKey/Resources/Private/Templates/$controller/$templateName.html loads an icon from EXT:extensionKey/Resources/Public/Icons/$controller/$templateName.(png|gif)
    • Icon can be set manually via option attribute as before
    • FluidTYPO3/flux#687 - source feature
  • Unassigned content areas are supported

    • Content area without 'colPos' key is marked as 'unassigned'
    • TYPO3 Displays is as shaded area with no editing
    • Possible use-case: programatically created content, which shouldn't be editable, but must be visible for editors
    • Source commit with more info
  • #229 Inheritance support assimilated from Flux

  • Truncating of inherited values fixed

    • The problem was in persisting inherited FlexForm values in child pages, when saving them - this made no possibility to change inherited value by only changing it in parent page
    • FluidTYPO3/flux#712 - detailed description and discussion of this issue