From 3f46e33f8473796aee30f3d543485378a1ede745 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Tue, 9 Jul 2024 13:11:51 +0200 Subject: [PATCH 1/2] [IMP] *: disable auto-install Odoo chooses to auto-install some modules that are debatable, so here in OCB we can revert this decision and let the Odoo admin to decide about them. This is another round of de-activations after a deep analysis done in #1242: - account_qr_code_sepa: this is just some tooling with no UI, so only modules using this tooling should depend and install it. - mail_bot: It doesn't bring any real feature per se (only the annoying "Write an emoji" initial conversation). --- addons/account_qr_code_sepa/__manifest__.py | 2 +- addons/mail_bot/__manifest__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/account_qr_code_sepa/__manifest__.py b/addons/account_qr_code_sepa/__manifest__.py index c9aba5a44734a..73c185f300e62 100644 --- a/addons/account_qr_code_sepa/__manifest__.py +++ b/addons/account_qr_code_sepa/__manifest__.py @@ -15,6 +15,6 @@ 'data': [ ], - 'auto_install': True, + 'auto_install': False, 'license': 'LGPL-3', } \ No newline at end of file diff --git a/addons/mail_bot/__manifest__.py b/addons/mail_bot/__manifest__.py index 35deed9891f1d..fc9c5e818df11 100644 --- a/addons/mail_bot/__manifest__.py +++ b/addons/mail_bot/__manifest__.py @@ -9,7 +9,7 @@ 'description': "", 'website': 'https://www.odoo.com/page/discuss', 'depends': ['mail'], - 'auto_install': True, + 'auto_install': False, 'installable': True, 'application': False, 'data': [ From 34cd1803de7d94db812ac41a7016ede97933de19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20-=20Le=20Filament?= <30716308+remi-filament@users.noreply.github.com> Date: Fri, 12 Jul 2024 12:15:28 +0200 Subject: [PATCH 2/2] [IMP] google_gmail, web_unsplash: disable auto_install --- addons/google_gmail/__manifest__.py | 2 +- addons/web_unsplash/__manifest__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/google_gmail/__manifest__.py b/addons/google_gmail/__manifest__.py index ab508d1a6c548..c82c5ae6e299e 100644 --- a/addons/google_gmail/__manifest__.py +++ b/addons/google_gmail/__manifest__.py @@ -14,5 +14,5 @@ "views/ir_mail_server_views.xml", "views/res_config_settings_views.xml", ], - "auto_install": True, + "auto_install": False, } diff --git a/addons/web_unsplash/__manifest__.py b/addons/web_unsplash/__manifest__.py index db5b14d7b574f..1fc2cf10352a1 100644 --- a/addons/web_unsplash/__manifest__.py +++ b/addons/web_unsplash/__manifest__.py @@ -11,6 +11,6 @@ 'views/res_config_settings_view.xml', 'views/web_unsplash_templates.xml', ], - 'auto_install': True, + 'auto_install': False, 'license': 'LGPL-3', }