File tree Expand file tree Collapse file tree 7 files changed +47
-8
lines changed
Resources/Public/JavaScript Expand file tree Collapse file tree 7 files changed +47
-8
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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/" />
Original file line number Diff line number Diff 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 ) ;
Original file line number Diff line number Diff line change 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 ' => [
Original file line number Diff line number Diff line change 66use 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;
You can’t perform that action at this time.
0 commit comments