Skip to content

Commit

Permalink
Merge pull request #45 from sudhaus7/task/version-release
Browse files Browse the repository at this point in the history
[TASK] Prepare release 5.0.2
  • Loading branch information
calien666 committed Feb 8, 2024
2 parents f87790b + 1a03764 commit 15ed610
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 16 deletions.
14 changes: 8 additions & 6 deletions Documentation/Configuration/Index.rst
Expand Up @@ -16,6 +16,13 @@ This section describes the configuration options for XLS importer.

Adding configuration needs a TCA defined table.

.. _extension_setup:

Extension Setup
^^^^^^^^^^^^^^^

Go to `Install Tool > Settings > Extension Settings` and add your tables as
comma separated list.

.. _module_setup:

Expand All @@ -24,19 +31,14 @@ Module Setup

Add the TypoScript setup as usual to your sitepackage
extension configuration file
:file:`mysitepackage/Configuration/TypoScript/setup.typoscript`::
:file:`mysitepackage/Configuration/TSConfig/PageTS/tx_xlsimport.tsconfig`::

module.tx_xlsimport {
settings {
allowedTables := addToList(tt_address)
}
}

.. note::
If you have problems overwriting the configuration in your sitepackage,
make sure to select "Include before all static templates if root flag is
set" from the "Static Template Files from TYPO3 Extensions" dropdown
list in your TypoScript template.

Every TCA defined table could be used. Field names are taken by locallang
files, so localization is done.
4 changes: 2 additions & 2 deletions composer.json
Expand Up @@ -102,9 +102,9 @@
"prepare-release": [
"rm -rf .run",
"rm -rf .config",
"composer rm typo3/cms-core --no-progress --no-update",
"composer remove typo3/cms-core --no-progress --no-update",
"composer install --no-dev --ignore-platform-reqs --no-progress",
"composer req 'typo3/cms-core:^11.5 || ^12.4' --no-progress --no-update"
"composer require 'typo3/cms-core:^11.5 || ^12.4' --no-progress --no-update"
]
}
}
6 changes: 3 additions & 3 deletions ext_emconf.php
@@ -1,17 +1,17 @@
<?php

$EM_CONF['xlsimport'] = [
$EM_CONF[$_EXTKEY] = [
'title' => '(Sudhaus7) XLS Importer',
'description' => 'A simple importer to import data into the database',
'category' => 'module',

'version' => '5.0.1',
'version' => '5.0.2',
'state' => 'stable',
'uploadfolder' => 1,
'clearcacheonload' => 0,
'author' => 'Frank Berger, Markus Hofmann & Daniel Simon',
'author_email' => 'fberger@sudhaus7.de',
'author_company' => 'Sudhaus7, ein Label der B-Factor GmbH',
'author_company' => 'Sudhaus7, a label of B-Factor GmbH',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-12.4.99',
Expand Down
5 changes: 0 additions & 5 deletions ext_typoscript_setup.typoscript

This file was deleted.

0 comments on commit 15ed610

Please sign in to comment.