Skip to content

Commit

Permalink
Merge branch 'release/35.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
einpraegsam committed Apr 22, 2024
2 parents cf5f15a + e95bd0c commit 8e64a1a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions Documentation/Technical/Changelog/Index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Double check if you have cleared all caches after installing a new LUX version t

| Version | Date | State | TYPO3 | Description |
|------------|------------|----------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 35.1.0 | 2024-04-22 | Feature | `11.5 + 12.4` | Add possibility to use an existing event in own JS after an action was performed |
| 35.0.2 | 2024-04-17 | Bugfix | `11.5 + 12.4` | Fix scoring calculation in frontend requests |
| 35.0.1 | 2024-04-11 | Bugfix | `11.5 + 12.4` | Prevent possible exception when opening A/B Testing module on an empty installation, update disallowed mail provider list |
| 35.0.0 !!! | 2024-03-26 | Feature | `11.5 + 12.4` | Support multiclient usage now, small performance improvements, update social media resources, unify filters in backend modules |
Expand Down
8 changes: 8 additions & 0 deletions Resources/Private/Build/JavaScript/Frontend/Lux.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ function LuxMain() {
/**
* Callback and dispatcher function for all workflow actions (part of the Enterprise Edition)
*
* Signal can be used in own code after action is performed with:
* document.addEventListener('luxWorkflowAction', (event) => {
* console.log(event);
* })
*
* @params {Json} response
* @returns {void}
*/
Expand All @@ -125,6 +130,9 @@ function LuxMain() {
that[response[i]['action'] + 'WorkflowAction'](response[i]);
} catch (error) {
console.log(error);
} finally {
const event = new CustomEvent('luxWorkflowAction', { detail: response[i] });
window.dispatchEvent(event);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion Resources/Public/JavaScript/Lux/Lux.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' => '35.0.2',
'version' => '35.1.0',
'author' => 'Alex Kellner',
'author_email' => 'alexander.kellner@in2code.de',
'author_company' => 'in2code.de',
Expand Down

0 comments on commit 8e64a1a

Please sign in to comment.