From 625a3af1cdc6e8a2577063e47a081556bf40171c Mon Sep 17 00:00:00 2001 From: Alexander Bigga Date: Tue, 31 May 2022 14:14:35 +0200 Subject: [PATCH] Add basic wrap for long links and rise version number --- Documentation/Settings.cfg | 4 ++-- Resources/Public/Css/zotero.css | 4 ++++ ext_emconf.php | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Documentation/Settings.cfg b/Documentation/Settings.cfg index 2dc6853..7dad981 100644 --- a/Documentation/Settings.cfg +++ b/Documentation/Settings.cfg @@ -1,7 +1,7 @@ [general] -copyright = 2019 +copyright = 2019-2022 project = SLUB Zotero -release = 1.0.0 +release = 2.0.0 [html_theme_options] github_branch = master diff --git a/Resources/Public/Css/zotero.css b/Resources/Public/Css/zotero.css index 47c081b..9ef2f15 100644 --- a/Resources/Public/Css/zotero.css +++ b/Resources/Public/Css/zotero.css @@ -36,3 +36,7 @@ div.tx-slub-zotero ul.toc li { div.tx-slub-zotero ul.toc li a { text-decoration: none; } + +a { + word-break: break-word; +} diff --git a/ext_emconf.php b/ext_emconf.php index 03a1b03..f197d88 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -21,10 +21,10 @@ 'uploadfolder' => '0', 'createDirs' => '', 'clearCacheOnLoad' => 0, - 'version' => '1.0.0', + 'version' => '2.0.0', 'constraints' => [ 'depends' => [ - 'typo3' => '7.6.0-9.5.99', + 'typo3' => '9.5.0-10.4.99', ], 'conflicts' => [], 'suggests' => [],