From 62446858f876ba5292b041794855600d47d8b727 Mon Sep 17 00:00:00 2001 From: Xavier-Do Date: Mon, 26 Jul 2021 11:32:23 +0000 Subject: [PATCH] [FIX] *: add explicit license to all manifest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The license is missing in most enterprise manifest so the decision was taken to make it explicit in all cases. When not defined, a warning will be triggered starting from 14.0 when falling back on the default LGPL-3. closes odoo/design-themes#43 Related: odoo/enterprise#19850 Related: odoo/odoo#74231 Signed-off-by: Xavier Dollé (xdo) --- test_themes/__manifest__.py | 1 + theme_common/__manifest__.py | 1 + website_animate/__manifest__.py | 1 + 3 files changed, 3 insertions(+) diff --git a/test_themes/__manifest__.py b/test_themes/__manifest__.py index dd855d815..f60083991 100644 --- a/test_themes/__manifest__.py +++ b/test_themes/__manifest__.py @@ -46,4 +46,5 @@ 'installable': True, 'application': False, 'post_init_hook': 'post_init_hook', + 'license': 'LGPL-3', } diff --git a/theme_common/__manifest__.py b/theme_common/__manifest__.py index a1ccbfb6a..55c0e761d 100644 --- a/theme_common/__manifest__.py +++ b/theme_common/__manifest__.py @@ -47,4 +47,5 @@ 'views/old_snippets/s_two_columns.xml', ], 'application': False, + 'license': 'LGPL-3', } diff --git a/website_animate/__manifest__.py b/website_animate/__manifest__.py index b5b7cb760..2b8b89981 100644 --- a/website_animate/__manifest__.py +++ b/website_animate/__manifest__.py @@ -12,4 +12,5 @@ 'images': [ 'static/description/icon.png', ], + 'license': 'LGPL-3', }