{% extends "base_help.html" %} {% block copyright %} {% endblock %} {% block title %}About{% endblock %} {% block body %}

About {{ about.__title__ }}

{{ about.__copyright__ }}
{% include "inc_license_text.html" %}

Web sites

{{ about.__tag__ }} web site – {{ about.__uri__ }}
{{ about.__tag__ }} on GitHub – {{ about.__source_uri__ }}
About Quru Ltd – https://quru.com/

Documentation

Introduction and overview
Imaging operations
Developer API
Tuning guide (github.com)
Change log (github.com)

System information

Version {{ about.__version__ }}
Edition {{ app_edition() }} {% if app_edition()=='Standard' %}(upgrade information){% endif %}
Debug mode {{ 'Enabled' if settings.DEBUG else 'Off' }}
Default image template {{ default_template.name() }}
Available image templates {% if templates %}{{ templates|join(', ') }}{% else %}None{% endif %}
Available ICC profiles {% if iccs %}{{ iccs|join(', ') }}{% else %}None{% endif %}
Imaging library {{ image_lib|capitalize }}
Supported image formats {% if formats %}{{ formats|join(', ') }}   ✅{% endif %} {% if other_formats %}
{{ other_formats|join(', ') }}   ❌{% endif %}
Supported image operations {% set skip_keys = ('resize_type', 'resize_gamma') %} {% for k in image_ops.keys()|sort if k not in skip_keys %} {% endfor %}
{{ k|replace('_', ' ')|capitalize }} {% if image_ops[k] %}✅{% else %}❌{% endif %}

{% endblock %}