Skip to content

2.2.2

Latest
Compare
Choose a tag to compare
@triole triole released this 24 Oct 14:43

RDMO 2.2.2 (Oct 24, 2024)

  • Fix projects interface when using RDMO with a path (#1152)
  • Fix missing (unavailable) catalogs projects interface

How to upgrade

In case you are upgrading from an RDMO version below 2.0.0 please read these upgrade instructions before you proceed.

pip install --upgrade rdmo
python manage.py upgrade

Important

In RDMO 2.2.0, we made changes to the core/base_head.html template. If changed this file in you local theme you need to update it accordingly:

{% load static %}
{% load i18n %} <-- add this line
{% get_current_language as LANGUAGE_CODE %} <-- add this line

...

    <meta name='site_id' content="{{ settings.SITE_ID }}" />
    <meta name='language' content="{{ LANGUAGE_CODE }}"> <-- add this line

See https://github.com/rdmorganiser/rdmo/blob/main/rdmo/core/templates/core/base_head.html for the current version of the file.