diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b7b6f71..588aab43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [2.9.14] - + + * Adds ordering filter to the CommentList API class. + ## [2.9.13] - 2023-12-22 * Fixes issue related to missing frontend files within the package distribution. diff --git a/README.rst b/README.rst index 3b6dc338..847e0f8a 100644 --- a/README.rst +++ b/README.rst @@ -23,8 +23,8 @@ It extends the once official `django-contrib-comments `_: -* Django 4.2, 4.1, 4.0, 3.2 -* Python 3.10, 3.9, 3.8 +* Django 5.0, 4.2, 4.1, 4.0, 3.2 +* Python 3.12, 3.11, 3.10, 3.9, 3.8 Additional Dependencies: diff --git a/django_comments_xtd/__init__.py b/django_comments_xtd/__init__.py index 87c6c040..f06a9e6d 100644 --- a/django_comments_xtd/__init__.py +++ b/django_comments_xtd/__init__.py @@ -1,7 +1,6 @@ from django.utils.module_loading import import_string import django_comments -from django_comments.feeds import LatestCommentFeed from django_comments.signals import comment_was_posted, comment_will_be_posted diff --git a/docs/conf.py b/docs/conf.py index a6c73e4a..06f2c26d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -106,6 +106,9 @@ # documentation. html_theme_options = { "style": "green", + "monospace_font": "Ubuntu Mono", + "monospace_font_size": "1.1rem", + "documentation_font_size": "1.1rem", "repository_url": "https://github.com/danirus/django-comments-xtd", "repository_name": "django-comments-xtd" } diff --git a/docs/tutorial.rst b/docs/tutorial.rst index e906fa98..a96643a9 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -997,10 +997,10 @@ to the browser improving the overall usability. By making use of the JavaScript plugin users don't have to leave the blog post page to preview, submit or reply comments, or to like/dislike them. But it comes at the cost of using: - * ReactJS - * jQuery (to handle Ajax calls). - * Twitter-Bootstrap (for the UI). - * Remarkable (for Markdown support). +* ReactJS +* jQuery (to handle Ajax calls). +* Twitter-Bootstrap (for the UI). +* Remarkable (for Markdown support). To know more about the client side of the application and the build process read the specific page on the :doc:`javascript`. diff --git a/example/comp/urls.py b/example/comp/urls.py index 5f8a3eb2..44894dec 100644 --- a/example/comp/urls.py +++ b/example/comp/urls.py @@ -2,10 +2,9 @@ from django.contrib import admin from django.contrib.staticfiles.urls import staticfiles_urlpatterns from django.urls import include, path, re_path - from django.views.i18n import JavaScriptCatalog +from django_comments import LatestCommentFeed -from django_comments_xtd import LatestCommentFeed from django_comments_xtd.views import XtdCommentListView from comp import views diff --git a/example/custom/urls.py b/example/custom/urls.py index 2875a196..87371e91 100644 --- a/example/custom/urls.py +++ b/example/custom/urls.py @@ -8,7 +8,7 @@ else: from django.urls import include, path, re_path -from django_comments_xtd import LatestCommentFeed +from django_comments import LatestCommentFeed import views diff --git a/example/simple/urls.py b/example/simple/urls.py index e5d39b42..d6e1fb09 100644 --- a/example/simple/urls.py +++ b/example/simple/urls.py @@ -3,7 +3,7 @@ from django.contrib.staticfiles.urls import staticfiles_urlpatterns from django.urls import include, path, re_path -from django_comments_xtd import LatestCommentFeed +from django_comments import LatestCommentFeed from simple import views