You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added:
- β¨ Add comments feature to the editor
- β¨(backend) Comments on text editor
- β¨(frontend) link to create new doc
Changed:
- β‘οΈ(sw) stop to cache external resources likes videos
- π₯(frontend) upgrade to ui-kit v2
- β‘οΈ(frontend) improve perf on upload and table of contents
- βΏ(frontend) improve accessibility:
- βΏ(frontend) improve share modal button accessibility
- βΏ(frontend) improve screen reader support in DocShare modal
Fixed:
- π(frontend) fix toolbar not activated when reader
- π(frontend) preserve left panel width on window resize
- π(frontend) prevent duplicate as first character in title
Copy file name to clipboardExpand all lines: UPGRADE.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,29 @@ the following command inside your docker container:
16
16
17
17
## [Unreleased]
18
18
19
+
## [4.0.0] - 2025-11-26
20
+
21
+
- β οΈ We updated `@gouvfr-lasuite/ui-kit` to `0.18.0`, so if you are customizing Docs with a css layer or with a custom template, you need to update your customization to follow the new design system structure.
22
+
More information about the changes in the design system can be found here:
- If you were using the `THEME_CUSTOMIZATION_FILE_PATH` and have overridden the header logo, you need to update your customization file to follow the new structure of the header, it is now:
28
+
```json
29
+
{
30
+
...,
31
+
"header": {
32
+
"icon": {
33
+
"src": "your_logo_src",
34
+
"width": "your_logo_width",
35
+
"height": "your_logo_height"
36
+
}
37
+
}
38
+
}
39
+
```
40
+
41
+
19
42
## [3.3.0] - 2025-05-22
20
43
21
44
β οΈ For some advanced features (ex: Export as PDF) Docs relies on XL packages from BlockNote. These are licenced under AGPL-3.0 and are not MIT compatible. You can perfectly use Docs without these packages by setting the environment variable `PUBLISH_AS_MIT` to true. That way you'll build an image of the application without the features that are not MIT compatible. Read the [environment variables documentation](/docs/env.md) for more information.
0 commit comments