Digital Writer 4.3.0

Compatibility

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

Released 2018-04-04

Release overview

Extended keyboard shortcut functionality

The keyboard shortcut registration API has been extended to support additional shortcut details. It is now possible to define:

  • Standard / Mac OS specific key combos
  • Default (or plugin defined) combos / user defined combo overrides (in writer config file).

The API for registering keyboard shortcuts is in the package for plugins, called addKeyboardShortcut(combo, spec, globalCombo, description = ''). The combo parameter looks like:

{
  "override": {
    "default": "ctrl+alt+h",
    "mac":"cmd+alt+h"
  },
  "standard": {
    "default": "ctrl+shift+h",
    "mac": "cmd+shift+h"
  }
}

Visible keyboard shortcuts for paragraph styles

When there are keyboard shortcuts defined for paragraph styles, they are visible in the context menu (hidden behind the pencil).

Changes in this release

New Feature

  • WRIT-607 - Support for displaying keyboard shortcuts in the context menu for changing (paragraph) text styles

Improvement

  • WRIT-610 - Add support for managing configurable keyboard shortcuts and per-platform specific shortcuts

Bug

  • WRIT-550 - Invalidate cache when Writer version has changed for user

Upgrade notes