Skip to content

Commit

Permalink
Merge branch 'release/35.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
einpraegsam committed May 27, 2024
2 parents 44310af + 67ff12e commit c69afae
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Documentation/Technical/API/Create.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ want to add the attribute "newsletter" with value 1 for a possible newsletter re
"properties": {
"visitor": {
"attributes": {
"": {
"0": {
"name": "newsletter",
"value": "1"
}
Expand All @@ -94,7 +94,7 @@ want to add the attribute "newsletter" with value 1 for a possible newsletter re
CURL example:

```
curl -k -d 'tx_luxenterprise_api[arguments]={"endpoint":"create","merge":{"mergeByEmail":0,"mergeByFingerprint":1},"properties":{"visitor":{"attributes":{"":{"name":"newsletter","value":"1"}},"fingerprints":{"0":{"value":"abcdef123456789foobar"}}}}}' -H 'Api-Key: abc...' --url https://www.in2code.de/luxenterprise_api.json
curl -k -d 'tx_luxenterprise_api[arguments]={"endpoint":"create","merge":{"mergeByEmail":0,"mergeByFingerprint":1},"properties":{"visitor":{"attributes":{"0":{"name":"newsletter","value":"1"}},"fingerprints":{"0":{"value":"abcdef123456789foobar"}}}}}' -H 'Api-Key: abc...' --url https://www.in2code.de/luxenterprise_api.json
```

**Note:** If you want to get the fingerprint value of the current visitor via JavaScript, following example could help:
Expand Down
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.3.0 | 2024-05-27 | Feature | `11.5 + 12.4` | Show also first page visit and referrer in CSV downloads of lead list |
| 35.2.1 | 2024-05-16 | Bugfix | `11.5 + 12.4` | Fix lead search with space character in searchterm in lead list, small fix in API documentation |
| 35.2.0 | 2024-04-27 | Feature | `11.5 + 12.4` | Extend frontend JS for another callback function for adding text anywhere in the DOM |
| 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 |
Expand Down
4 changes: 2 additions & 2 deletions Resources/Private/Templates/Lead/DownloadCsv.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<f:spaceless>
<lux:format.quotes>Lead Ident</lux:format.quotes>;<lux:format.quotes>Lead Scoring</lux:format.quotes>;<lux:format.quotes>Email</lux:format.quotes>;<lux:format.quotes>Company</lux:format.quotes>;<lux:format.quotes>Last Visit</lux:format.quotes>;<lux:format.quotes>Number of Visits</lux:format.quotes>;<lux:format.quotes>Country</lux:format.quotes>;<lux:format.quotes>Last visit</lux:format.quotes>;<lux:format.quotes>Last download</lux:format.quotes>
<f:for each="{allVisitors}" as="visitor"><lux:format.quotes>{visitor.fullName}</lux:format.quotes>;<lux:format.quotes>{visitor.scoring}</lux:format.quotes>;<lux:format.quotes>{visitor.email}</lux:format.quotes>;<lux:format.quotes>{visitor.company}</lux:format.quotes>;<lux:format.quotes>{f:format.date(date:visitor.dateOfLastVisit,format:'{f:translate(key:\'LLL:EXT:lux/Resources/Private/Language/locallang_db.xlf:date\')}')}</lux:format.quotes>;<lux:format.quotes>{visitor.visits}</lux:format.quotes>;<lux:format.quotes>{visitor.country}</lux:format.quotes>;<lux:format.quotes>{visitor.pagevisitLast.crdate -> f:format.date(format:'Y-m-d')}</lux:format.quotes>;<lux:format.quotes>{visitor.lastDownload.crdate -> f:format.date(format:'Y-m-d')}</lux:format.quotes>
<lux:format.quotes>Lead Ident</lux:format.quotes>;<lux:format.quotes>Lead Scoring</lux:format.quotes>;<lux:format.quotes>Email</lux:format.quotes>;<lux:format.quotes>Company</lux:format.quotes>;<lux:format.quotes>Country</lux:format.quotes>;<lux:format.quotes>Source</lux:format.quotes>;<lux:format.quotes>Number of Visits</lux:format.quotes>;<lux:format.quotes>Last Visit</lux:format.quotes>;<lux:format.quotes>First visit</lux:format.quotes>;<lux:format.quotes>Last download</lux:format.quotes>
<f:for each="{allVisitors}" as="visitor"><lux:format.quotes>{visitor.fullName}</lux:format.quotes>;<lux:format.quotes>{visitor.scoring}</lux:format.quotes>;<lux:format.quotes>{visitor.email}</lux:format.quotes>;<lux:format.quotes>{visitor.company}</lux:format.quotes>;<lux:format.quotes>{visitor.country}</lux:format.quotes>;<lux:format.quotes>{visitor.pagevisitFirst.referrer}</lux:format.quotes>;<lux:format.quotes>{visitor.visits}</lux:format.quotes>;<lux:format.quotes>{f:format.date(date:visitor.dateOfLastVisit,format:'{f:translate(key:\'LLL:EXT:lux/Resources/Private/Language/locallang_db.xlf:date\')}')}</lux:format.quotes>;<lux:format.quotes>{visitor.pagevisitFirst.crdate -> f:format.date(format:'{f:translate(key:\'LLL:EXT:lux/Resources/Private/Language/locallang_db.xlf:date\')}')}</lux:format.quotes>;<lux:format.quotes>{visitor.lastDownload.crdate -> f:format.date(format:'{f:translate(key:\'LLL:EXT:lux/Resources/Private/Language/locallang_db.xlf:date\')}')}</lux:format.quotes>
</f:for>
</f:spaceless>
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.2.1',
'version' => '35.3.0',
'author' => 'Alex Kellner',
'author_email' => '[email protected]',
'author_company' => 'in2code.de',
Expand Down

0 comments on commit c69afae

Please sign in to comment.