From 91b6b1e2376a45b60db1973f2c76ff244322a1fc Mon Sep 17 00:00:00 2001 From: "Antoine Vandevenne (anv)" Date: Mon, 10 Mar 2025 09:12:37 +0100 Subject: [PATCH] [IMP] conf.py: use SaaS branch names as labels in the version switcher This removes the confusion induced by simultaneously labelling several SaaS branches as "Odoo Online" in the version switcher. New branches will be automatically labelled as "Odoo xx.y" as they are frozen by the freeze script. task-4597225 --- conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf.py b/conf.py index 3e5353d4c..c73abc656 100644 --- a/conf.py +++ b/conf.py @@ -231,10 +231,10 @@ sphinx.transforms.i18n.docname_to_domain = ( # is populated. versions_names = { 'master': "Master", - 'saas-18.1': "Odoo Online", + 'saas-18.1': "Odoo 18.1", '18.0': "Odoo 18", - 'saas-17.4': "Odoo Online", - 'saas-17.2': "Odoo Online", + 'saas-17.4': "Odoo 17.4", + 'saas-17.2': "Odoo 17.2", '17.0': "Odoo 17", '16.0': "Odoo 16", '15.0': "Odoo 15",