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

Disable version check #84

Merged
merged 1 commit into from
Jul 4, 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
3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Changelog

Release date: -

- Disable the version check for old CKEditor versions.


0.5.2
-----

Expand Down
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

CKEditor integration for Flask, including image upload, code syntax highlighting, and more.

> [!IMPORTANT]\
> This project is unmaintained due to the CKEditor 4's end of life, and we will not support CKEditor 5 (GPL licensed).
> Please consider using paid CKEditor 4 LTS version, CKEditor 5, or other alternatives. Thanks!

## Links

Expand All @@ -16,13 +19,6 @@ CKEditor integration for Flask, including image upload, code syntax highlighting
* [Examples](https://github.com/helloflask/flask-ckeditor/tree/master/examples)


## Donate

If you find Flask-CKEditor useful, please consider
[donating today](https://opencollective.com/flask-ckeditor/donate). Your donation keeps
Flask-CKEditor maintained and updated with CKEditor.


## License

This project is licensed under the MIT License (see the `LICENSE` file for details).
1 change: 1 addition & 0 deletions flask_ckeditor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def _get_config(name, url=False):
filebrowserUploadUrl: "{file_uploader}",
filebrowserBrowseUrl: "{file_browser}",
extraPlugins: "{','.join(extra_plugins)}",
versionCheck: false,
{csrf_header} // CSRF token header for XHR request
{custom_config}
}});
Expand Down