Skip to content

Commit

Permalink
chore: Bump version to 1.2.2 to prepare release (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun authored Jan 13, 2024
1 parent a974fe3 commit 2fe0268
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 21 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@
Changelog
=========

1.2.2 (2024-01-13)
==================

* fix: Reference to removed icon fonts caused some static file storage backends to fail
* fix: Replace deprecated ``length_is`` by ``length`` filter by @fsbraun in https://github.com/django-cms/djangocms-frontend/pull/173
* fix: Missing space in auto column short description by @fsbraun in https://github.com/django-cms/djangocms-frontend/pull/177
* docs: Update how tos by @fsbraun in https://github.com/django-cms/djangocms-frontend/pull/174
* docs: Typo corrections by @fsbraun in https://github.com/django-cms/djangocms-frontend/pull/175
* docs: Clarify how to re-use image and links in custom plugins by @fsbraun in https://github.com/django-cms/djangocms-frontend/pull/176
* ci: pre-commit autoupdate by @pre-commit-ci in https://github.com/django-cms/djangocms-frontend/pull/172
* ci: bump github/codeql-action from 2 to 3 by @dependabot in https://github.com/django-cms/djangocms-frontend/pull/171

1.2.1 (2023-12-20)
==================

* feat: Add licences of vendor icon libraries by @fsbraun in https://github.com/django-cms/djangocms-frontend/pull/167
* feat: django 5.1 preparation by @fsbraun in https://github.com/django-cms/djangocms-frontend/pull/169
* fix: Button group sizes for django 4.x+ by @fsbraun in https://github.com/django-cms/djangocms-frontend/pull/170
* ci:(deps): bump actions/setup-python from 4 to 5 by @dependabot in https://github.com/django-cms/djangocms-frontend/pull/168



1.2.0 (2023-11-28)
==================

Expand Down
2 changes: 1 addition & 1 deletion djangocms_frontend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
13. Github actions will publish the new package to pypi
"""

__version__ = "1.2.1"
__version__ = "1.2.2"
3 changes: 0 additions & 3 deletions docs/source/components.rst
Original file line number Diff line number Diff line change
Expand Up @@ -415,13 +415,10 @@ support for the following icon sets:
* `Fomatic UI icons <https://fomantic-ui.com/elements/icon.html>`_ (bundled)
* `Font awesome (regular, solid and brands) <https://fontawesome.com>`_
* `Foundation icons <https://zurb.com/playground/foundation-icon-fonts-3>`_ (bundled)
* Happy icons (bundled)
* `Icomoon <https://icomoon.io>`_ (bundled)
* `Material icons (filled, outlined, sharp, two-tone) <https://fonts.google.com/icons>`_
* `Open iconic <https://github.com/iconic/open-iconic>`_
* `Tabler icons <https://tabler-icons.io>`_
* Eric Flower's `Weather icons <https://erikflowers.github.io/weather-icons/>`_ (bundled)
* Steve Schoger's `Zondicons <https://www.zondicons.com/icons.html>`_ (bundled)


.. note::
Expand Down
31 changes: 14 additions & 17 deletions docs/source/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -262,23 +262,20 @@ in your project's ``settings.py``.
Default::

DJANGOCMS_FRONTEND_ICON_LIBRARIES_SHOWN = (
'font-awesome',
'bootstrap-icons',
'material-icons-filled',
'material-icons-outlined',
'material-icons-round',
'material-icons-sharp',
'material-icons-two-tone',
'fomantic-ui',
'foundation-icons',
'elegant-icons',
'feather-icons',
'happy-icons',
'icomoon',
'open-iconic',
'tabler-icons',
'zondicons',
'weather-icons'
"font-awesome",
"bootstrap-icons",
"material-icons-filled",
"material-icons-outlined",
"material-icons-round",
"material-icons-sharp",
"material-icons-two-tone",
"fomantic-ui",
"foundation-icons",
"elegant-icons",
"feather-icons",
"open-iconic",
"tabler-icons",
"weather-icons",
)

This settings allows to restrict the number of icon sets shown to the user. Typically one or two icon sets should be sufficient to keep a consistent icon expierence.
Expand Down

0 comments on commit 2fe0268

Please sign in to comment.