Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refs #470 - Replaced toolbar elements renamed in TinyMCE 6 #471

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ Changelog

This document describes changes between each past release.

Unreleased
==========

- Renamed toolbar elements (namely ``formatselect`` is now ``blocks``) to follow
TinyMCE 6 renames (#470).

4.0.0 (2024-03-27)
==================

Expand Down
4 changes: 2 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ file.
"plugins": "advlist,autolink,lists,link,image,charmap,preview,anchor,"
"searchreplace,visualblocks,code,fullscreen,insertdatetime,media,table,"
"code,help,wordcount",
"toolbar": "undo redo | formatselect | "
"toolbar": "undo redo | blocks | "
"bold italic backcolor | alignleft aligncenter "
"alignright alignjustify | bullist numlist outdent indent | "
"removeformat | help",
Expand Down Expand Up @@ -149,7 +149,7 @@ Example::
"menubar": "file edit view insert format tools table help",
"plugins": "advlist autolink lists link image charmap preview anchor searchreplace visualblocks code "
"fullscreen insertdatetime media table code help wordcount",
"toolbar": "undo redo | bold italic underline strikethrough | fontselect fontsizeselect formatselect | alignleft "
"toolbar": "undo redo | bold italic underline strikethrough | fontfamily fontsize blocks | alignleft "
"aligncenter alignright alignjustify | outdent indent | numlist bullist checklist | forecolor "
"backcolor casechange permanentpen formatpainter removeformat | pagebreak | charmap emoticons | "
"fullscreen preview save print | insertfile image media pageembed template link anchor codesample | "
Expand Down
2 changes: 1 addition & 1 deletion tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"plugins": "advlist,autolink,lists,link,image,charmap,preview,anchor,"
"searchreplace,visualblocks,code,fullscreen,insertdatetime,media,table,"
"code,help,wordcount",
"toolbar": "undo redo | formatselect | "
"toolbar": "undo redo | blocks | "
"bold italic backcolor | alignleft aligncenter "
"alignright alignjustify | bullist numlist outdent indent | "
"removeformat | help",
Expand Down
2 changes: 1 addition & 1 deletion tinymce/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"plugins": "advlist,autolink,lists,link,image,charmap,preview,anchor,"
"searchreplace,visualblocks,code,fullscreen,insertdatetime,media,table,"
"help,wordcount",
"toolbar": "undo redo | formatselect | "
"toolbar": "undo redo | blocks | "
"bold italic backcolor | alignleft aligncenter "
"alignright alignjustify | bullist numlist outdent indent | "
"removeformat | help",
Expand Down
Loading