Django Comments Xtd Versions Save

A pluggable Django comments application with thread support, follow-up notifications, mail confirmation, like/dislike flags, moderation, a ReactJS plugin and Bootstrap 5.3.

2.9.13

4 months ago
  • Fix missing frontend files in package distribution.

2.9.12

4 months ago
  • Fixes issue 407: ReadCommentSerializer.get_submit_date does not properly use DATETIME_FORMAT setting.
  • Adds the new setting COMMENTS_XTD_API_DATETIME_FORMAT.

2.9.11

5 months ago

This version has been tested with Django 5.0 and is ready to run with Django from version v3 to v5.0.

2.9.10

10 months ago

This version includes:

  • Updates ReactJS plugin. It has been rewritten to use React Hooks.
  • Add tests to cover over 90% functionality of the JavaScript plugin.
  • Replaces Webpack with Rollup to create the JavaScript bundle.
  • Updates the UI to use Bootstrap 5.3.0.
  • Updates the demo sites to Bootstrap 5.3.0.
  • Extends python tests to Django 4.2 using Python 3.11.
  • Updates the docs.

2.9.9

1 year ago
  • Extends compatibility to django-rest-framework v3.14.

2.9.8

1 year ago
  • Fixes issue 377: content_object is missing in followup notification. View notify_comment_followers has been updated to include content_object in the context of templates it uses: email_followup_comment.txt and email_followup_comment.html.
  • Update translation files to the latest strings found in templates. Next step is to include appropriate translations. See PR #379.

Thanks @JanMalte.

2.9.7

1 year ago
  • Allows to customize the json object returned by the get_commentbox_props template tag. Define the new setting COMMENTS_XTD_COMMENTBOX_CLASS as the string path to the class that will return the JSON object. It defaults to the class django_comments_xtd.api.frontend.CommentBoxDriver.

2.9.6

2 years ago

This release just updates the version required of django-comments, from 2.1 to 2.2.

2.9.5

2 years ago
  • Adds compatibility with Django v4.
  • Fixes issue-358: Missing closing
    tag in the dislike.html template.

2.9.4

2 years ago
  • Fixes issue-333 produced when using django-comments-xtd with Django 3.2 with MySQL/MariaDB. The issue raises when calling 'update()' on queries with 'sorted_by', as it is the case of the default 'objects' manager of XtdComment.
  • App translation to Simplified Chinesse thanks to @galeo.
  • Fixes issue #334 related to defaults for DRF views. See the PR-338. Thanks to @PetrDlouhy.
  • Improve command 'populate_xtdcomments' to output using the stdout attribute of the BaseCommand.
  • Fixes issue-337. Provides updated pyproject.toml file that matches package version.