diff --git a/ChangeLog b/ChangeLog index b0cb418da16750afb440660482ebedc22103a1f3..ff43465890b1e6bc8f3c485b94d530ccb97aee71 100755 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ 2010-05-02 Benjamin Mack <benni@typo3.org> + * Updated NEWS.txt to reflect the breaking changes of Extbase * Fixed bug #14276: tceforms: Title of a record does not use API call to limit the character * Added feature #13379: Introduced a Sprite Icon API to render icons from sprites (Thanks to Thomas Allmer and Steffen Ritter) diff --git a/NEWS.txt b/NEWS.txt index 14d3f8cc510f81e75bc40b9ded222a91bd2d8256..31436033da2937f4f186114f4d62dd7fb02023ce 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -56,7 +56,7 @@ Frontend Compatibility ============= - * ... + * Extbase: has been updated to support "Single Table Inheritance" which is a breaking change. In TYPO3 4.3, Extbase made a "best guess" for the table name if it was not the lowercased class name (simply by crawling the class hierarchy upwards trying to find a mapping rule or table). This "magic" was removed because It was very hard to understand what was happening; especially if there was an error. This behaviour is now changed and you define the recordType and the tableName through TypoScript now. See the typo3.projecty.typo3v4mvc mailing list for more details on this topic. Development @@ -76,7 +76,7 @@ Development * The debug in BE was enhanced. There is a new debug console, which will show each debug in a single tab. The console will pop up as soon a debug statement is present. - * We now a new API in place to generate HTML <span> tags with corresponding CSS classes in order to display previously created sprite images in the right background position. Make sure to have a look at "t3lib_iconWorks::getSpriteIconForRecord($table, $row)", "t3lib_iconWorks::getSpriteIconForFile('myimage.png')", and "t3lib_iconWorks::getSpriteIcon('actions-document-open')". + * There is a new API in place to generate HTML <span> tags with corresponding CSS classes in order to display previously created sprite images in the right background position. Make sure to have a look at "t3lib_iconWorks::getSpriteIconForRecord($table, $row)", "t3lib_iconWorks::getSpriteIconForFile('myimage.png')", and "t3lib_iconWorks::getSpriteIcon('actions-document-open')". TypoScript changes