Skip to content

Releases: comments-ink/django-comments-ink

v0.4.0

30 Jan 15:31
36b0b83
Compare
Choose a tag to compare
  • Update dependencies and run tests against Django v4.1, v4.2 and v5.0.

v0.3.0

27 Jul 20:00
Compare
Choose a tag to compare
  • Introduces comment voting.
  • Comment voting works both fully managed by the django backend, or in combination with the JavaScript plugin.
  • The setting COMMENTS_INK_LIST_ORDER should be modified so that comments are listed ordered by the voting score:
    • Use COMMENTS_INK_LIST_ORDER = ("-thread__score", "thread__id", "order") to list in descending order by voting score.
  • Only comments at level = 0 can receive votes.
  • All themes' templates are adapted.

v0.2.0

23 Jun 19:21
Compare
Choose a tag to compare
  • Eliminate the need to declare the object dci = {...} to enable django-comments-ink in the browser's window.
  • Rename created object from dci to djCommentsInk.

v0.1.0

09 Jun 05:50
3d1bff0
Compare
Choose a tag to compare
  • Add folding/unfolding of comments of level > 0 using JavaScript.

v0.0.2-alpha

21 May 14:05
Compare
Choose a tag to compare
  • Implements object reactions, that allows users react to a pair (content_type, object_pk).