Skip to content

Commit 65cfc17

Browse files
committed
Version 4.10
2 parents ec46eb8 + b6d86c4 commit 65cfc17

6 files changed

Lines changed: 21 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# (MODX)EvolutionCMS.plugins.ManagerManager.mm_ddMultipleFields changelog
22

33

4+
## Version 4.10 (2023-03-11)
5+
* \* Richtext column: Style of text editor window has been improved.
6+
7+
48
## Version 4.9 (2022-05-26)
59
* \+ Parameters → `$params->columns[i]['alias']`:
610
* \+ The new optional parameter. Provides the ability to set a custom result key for each column instead of simple numeric index.

CHANGELOG_ru.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# (MODX)EvolutionCMS.plugins.ManagerManager.mm_ddMultipleFields changelog
22

33

4+
## Версия 4.10 (2023-03-11)
5+
* \* Колонка `richtext`: Улучшен стиль окна редактора.
6+
7+
48
## Версия 4.9 (2022-05-26)
59
* \+ Параметры → `$params->columns[i]['alias']`:
610
* \+ Новый необязательный параметр. Обеспечивает возможность задать произвольный ключ каждой колонки в результатах вместо простого нумерованного индекса.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dd/evolutioncms-plugins-managermanager-mm_ddmultiplefields",
3-
"version": "4.9.0",
3+
"version": "4.10.0",
44
"description": "Widget for plugin ManagerManager that allows you to add any number of fields values (TV) in one document (values are written in field as a JSON object). For example: a few images.",
55
"keywords": [
66
"modx",

ddmultiplefields.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22
/**
33
* (MODX)EvolutionCMS.plugins.ManagerManager.mm_ddMultipleFields
4-
* @version 4.9 (2022-05-26)
4+
* @version 4.10 (2023-03-11)
55
*
66
* @link https://code.divandesign.biz/modx/mm_ddmultiplefields
77
*
8-
* @copyright 2012–2022 DD Group {@link http://DivanDesign.biz }
8+
* @copyright 2012–2023 DD Group {@link http://DivanDesign.biz }
99
*/
1010

1111
function mm_ddMultipleFields($params){

richtext/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
MODX_MANAGER_URL .
119119
'media/style/' .
120120
$modx->getConfig('manager_theme') .
121-
'/style.css'
121+
'/css/styles.min.css'
122122
,
123123
'tinyMCE' => $temp[0]
124124
],

richtext/style.css

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
html,
22
body {
3+
box-sizing: border-box;
34
height: 100%;
45
}
56

7+
body {
8+
display: flex;
9+
flex-direction: column;
10+
}
11+
612
textarea {
7-
width: 100%;
8-
min-height: 250px;
913
box-sizing: border-box;
10-
height: calc(100% - 45px);
14+
width: 100%;
15+
height: 100%;
1116
}
1217

1318
.buttons {
14-
padding-top: 10px;
19+
padding: 10px;
1520
text-align: right;
1621
}
1722

0 commit comments

Comments
 (0)