Release Notes / Version 11.2304
Table Of ContentsPlugins for studio-client can now be Downloaded Behind a Proxy
The "http_proxy" and "https_proxy" configuration of NPM (see https://docs.npmjs.com/cli/v8/using-npm/config#https-proxy ) is now automatically taken into account when downloading plugins during studio-client build.
(CMS-21054)
LibraryTree declares drop events
Since LibraryTree always adds a ContentTreeViewDragDropPlugin, it now declares the additional events fired by that plugins as its own events. This allows you to attach listeners for these events in a type-safe way. This affects the events
beforedrop
and
drop
.
Without the fix, to add listeners for these event, you must use a type assertion (
as any
) or ignore the resulting type error (
//@ts-expect-error
).
(CMS-20683)
Deprecation: OpenCalais
The OpenCalais integration for automatic tagging of content has been deprecated and will be removed with the next major release. For now, it has been disabled in the TaxonomyStudioPlugin.ts .
(CMS-20619)
Added Form Locale Switcher
Document formulars now have a locale switcher located on the toolbar of the form. It allows to switch between the different localized versions of the document and shows the version synchronization state.
(CMS-20229)
Added "Properties" Dialog for Folders
The context menu of the library tree and list view contains an additional entry "Properties" now. This entry is only visible for a folder selection and allows users to see details about the selected folder. If the user has supervise rights or is an administrative user, an additional tab is shown to modify the access permissions of the folder and configure supervise rights.
(CMS-19547)
Unified Uploads
The global or site specific configuration file "Upload Settings" or "UploadSettings" is responsible for timeout configurations now. If not configured, the default timeout of five minutes is used. This value may be overwritten via updating the variable _UploadSettings.DEFAULT_TIMEOUT_MS_.
(CMS-17536)