Skip to content

Commit dd8a3cb

Browse files
authored
Merge pull request #69 from Kephson/TYPO3_13
[BUGFIX] fix eventHandler to show modal window for moving elements
2 parents 33bb4b8 + 5ada666 commit dd8a3cb

File tree

7 files changed

+47
-8
lines changed

7 files changed

+47
-8
lines changed
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
3.0.2 - November 18, 2024
2+
=========================
3+
4+
.. include:: ../../Includes.txt
5+
6+
.. only:: html
7+
8+
.. contents::
9+
:local:
10+
:depth: 3
11+
12+
13+
Important changes
14+
-----------------
15+
16+
All Changes
17+
-----------
18+
This is a list of all changes in this release: ::
19+
20+
- [BUGFIX] fix eventHandler to show modal window for moving elements
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
4.0.1 - November 18, 2024
2+
=========================
3+
4+
.. include:: ../../Includes.txt
5+
6+
.. only:: html
7+
8+
.. contents::
9+
:local:
10+
:depth: 3
11+
12+
13+
Important changes
14+
-----------------
15+
16+
All Changes
17+
-----------
18+
This is a list of all changes in this release: ::
19+
20+
- [BUGFIX] fix eventHandler to show modal window for moving elements

Documentation/Misc/Changelog/Index.rst

+2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ List of versions
2020
:titlesonly:
2121
:glob:
2222

23+
4-0-1
2324
4-0-0
25+
3-0-2
2426
3-0-1
2527
3-0-0
2628
2-0-5

Documentation/guides.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
edit-on-github="Kephson/paste_reference"
1212
typo3-core-preferred="stable"/>
1313
<project title="Paste reference"
14-
release="3.0.0"
15-
version="3.0"
16-
copyright="2023"/>
14+
release="4.0.1"
15+
version="4.0"
16+
copyright="2024"/>
1717
<inventory id="t3tsref" url="https://docs.typo3.org/typo3cms/TyposcriptReference/"/>
1818
<inventory id="t3editors" url="https://docs.typo3.org/typo3cms/EditorsTutorial/"/>
1919
<inventory id="t3start" url="https://docs.typo3.org/typo3cms/GettingStartedTutorial/"/>

Resources/Public/JavaScript/paste-reference.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Paste.activatePasteModal = function(element) {
149149
},
150150
{
151151
text: TYPO3.lang['paste.modal.button.paste'] || 'Move',
152-
btnClass: 'btn-' + Severity.getCssClass(severity),
152+
btnClass: 'btn-' + top.TYPO3.Severity.getCssClass(severity),
153153
trigger: function(evt, modal) {
154154
modal.hideModal();
155155
DragDrop.default.onDrop(top.itemOnClipboardUid, element, null);

ext_emconf.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@
1111
'title' => 'Paste reference for content elements',
1212
'description' => 'Paste reference instead of copy for content elements',
1313
'category' => 'plugin',
14-
'version' => '4.0.0',
14+
'version' => '4.0.1',
1515
'constraints' => [
1616
'depends' => [
17-
// 13.3.1 was a security release
1817
'typo3' => '13.3.1-13.4.99',
1918
],
2019
'conflicts' => [

ext_tables.php

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
77

88
(static function () {
9-
10-
119
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['processCmdmapClass'][] = DataHandler::class;
1210
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['processDatamapClass'][] = DataHandler::class;
1311
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['moveRecordClass'][] = DataHandler::class;

0 commit comments

Comments
 (0)