Skip to content

Releases: agusmakmun/django-markdown-editor

v1.2.3

19 Sep 10:17

Choose a tag to compare

  • Fixed exit full screen when ESC is pressed.

v1.2.2

18 Sep 12:53

Choose a tag to compare

  • Compress css, js files

v1.2.1 - upgrade draceditor to martor

18 Sep 02:58

Choose a tag to compare

  • Fixed issue: #3 - Markdown widget becomes unresponsive when a model has multiple DraceditorField

v1.1.8

11 Apr 12:56

Choose a tag to compare

  • Fixed Issue #4

v1.1.7

15 Mar 00:52

Choose a tag to compare

  1. Merged PR: #2 (about missing flags image)
  2. Fixes static path of draceditor
  3. Supported lang en and id

v1.1.6

28 Jan 19:56

Choose a tag to compare

  1. Support translation.
  2. Support Fullscreen mode.
  3. Fixed filter users only if user is_active=True
  4. Support Keyboard commands for:
    • Underscores, Windows/Linux: Shift+U, Mac: Option+U
    • Strikethrough, Windows/Linux: Shift+S, Mac: Option+S
  5. Removed tooltip/popup of toolbar buttons, because can't handle the positions.
  6. Fixed json error encoding using LazyEncoder.

v1.1.5

13 Jan 01:21

Choose a tag to compare

Added support strikethrough and underscores

DRACEDITOR_MARKDOWN_EXTENSIONS = [
    ....
    'draceditor.extensions.del_ins', # ~~strikethrough~~ and ++underscores++
    ....
]

v1.1.3

05 Jan 17:10

Choose a tag to compare

  • Fixed bug emoji & imgur uploader

v1.0.9

02 Jan 17:17

Choose a tag to compare

  • added upload.sh

v1.0.8

02 Jan 13:43

Choose a tag to compare

  • Added global draceditor settings
# Input: string boolean, `true/false`
DRACEDITOR_ENABLE_CONFIGS' = {
    'imgur': 'true',     # to enable/disable imgur uploader.
    'mention': 'false',  # to enable/disable mention
    'jquery': 'true',    # to include/revoke jquery (require for admin default django)
}