diff --git a/Changelog b/Changelog deleted file mode 100644 index b0955ac..0000000 --- a/Changelog +++ /dev/null @@ -1,30 +0,0 @@ -Version 3.0.1 (2021-10-11) - BUGFIX: remove lazy loading for news and fe_user in order to get data in list view straight away - - All changes - https://github.com/cdaecke/md_unreadnews/compare/3.0.0...3.0.1 - -Version 3.0.0 (2020-10-26) - TYPO3 10 compatibility - FEATURE: add scheduler task to automatically remove unread information - - All changes - https://github.com/cdaecke/md_unreadnews/compare/2.0.0...3.0.0 - -Version 2.0.0 (2019-07-12) - FEATURE: add "lib.mdAllUnreadCount" which adds a counter for all unread news per user - FEATURE: add plugin to show a list of unread news - FEATURE: update unread info, if news records gets updated - FEATURE: delete unread information if news record gets deleted - - Update procedure: - Please run following SQL queries right after updating the extension: - - ALTER TABLE `tx_mdunreadnews_domain_model_unreadnews` DROP INDEX `ids`; - ALTER TABLE `tx_mdunreadnews_domain_model_unreadnews` CHANGE `news_uid` `news` INT(11) NOT NULL DEFAULT '0'; - ALTER TABLE `tx_mdunreadnews_domain_model_unreadnews` CHANGE `feuser_uid` `feuser` INT(11) NOT NULL DEFAULT '0'; - - Go to install tool and run "Database analyzer" to finish the update - - All changes - https://github.com/cdaecke/md_unreadnews/compare/1.0.0...2.0.0 diff --git a/Changelog.md b/Changelog.md new file mode 100644 index 0000000..ad2ebcb --- /dev/null +++ b/Changelog.md @@ -0,0 +1,44 @@ +# Version 4.0.0 (2021-12-29) +- [FEATURE] TYPO3 11 compatibility +- [TASK] Dependency to ext:numbered_pagination was added. + +## BREAKING +- `List.html`-Template was changed. +- New paginator was introduced, so partial needs to be change, if you use your own. + +## Important +Clear cache in install tool, in oder to get everything working! + +All changes +https://github.com/cdaecke/md_unreadnews/compare/3.0.1...4.0.0 + +# Version 3.0.1 (2021-10-11) +- [BUGFIX] remove lazy loading for news and fe_user in order to get data in list view straight away + +All changes +https://github.com/cdaecke/md_unreadnews/compare/3.0.0...3.0.1 + +# Version 3.0.0 (2020-10-26) +- [FEATURE] TYPO3 10 compatibility +- [FEATURE] add scheduler task to automatically remove unread information + +All changes +https://github.com/cdaecke/md_unreadnews/compare/2.0.0...3.0.0 + +# Version 2.0.0 (2019-07-12) +- [FEATURE] add "lib.mdAllUnreadCount" which adds a counter for all unread news per user +- [FEATURE] add plugin to show a list of unread news +- [FEATURE] update unread info, if news records gets updated +- [FEATURE] delete unread information if news record gets deleted + +## Update procedure +Please run following SQL queries right after updating the extension: + + ALTER TABLE `tx_mdunreadnews_domain_model_unreadnews` DROP INDEX `ids`; + ALTER TABLE `tx_mdunreadnews_domain_model_unreadnews` CHANGE `news_uid` `news` INT(11) NOT NULL DEFAULT '0'; + ALTER TABLE `tx_mdunreadnews_domain_model_unreadnews` CHANGE `feuser_uid` `feuser` INT(11) NOT NULL DEFAULT '0'; + +Go to install tool and run `Database analyzer` to finish the update + +All changes +https://github.com/cdaecke/md_unreadnews/compare/1.0.0...2.0.0 diff --git a/Readme.md b/Readme.md index 63a9032..fcb133c 100644 --- a/Readme.md +++ b/Readme.md @@ -6,7 +6,7 @@ The extension is shipped with typoscript libraries, which can be included at des ## Requirements -- TYPO3 >= 9.5 +- TYPO3 >= 10.4 - ext:news >= 7.0 ## Screenshots diff --git a/composer.json b/composer.json index 63a8acf..65a06c8 100644 --- a/composer.json +++ b/composer.json @@ -22,8 +22,9 @@ "source": "https://github.com/cdaecke/md_unreadnews" }, "require": { - "typo3/cms-core": "^9.5 || ^10.4", - "georgringer/news": ">=7.0,<9.0" + "typo3/cms-core": "^10.4 || ^11.5", + "georgringer/news": ">=7.0,<10.0", + "georgringer/numbered-pagination": ">=1.0.1,<2.0.0" }, "autoload": { "psr-4": { diff --git a/ext_emconf.php b/ext_emconf.php index a979501..166252d 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -20,11 +20,12 @@ 'uploadfolder' => 0, 'createDirs' => '', 'clearCacheOnLoad' => 0, - 'version' => '3.0.1', + 'version' => '4.0.0', 'constraints' => [ 'depends' => [ - 'typo3' => '9.5.0-10.4.99', - 'news' => '7.0.0-8.99.99', + 'typo3' => '10.4.0-11.5.99', + 'news' => '7.0.0-9.99.99', + 'numbered_pagination' => '1.0.1-1.99.99', ], 'conflicts' => [], 'suggests' => [],