Skip to content

Commit

Permalink
[TASK] Release version 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fsuter committed Jan 13, 2019
1 parent 3704eae commit 29f957f
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 26 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Ensure compatibility with TYPO3 v9, resolves #62
* Ensure spinner icon is available, resolves #80
* Fix wrong check for 0-ish values, resolves #74
* Release version 4.1.0

2019-01-03 Francois Suter (Cobweb) <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion Documentation/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ External Import
data import, fetch data, services

:Copyright:
2007-2018
2007-2019

:Author:
François Suter (Cobweb)
Expand Down
39 changes: 19 additions & 20 deletions Documentation/Installation/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ connect to.
Automating the imports requires system extension "scheduler" or setting up
cron jobs calling the command-line controller.

TYPO3 CMS 7 or above is required. The command-line controller is only
available as of TYPO3 CMS 8.
TYPO3 CMS 8 or above is required.


.. _installation-compatibility:
Expand Down Expand Up @@ -87,38 +86,38 @@ As an example, usage of such properties should be changed from:

.. code-block:: php
$GLOBALS['TCA']['fe_users']['columns']['starttime']['external'] = array(
0 => array(
$GLOBALS['TCA']['fe_users']['columns']['starttime']['external'] = [
0 => [
'field' => 'start_date',
'trim' => true
'userFunc' => array(
'userFunc' => [
'class' => \Cobweb\ExternalImport\Task\DateTimeTransformation::class,
'method' => 'parseDate'
)
)
);
]
]
];


to:

.. code-block:: php
$GLOBALS['TCA']['fe_users']['columns']['starttime']['external'] = array(
0 => array(
$GLOBALS['TCA']['fe_users']['columns']['starttime']['external'] = [
0 => [
'field' => 'start_date',
'transformations => array(
10 => array(
'transformations => [
10 => [
'trim' => true
),
20 => array(
'userFunc' => array(
],
20 => [
'userFunc' => [
'class' => \Cobweb\ExternalImport\Task\DateTimeTransformation::class,
'method' => 'parseDate'
)
)
)
)
);
]
]
]
]
];


If you want to preserve "old-style" order, the transformation properties were called in the
Expand Down
6 changes: 3 additions & 3 deletions Documentation/Settings.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[general]
copyright = 2007-2018
copyright = 2007-2019
project = External Import
release = 4.0.2
version = 4.0
release = 4.1.0
version = 4.1

[notify]
about_new_build = [email protected]
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"Cobweb\\ExternalImport\\": "Classes/"
}
},
"version": "4.0.2",
"version": "4.1.0",
"require": {
"typo3/cms-core": ">=8.7.0,<10.0",
"cobweb/svconnector": ">=3.3.0"
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'createDirs' => '',
'clearCacheOnLoad' => 0,
'author_company' => '',
'version' => '4.0.2',
'version' => '4.1.0',
'constraints' =>
[
'depends' =>
Expand Down

0 comments on commit 29f957f

Please sign in to comment.