design-comuni-plone-theme 11.18.0 → 11.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +13 -0
- package/RELEASE.md +10 -0
- package/package.json +1 -1
- package/publiccode.yml +2 -2
- package/src/components/ItaliaTheme/Blocks/EventSearch/Body.jsx +1 -1
- package/src/components/ItaliaTheme/Blocks/UOSearch/Body.jsx +1 -1
- package/src/config/italiaConfig.js +10 -1
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [11.18.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.18.0...v11.18.1) (2024-07-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* removed fullobjects from query in EventSearch and UOSearch blocks ([#731](https://github.com/RedTurtle/design-comuni-plone-theme/issues/731)) ([1f48864](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1f48864869e2086f28671899a6acaca1b87c23a8))
|
|
9
|
+
* set maxFileUploadSize config setting to 100mb in binary ([#725](https://github.com/RedTurtle/design-comuni-plone-theme/issues/725)) ([8bd05c0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8bd05c039e753159421c6d94d5166b5657f7b92a))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Documentation
|
|
13
|
+
|
|
14
|
+
* updated publiccode and release log ([c91931e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c91931e4591165b313fe0ca32f9c09295a8bd784))
|
|
15
|
+
|
|
3
16
|
## [11.18.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.17.0...v11.18.0) (2024-07-19)
|
|
4
17
|
|
|
5
18
|
|
package/RELEASE.md
CHANGED
|
@@ -41,6 +41,12 @@
|
|
|
41
41
|
- ...
|
|
42
42
|
-->
|
|
43
43
|
|
|
44
|
+
## Versione 11.18.1 (25/07/2024)
|
|
45
|
+
|
|
46
|
+
### Fix
|
|
47
|
+
|
|
48
|
+
- Migliorata la visualizzazione delle card risultato nella ricerca Eventi e Unità Organizzativa.
|
|
49
|
+
|
|
44
50
|
## Versione 11.18.0 (19/07/2024)
|
|
45
51
|
|
|
46
52
|
### Migliorie
|
|
@@ -57,6 +63,10 @@
|
|
|
57
63
|
|
|
58
64
|
- Ripristinato il funzionamento del filtro luogo nella ricerca eventi.
|
|
59
65
|
|
|
66
|
+
### Migliorie
|
|
67
|
+
|
|
68
|
+
- Viene ora mostrato un errore parlante nel caso si tenti di caricare un file che superi le dimensioni massime consentite, di default 100mb, come già esplicitato sul manuale utente.
|
|
69
|
+
|
|
60
70
|
## Versione 11.16.0 (10/07/2024)
|
|
61
71
|
|
|
62
72
|
### Migliorie
|
package/package.json
CHANGED
package/publiccode.yml
CHANGED
|
@@ -227,9 +227,9 @@ maintenance:
|
|
|
227
227
|
name: io-Comune - Il sito AgID per Comuni ed Enti Pubblici
|
|
228
228
|
platforms:
|
|
229
229
|
- web
|
|
230
|
-
releaseDate: '2024-07-
|
|
230
|
+
releaseDate: '2024-07-25'
|
|
231
231
|
softwareType: standalone/web
|
|
232
|
-
softwareVersion: 11.18.
|
|
232
|
+
softwareVersion: 11.18.1
|
|
233
233
|
url: 'https://github.com/italia/design-comuni-plone-theme'
|
|
234
234
|
usedBy:
|
|
235
235
|
- ASP Comuni Modenesi Area Nord
|
|
@@ -98,8 +98,8 @@ const Body = ({ data, id, inEditMode, path, onChangeBlock }) => {
|
|
|
98
98
|
getQueryStringResults(
|
|
99
99
|
subsite ? flattenToAppURL(subsite['@id']) : '',
|
|
100
100
|
{
|
|
101
|
-
fullobjects: 1,
|
|
102
101
|
query: query,
|
|
102
|
+
metadata: '_all',
|
|
103
103
|
b_size: b_size,
|
|
104
104
|
sort_order: 'ascending',
|
|
105
105
|
sort_on: 'start',
|
|
@@ -127,6 +127,16 @@ export default function applyConfig(voltoConfig) {
|
|
|
127
127
|
errorPages: true,
|
|
128
128
|
},
|
|
129
129
|
},
|
|
130
|
+
/*
|
|
131
|
+
Set to 100mb in BINARY bytes, not decimal, see volto/helpers/FormValidation.js.validateFileUploadSize error message
|
|
132
|
+
...
|
|
133
|
+
messages.fileTooLarge, {
|
|
134
|
+
limit: `${Math.floor(
|
|
135
|
+
config.settings.maxFileUploadSize / 1024 / 1024,
|
|
136
|
+
)}MB`,
|
|
137
|
+
}
|
|
138
|
+
*/
|
|
139
|
+
maxFileUploadSize: 104857600,
|
|
130
140
|
querystringAdditionalFields: [],
|
|
131
141
|
searchBlockTemplates: [
|
|
132
142
|
'simpleCard',
|
|
@@ -305,7 +315,6 @@ export default function applyConfig(voltoConfig) {
|
|
|
305
315
|
component: SiteSettingsExtras,
|
|
306
316
|
},
|
|
307
317
|
],
|
|
308
|
-
maxFileUploadSize: null,
|
|
309
318
|
'volto-blocks-widget': {
|
|
310
319
|
allowedBlocks: [
|
|
311
320
|
...(config.settings['volto-blocks-widget']?.allowedBlocks ?? []).filter(
|