design-comuni-plone-theme 11.34.0 → 11.34.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.
Binary file
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
 
2
2
 
3
+ ## [11.34.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.34.0...v11.34.1) (2025-10-03)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * porting of https://github.com/plone/volto/pull/7390 ([be70192](https://github.com/RedTurtle/design-comuni-plone-theme/commit/be701920de7da185bb2987411e8b80aceeb03f9d))
9
+
3
10
  ## [11.34.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.33.1...v11.34.0) (2025-10-03)
4
11
 
5
12
 
package/RELEASE.md CHANGED
@@ -41,6 +41,12 @@
41
41
  - ...
42
42
  -->
43
43
 
44
+ ## Versione 11.34.1 (03/10/2025)
45
+
46
+ ### Fix
47
+
48
+ - Risolto un problema di performance nel mostrare alcune immagini.
49
+
44
50
  ## Versione 11.34.0 (03/10/2025)
45
51
 
46
52
  ### Migliorie
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "design-comuni-plone-theme",
3
3
  "description": "Volto Theme for Italia design guidelines",
4
4
  "license": "GPL-v3",
5
- "version": "11.34.0",
5
+ "version": "11.34.1",
6
6
  "main": "src/index.js",
7
7
  "repository": {
8
8
  "type": "git",
package/publiccode.yml CHANGED
@@ -229,7 +229,7 @@ platforms:
229
229
  - web
230
230
  releaseDate: '2025-10-03'
231
231
  softwareType: standalone/web
232
- softwareVersion: 11.34.0
232
+ softwareVersion: 11.34.1
233
233
  url: 'https://github.com/italia/design-comuni-plone-theme'
234
234
  usedBy:
235
235
  - ASP Comuni Modenesi Area Nord
@@ -85,7 +85,7 @@ const FileWidget = (props) => {
85
85
  }, [value]);
86
86
 
87
87
  const imgsrc = value?.download
88
- ? `${flattenToAppURL(value?.download)}?id=${Date.now()}`
88
+ ? `${flattenToAppURL(value?.download)}`
89
89
  : null || value?.data
90
90
  ? `data:${value['content-type']};${value.encoding},${value.data}`
91
91
  : null;