From dce889bd2c6be5d5b82cf106904de97d7b7daf59 Mon Sep 17 00:00:00 2001 From: rusllan Date: Fri, 28 Dec 2018 20:03:57 +0500 Subject: [PATCH 01/11] :book: Travis status added --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 3228260..f34a62e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Build Status](https://travis-ci.com/it-projects-llc/mail-addons.svg?branch=10.0)](https://travis-ci.com/it-projects-llc/mail-addons) + # mail-addons Odoo (OpenERP) mail addons From 836efa8363c558e9ecde226a687e435e10beabcd Mon Sep 17 00:00:00 2001 From: KolushovAlexandr Date: Sat, 29 Dec 2018 16:11:50 +0500 Subject: [PATCH 02/11] :shield: mail_private tests --- mail_private/__manifest__.py | 2 +- mail_private/full_composer_wizard.xml | 2 - mail_private/static/src/js/test_private.js | 48 ++++++++++++++++++++++ mail_private/template.xml | 3 ++ mail_private/tests/__init__.py | 4 ++ mail_private/tests/test_js.py | 26 ++++++++++++ 6 files changed, 82 insertions(+), 3 deletions(-) create mode 100644 mail_private/static/src/js/test_private.js create mode 100644 mail_private/tests/__init__.py create mode 100644 mail_private/tests/test_js.py diff --git a/mail_private/__manifest__.py b/mail_private/__manifest__.py index c483f50..6c0e421 100644 --- a/mail_private/__manifest__.py +++ b/mail_private/__manifest__.py @@ -4,7 +4,7 @@ "summary": """Send private messages to specified recipients, regardless of who are in followers list.""", "category": "Discuss", "images": ['images/mail_private_image.png'], - "version": "1.0.1", + "version": "10.0.1.0.1", "application": False, "author": "IT-Projects LLC, Pavel Romanchenko", diff --git a/mail_private/full_composer_wizard.xml b/mail_private/full_composer_wizard.xml index 7bb5471..9f57a20 100644 --- a/mail_private/full_composer_wizard.xml +++ b/mail_private/full_composer_wizard.xml @@ -1,6 +1,5 @@ - mail.compose.message.form.private @@ -23,5 +22,4 @@ - diff --git a/mail_private/static/src/js/test_private.js b/mail_private/static/src/js/test_private.js new file mode 100644 index 0000000..8b9886e --- /dev/null +++ b/mail_private/static/src/js/test_private.js @@ -0,0 +1,48 @@ +/* Copyright 2018 Kolushov Alexandr + License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).*/ +odoo.define('mail_private.tour', function (require) { + "use strict"; + + var tour = require("web_tour.tour"); + var core = require('web.core'); + var _t = core._t; + + var email = 'You Are Whalecum'; + var steps = [{ + trigger: '.o_thread_message strong.o_mail_redirect:contains("Agrolait")', + content: _t("Open Partners Form"), + position: 'bottom', + }, { + trigger: "button.oe_compose_post_private", + content: _t("Click on Private mail creating button"), + position: "bottom" + }, { + // for some reason (due to tricky renderings) button.oe_composer_uncheck could not be find by the tour manager + trigger: ".o_control_panel.o_breadcrumb_full li.active", + content: _t("Dummy action"), + }, { + trigger: "button.oe_composer_uncheck", + extra_trigger: "button.oe_composer_uncheck", + content: _t("Uncheck all Followers"), + timeout: 22000, + }, { + trigger: "div.o_composer_suggested_partners input:first", + content: _t("Check the first one"), + }, { + trigger: "textarea.o_composer_text_field:first", + content: _t("Write some email"), + run: function() { + $('textarea.o_composer_text_field:first').val(email); + }, + }, { + trigger: ".o_composer_buttons .o_composer_button_send", + content: _t("Send email"), + }, { + trigger: ".o_mail_thread .o_thread_message:contains(" + email + ")", + content: _t("Send email"), + } + ]; + + tour.register('mail_private_tour', { test: true, url: '/web' }, steps); + +}); diff --git a/mail_private/template.xml b/mail_private/template.xml index 534e53c..4da60c7 100644 --- a/mail_private/template.xml +++ b/mail_private/template.xml @@ -9,6 +9,9 @@ + diff --git a/mail_private/tests/__init__.py b/mail_private/tests/__init__.py new file mode 100644 index 0000000..4f6aa47 --- /dev/null +++ b/mail_private/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). + +from . import test_js diff --git a/mail_private/tests/test_js.py b/mail_private/tests/test_js.py new file mode 100644 index 0000000..b7dc70e --- /dev/null +++ b/mail_private/tests/test_js.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# Copyright 2018 Kolushov Alexandr +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). + +import odoo.tests +from odoo.api import Environment + + +@odoo.tests.common.at_install(True) +@odoo.tests.common.post_install(True) +class TestUi(odoo.tests.HttpCase): + + def test_01_mail_private(self): + # needed because tests are run before the module is marked as + # installed. In js web will only load qweb coming from modules + # that are returned by the backend in module_boot. Without + # this you end up with js, css but no qweb. + cr = self.registry.cursor() + env = Environment(cr, self.uid, {}) + env['ir.module.module'].search([('name', '=', 'mail_private')], limit=1).state = 'installed' + cr.release() + + self.phantom_js("/web", + "odoo.__DEBUG__.services['web_tour.tour'].run('mail_private_tour', 1000)", + "odoo.__DEBUG__.services['web_tour.tour'].tours.mail_private_tour.ready", + login="admin", timeout=70) From a399d1e83389b1de617d2862a8a48f51941730d5 Mon Sep 17 00:00:00 2001 From: Ivan Yelizariev Date: Sun, 6 Jan 2019 18:32:46 +0500 Subject: [PATCH 03/11] :book: readme clean up --- mail_attachment_popup/README.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mail_attachment_popup/README.rst b/mail_attachment_popup/README.rst index 55283bc..927cd02 100644 --- a/mail_attachment_popup/README.rst +++ b/mail_attachment_popup/README.rst @@ -13,23 +13,23 @@ Contributors Sponsors -------- -* `IT-Projects LLC `_ +* `IT-Projects LLC `__ Maintainers ----------- -* `IT-Projects LLC `_ +* `IT-Projects LLC `__ The module is not maintained in future versions because it's functionality built-in since Odoo 11.0. Further information =================== -Demo: http://runbot.it-projects.info/demo/mail-addons/9.0 +Demo: http://runbot.it-projects.info/demo/mail-addons/10.0 -HTML Description: https://apps.odoo.com/apps/modules/9.0/mail_attachment_popup/ +HTML Description: https://apps.odoo.com/apps/modules/10.0/mail_attachment_popup/ Usage instructions: ``_ Changelog: ``_ -Tested on Odoo 9.0 021878f9c41c6d652abf345c3c5537fe92f8bc5b +Tested on Odoo 10.0 9cf666288076dc4e315e62e7ca0d6fc59995a498 From 4c96e820a44d0a14f71ee2041a68de495e9c88c8 Mon Sep 17 00:00:00 2001 From: Ivan Yelizariev Date: Sun, 6 Jan 2019 20:33:46 +0500 Subject: [PATCH 04/11] :book: fix version format --- mail_attachment_popup/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail_attachment_popup/__manifest__.py b/mail_attachment_popup/__manifest__.py index 156363a..52d7491 100644 --- a/mail_attachment_popup/__manifest__.py +++ b/mail_attachment_popup/__manifest__.py @@ -3,7 +3,7 @@ "name": """Popup Attachments""", "summary": """Open attached mail images in popup""", "category": "Extra Tools", - "version": "1.0.0", + "version": "10.0.1.0.0", "images": ['images/popup_image.png'], "author": "IT-Projects LLC, Dinar Gabbasov", From c6ad6dbc008d040247688988957809417b25e22b Mon Sep 17 00:00:00 2001 From: KolushovAlexandr Date: Wed, 9 Jan 2019 20:19:31 +0500 Subject: [PATCH 05/11] :rose: writing/spelling --- mail_private/static/src/js/test_private.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail_private/static/src/js/test_private.js b/mail_private/static/src/js/test_private.js index 8b9886e..876536d 100644 --- a/mail_private/static/src/js/test_private.js +++ b/mail_private/static/src/js/test_private.js @@ -7,7 +7,7 @@ odoo.define('mail_private.tour', function (require) { var core = require('web.core'); var _t = core._t; - var email = 'You Are Whalecum'; + var email = 'mail_private test email'; var steps = [{ trigger: '.o_thread_message strong.o_mail_redirect:contains("Agrolait")', content: _t("Open Partners Form"), From d6b91a9a7a0a3be65bf4d98d0dcb70982cc7be87 Mon Sep 17 00:00:00 2001 From: Translation Bot Date: Sun, 13 Jan 2019 05:01:50 +0500 Subject: [PATCH 06/11] :handshake: New Translations! We need your help ... to translate more: https://www.it-projects.info/page/translate --- mail_all/i18n/de.po | 35 +++++++++++++++++++++ mail_archives/i18n/de.po | 35 +++++++++++++++++++++ mail_base/i18n/de.po | 30 ++++++++++++++++++ mail_sent/i18n/de.po | 66 ++++++++++++++++++++++++++++++++++++++++ mail_to/i18n/de.po | 41 +++++++++++++++++++++++++ 5 files changed, 207 insertions(+) create mode 100644 mail_all/i18n/de.po create mode 100644 mail_archives/i18n/de.po create mode 100644 mail_base/i18n/de.po create mode 100644 mail_sent/i18n/de.po create mode 100644 mail_to/i18n/de.po diff --git a/mail_all/i18n/de.po b/mail_all/i18n/de.po new file mode 100644 index 0000000..b48dd16 --- /dev/null +++ b/mail_all/i18n/de.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_all +# +# Translators: +# Dawid Runowski , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-05-05 23:09+0000\n" +"PO-Revision-Date: 2018-04-21 00:05+0000\n" +"Last-Translator: Dawid Runowski , 2019\n" +"Language-Team: German (https://www.transifex.com/it-projects-llc/teams/76080/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_all +#. openerp-web +#: code:addons/mail_all/static/src/js/mail_all.js:49 +#: code:addons/mail_all/static/src/xml/menu.xml:7 +#, python-format +msgid "All messages" +msgstr "Alle Nachrichten" + +#. module: mail_all +#. openerp-web +#: code:addons/mail_all/static/src/xml/menu.xml:15 +#, python-format +msgid "No messages" +msgstr "Keine Nachrichten" diff --git a/mail_archives/i18n/de.po b/mail_archives/i18n/de.po new file mode 100644 index 0000000..56c8d08 --- /dev/null +++ b/mail_archives/i18n/de.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_archives +# +# Translators: +# Dawid Runowski , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-05-05 23:09+0000\n" +"PO-Revision-Date: 2018-04-21 00:05+0000\n" +"Last-Translator: Dawid Runowski , 2019\n" +"Language-Team: German (https://www.transifex.com/it-projects-llc/teams/76080/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_archives +#. openerp-web +#: code:addons/mail_archives/static/src/js/archives.js:68 +#: code:addons/mail_archives/static/src/xml/menu.xml:7 +#, python-format +msgid "Archive" +msgstr "Archiv" + +#. module: mail_archives +#. openerp-web +#: code:addons/mail_archives/static/src/xml/menu.xml:15 +#, python-format +msgid "Archive is empty" +msgstr "Archiv ist leer" diff --git a/mail_base/i18n/de.po b/mail_base/i18n/de.po new file mode 100644 index 0000000..f3c153e --- /dev/null +++ b/mail_base/i18n/de.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_base +# +# Translators: +# Dawid Runowski , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-05-05 23:09+0000\n" +"PO-Revision-Date: 2017-11-28 13:59+0000\n" +"Last-Translator: Dawid Runowski , 2019\n" +"Language-Team: German (https://www.transifex.com/it-projects-llc/teams/76080/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_base +#: model:ir.model,name:mail_base.model_mail_compose_message +msgid "Email composition wizard" +msgstr "" + +#. module: mail_base +#: model:ir.model,name:mail_base.model_mail_message +msgid "Message" +msgstr "Nachricht" diff --git a/mail_sent/i18n/de.po b/mail_sent/i18n/de.po new file mode 100644 index 0000000..e9ae420 --- /dev/null +++ b/mail_sent/i18n/de.po @@ -0,0 +1,66 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_sent +# +# Translators: +# Dawid Runowski , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-05-05 23:09+0000\n" +"PO-Revision-Date: 2018-04-21 00:05+0000\n" +"Last-Translator: Dawid Runowski , 2019\n" +"Language-Team: German (https://www.transifex.com/it-projects-llc/teams/76080/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_sent +#: model:ir.model,name:mail_sent.model_mail_compose_message +msgid "Email composition wizard" +msgstr "" + +#. module: mail_sent +#: model:ir.model,name:mail_sent.model_mail_message +msgid "Message" +msgstr "Nachricht" + +#. module: mail_sent +#. openerp-web +#: code:addons/mail_sent/static/src/xml/menu.xml:15 +#, python-format +msgid "No sent messages" +msgstr "Keine Nachrichten wurden versandt" + +#. module: mail_sent +#. openerp-web +#: code:addons/mail_sent/static/src/js/sent.js:61 +#: code:addons/mail_sent/static/src/xml/menu.xml:7 +#: model:ir.model.fields,field_description:mail_sent.field_mail_compose_message_sent +#: model:ir.model.fields,field_description:mail_sent.field_mail_mail_sent +#: model:ir.model.fields,field_description:mail_sent.field_mail_message_sent +#, python-format +msgid "Sent" +msgstr "versandt" + +#. module: mail_sent +#: model:ir.model.fields,help:mail_sent.field_mail_mail_sent +#: model:ir.model.fields,help:mail_sent.field_mail_message_sent +msgid "Was message sent to someone" +msgstr "Die Nachricht wurde an jmdn versandt" + +#. module: mail_sent +#. openerp-web +#: code:addons/mail_sent/static/src/xml/menu.xml:16 +#, python-format +msgid "You can send messages and then these messages will appear here." +msgstr "dann erscheinen diese Nachrichten hier." + +#. module: mail_sent +#: model:ir.model.fields,help:mail_sent.field_mail_compose_message_sent +msgid "dummy field to fix inherit error" +msgstr "" diff --git a/mail_to/i18n/de.po b/mail_to/i18n/de.po new file mode 100644 index 0000000..64740d2 --- /dev/null +++ b/mail_to/i18n/de.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_to +# +# Translators: +# Dawid Runowski , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-05-05 23:09+0000\n" +"PO-Revision-Date: 2018-04-21 00:05+0000\n" +"Last-Translator: Dawid Runowski , 2019\n" +"Language-Team: German (https://www.transifex.com/it-projects-llc/teams/76080/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_to +#. openerp-web +#: code:addons/mail_to/static/src/xml/recipient.xml:6 +#, python-format +msgid "To:" +msgstr "zu:" + +#. module: mail_to +#. openerp-web +#: code:addons/mail_to/static/src/xml/recipient.xml:15 +#, python-format +msgid "and" +msgstr "un" + +#. module: mail_to +#. openerp-web +#: code:addons/mail_to/static/src/xml/recipient.xml:16 +#, python-format +msgid "more" +msgstr "mehr" From 128a7de1ed70c1a7f2c3cad7b4ac252bb372a315 Mon Sep 17 00:00:00 2001 From: KolushovAlexandr Date: Wed, 23 Jan 2019 13:59:23 +0500 Subject: [PATCH 07/11] :shield: mail_private tests --- mail_private/static/src/js/test_private.js | 4 ++-- mail_private/tests/test_js.py | 8 +++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/mail_private/static/src/js/test_private.js b/mail_private/static/src/js/test_private.js index 876536d..4b6efda 100644 --- a/mail_private/static/src/js/test_private.js +++ b/mail_private/static/src/js/test_private.js @@ -24,7 +24,7 @@ odoo.define('mail_private.tour', function (require) { trigger: "button.oe_composer_uncheck", extra_trigger: "button.oe_composer_uncheck", content: _t("Uncheck all Followers"), - timeout: 22000, + timeout: 10000, }, { trigger: "div.o_composer_suggested_partners input:first", content: _t("Check the first one"), @@ -35,7 +35,7 @@ odoo.define('mail_private.tour', function (require) { $('textarea.o_composer_text_field:first').val(email); }, }, { - trigger: ".o_composer_buttons .o_composer_button_send", + trigger: ".o_composer_send .o_composer_button_send", content: _t("Send email"), }, { trigger: ".o_mail_thread .o_thread_message:contains(" + email + ")", diff --git a/mail_private/tests/test_js.py b/mail_private/tests/test_js.py index b7dc70e..88e0f73 100644 --- a/mail_private/tests/test_js.py +++ b/mail_private/tests/test_js.py @@ -20,7 +20,13 @@ class TestUi(odoo.tests.HttpCase): env['ir.module.module'].search([('name', '=', 'mail_private')], limit=1).state = 'installed' cr.release() + env = Environment(self.registry.test_cr, self.uid, {}) + partners = env['res.partner'].search([]) + new_follower = env['res.partner'].search([('name', 'ilike', 'Ja')]) + for partner in partners: + partner.message_subscribe(new_follower.ids, []) + self.phantom_js("/web", "odoo.__DEBUG__.services['web_tour.tour'].run('mail_private_tour', 1000)", "odoo.__DEBUG__.services['web_tour.tour'].tours.mail_private_tour.ready", - login="admin", timeout=70) + login="admin", timeout=90) From bd0496e126cde9d6162c05f9ba23f20fbad9f450 Mon Sep 17 00:00:00 2001 From: KolushovAlexandr Date: Fri, 1 Feb 2019 14:43:14 +0500 Subject: [PATCH 08/11] :rose: fixed confusing comment --- mail_multi_website/models/mail_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail_multi_website/models/mail_template.py b/mail_multi_website/models/mail_template.py index 7342663..2b7db1c 100644 --- a/mail_multi_website/models/mail_template.py +++ b/mail_multi_website/models/mail_template.py @@ -98,7 +98,7 @@ class MailTemplate(models.Model): if record_company and record_website \ and record_website.company_id != company: - # company and website are incompatible, so keep only website + # company and website are incompatible, so keep only company record_website = self.env['website'] # empty value record_context = dict(force_company=record_company.id, website_id=record_website.id) From ae26da801d082cc7f31a423cae5b9086cd434541 Mon Sep 17 00:00:00 2001 From: Ramil Date: Tue, 5 Feb 2019 17:33:57 +0500 Subject: [PATCH 09/11] :book: fix links mail_multi_website --- mail_multi_website/doc/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mail_multi_website/doc/index.rst b/mail_multi_website/doc/index.rst index bdfaf0b..01dbc8f 100644 --- a/mail_multi_website/doc/index.rst +++ b/mail_multi_website/doc/index.rst @@ -48,7 +48,7 @@ Note. If related record (e.g. ``sale.order``) has field ``company_id`` or ``webs Alias domain per website ------------------------ -Configure ``mail.catchall.domain`` per website. See Documentation of the module `Context-dependent values in System Parameters`__. +Configure ``mail.catchall.domain`` per website. See Documentation of the module `Context-dependent values in System Parameters `__. Outgoing mails servers per -------------------------- @@ -61,7 +61,7 @@ If each domain has different Outgoing Mail Server you need following adjustments Properties ---------- -To review properties by website use menu ``[[ Settings ]] >> Technical >> Parameters >> Company Properties``. See **How it works** in Documentation of module `Website Switcher in Backend`__. +To review properties by website use menu ``[[ Settings ]] >> Technical >> Parameters >> Company Properties``. See **How it works** in Documentation of module `Website Switcher in Backend `__. Usage ===== From a9d4ec4eecf0059f9565eb4d527e490e3f4e7e52 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 5 Feb 2019 13:42:11 +0000 Subject: [PATCH 10/11] :rose: fix semantic error --- mail_multi_website/doc/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail_multi_website/doc/index.rst b/mail_multi_website/doc/index.rst index 01dbc8f..95e9938 100644 --- a/mail_multi_website/doc/index.rst +++ b/mail_multi_website/doc/index.rst @@ -50,7 +50,7 @@ Alias domain per website Configure ``mail.catchall.domain`` per website. See Documentation of the module `Context-dependent values in System Parameters `__. -Outgoing mails servers per +Outgoing mails servers per website -------------------------- If each domain has different Outgoing Mail Server you need following adjustments From 9d07d4e9a0fc9ebfeb46075754e850af14de29d8 Mon Sep 17 00:00:00 2001 From: Ivan Yelizariev Date: Sat, 9 Feb 2019 20:23:07 +0500 Subject: [PATCH 11/11] :arrow_up::one::one: fix version in repos's README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ba4aa7..4190d31 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Build Status](https://travis-ci.com/it-projects-llc/mail-addons.svg?branch=10.0)](https://travis-ci.com/it-projects-llc/mail-addons) +[![Build Status](https://travis-ci.com/it-projects-llc/mail-addons.svg?branch=11.0)](https://travis-ci.com/it-projects-llc/mail-addons) # mail-addons Odoo mail addons