From 8dc887764b8164d07bafc4f653f96716041152b8 Mon Sep 17 00:00:00 2001 From: Xavier-Do Date: Mon, 26 Jul 2021 13:09:57 +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#48 Related: odoo/odoo#74245 Related: odoo/enterprise#19862 Signed-off-by: Xavier Dollé (xdo) --- test_themes/__manifest__.py | 3 ++- theme_common/__manifest__.py | 1 + website_animate/__manifest__.py | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/test_themes/__manifest__.py b/test_themes/__manifest__.py index 6fa2e8998..7fde70120 100644 --- a/test_themes/__manifest__.py +++ b/test_themes/__manifest__.py @@ -49,5 +49,6 @@ 'web.assets_frontend': [ 'test_themes/static/src/js/navbar.js', ], - } + }, + 'license': 'LGPL-3', } diff --git a/theme_common/__manifest__.py b/theme_common/__manifest__.py index 522c61cca..040698d94 100644 --- a/theme_common/__manifest__.py +++ b/theme_common/__manifest__.py @@ -12,4 +12,5 @@ 'views/old_snippets/s_three_columns_circle.xml', ], 'application': False, + 'license': 'LGPL-3', } diff --git a/website_animate/__manifest__.py b/website_animate/__manifest__.py index cfc9a91c0..99df9df4c 100644 --- a/website_animate/__manifest__.py +++ b/website_animate/__manifest__.py @@ -19,5 +19,6 @@ 'website.assets_editor': [ 'website_animate/static/src/js/o_animate.editor.js', ], - } + }, + 'license': 'LGPL-3', }