Digital Writer 3.12.0

Compatibility

  • Editor Service >=3.6
  • Concept Backend >=2.6

Released 2018-01-22

Upgrade notes

WRIT-523 Allow configuration to override tab placement of plugin.

Fix Meta tab position
To set the meta-tab in first position, add the following to your writer-config:

"tabOrder": [
    "main"
]

Deprecation warnings now displays when using the functions NPWriterConfigurator.addSidebarTab and NPWriterConfigurator.addComponentToSidebarWithTabId. Use addToSidebar(tabId, pluginConfig, component) instead.

Example: Used in a plugin’s *Package.js-file

config.addToSidebar(
     'main',         // Id/Name for selected tab
     pluginConfig,   //
     AboutComponent  // Component to render in tab
)

Issues

New Feature

  • WRIT-514 - New generic UI Button component

Improvement

  • WRIT-523 - Allow configuration to override tab placement of plugin.
  • WRIT-513 - Fix gravatar-support for BylineComponent

Bug