diff --git a/Configuration/Backend/Modules.php b/Configuration/Backend/Modules.php index 01e230b3..ce5f7708 100644 --- a/Configuration/Backend/Modules.php +++ b/Configuration/Backend/Modules.php @@ -37,6 +37,11 @@ 'remove', 'deactivate', 'resetFilter', + 'companies', + 'companiesDisabled', + 'company', + 'downloadCsvCompanies', + 'removeCompany', ], \In2code\Lux\Controller\GeneralController::class => [ 'information', diff --git a/Documentation/Technical/Changelog/Index.md b/Documentation/Technical/Changelog/Index.md index abd9741b..4a6df55c 100644 --- a/Documentation/Technical/Changelog/Index.md +++ b/Documentation/Technical/Changelog/Index.md @@ -31,6 +31,7 @@ Double check if you have cleared all caches after installing a new LUX version t | Version | Date | State | TYPO3 | Description | |------------|------------|----------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 36.3.1 | 2024-08-20 | Task | `11.5 + 12.4` | Fix a crosslink from lead detail view in Analysis module back to companies view | | 36.3.0 | 2024-08-16 | Task | `11.5 + 12.4` | Add more KI user agents to blocklist, fix company scoring value in list view | | 36.2.0 | 2024-08-05 | Task | `11.5 + 12.4` | Add main configuration to stop/enable exception logging, extend lists of bots/spider user agent to prevent unneeded tracking | | 36.1.1 | 2024-08-01 | Bugfix | `11.5 + 12.4` | Use site.identifier instead of websiteTitle in all filters, fix possible exception on CLI commands, increase field size of attribute.value, fix small typo in docs | diff --git a/ext_emconf.php b/ext_emconf.php index a79db3f8..31cb12f7 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,7 +4,7 @@ 'description' => 'Living User Experience - LUX - the Marketing Automation tool for TYPO3. Turn your visitors to leads. Identification and profiling of your visitors within your TYPO3 website.', 'category' => 'plugin', - 'version' => '36.3.0', + 'version' => '36.3.1', 'author' => 'Alex Kellner', 'author_email' => 'alexander.kellner@in2code.de', 'author_company' => 'in2code.de', diff --git a/ext_tables.php b/ext_tables.php index 45ef063d..0701cbcb 100644 --- a/ext_tables.php +++ b/ext_tables.php @@ -74,8 +74,8 @@ function () { \In2code\Lux\Controller\AnalysisController::class => 'dashboard,content,news,linkListener,search,deleteLinkListener,detailPage' . ',detailNews,detailSearch,detailDownload,detailLinkListener,resetFilter,utm', - \In2code\Lux\Controller\LeadController::class => - 'dashboard,list,detail,downloadCsv,remove,deactivate,resetFilter', + \In2code\Lux\Controller\LeadController::class => 'dashboard,list,detail,downloadCsv,remove,' . + 'deactivate,resetFilter,companies,companiesDisabled,company,downloadCsvCompanies,removeCompany', \In2code\Lux\Controller\GeneralController::class => 'information' ], [