[MIG] web_no_bubble: Migration to 15.0

pull/2708/head
Thanakrit Pintana 2021-11-26 11:13:26 +07:00 committed by Andrea Stirpe
parent d1b4d67db0
commit c701740d46
4 changed files with 8 additions and 32 deletions

View File

@ -23,7 +23,7 @@ Web No Bubble
:target: https://runbot.odoo-community.org/runbot/162/14.0 :target: https://runbot.odoo-community.org/runbot/162/14.0
:alt: Try me on Runbot :alt: Try me on Runbot
|badge1| |badge2| |badge3| |badge4| |badge5| |badge1| |badge2| |badge3| |badge4| |badge5|
This module removes from the web interface the bubbles introduced in the version 10.0. This module removes from the web interface the bubbles introduced in the version 10.0.
The help boxes are not removed though. The help boxes are not removed though.
@ -57,6 +57,7 @@ Contributors
* David Dufresne (david.dufresne@savoirfairelinux.com) * David Dufresne (david.dufresne@savoirfairelinux.com)
* Alexandre Díaz (alexandre.diaz@tecnativa.com) * Alexandre Díaz (alexandre.diaz@tecnativa.com)
* Elliott Bristow - Glodo (elliott@glo.systems) * Elliott Bristow - Glodo (elliott@glo.systems)
* Thanakrit Pintana (thanakrit.p39@gmail.com)
Maintainers Maintainers
~~~~~~~~~~~ ~~~~~~~~~~~

View File

@ -3,14 +3,17 @@
{ {
"name": "Web No Bubble", "name": "Web No Bubble",
"version": "14.0.1.0.0", "version": "15.0.1.0.0",
"author": "Savoir-faire Linux, " "Odoo Community Association (OCA)", "author": "Savoir-faire Linux, " "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/web", "website": "https://github.com/OCA/web",
"license": "AGPL-3", "license": "AGPL-3",
"category": "Web", "category": "Web",
"summary": "Remove the bubbles from the web interface", "summary": "Remove the bubbles from the web interface",
"depends": ["web"], "depends": ["web"],
"data": ["views/web_no_bubble.xml"],
"installable": True, "installable": True,
"application": False, "application": False,
"assets": {
"web.assets_backend": ["web_no_bubble/static/src/css/web_no_bubble.scss"],
"web.assets_frontend": ["web_no_bubble/static/src/css/web_no_bubble.scss"],
},
} }

View File

@ -1,3 +1,4 @@
* David Dufresne (david.dufresne@savoirfairelinux.com) * David Dufresne (david.dufresne@savoirfairelinux.com)
* Alexandre Díaz (alexandre.diaz@tecnativa.com) * Alexandre Díaz (alexandre.diaz@tecnativa.com)
* Elliott Bristow - Glodo (elliott@glo.systems) * Elliott Bristow - Glodo (elliott@glo.systems)
* Thanakrit Pintana (thanakrit.p39@gmail.com)

View File

@ -1,29 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<data>
<template
id="assets_backend"
name="web_no_bubble_assets"
inherit_id="web.assets_backend"
>
<xpath expr="." position="inside">
<link
rel="stylesheet"
href="/web_no_bubble/static/src/css/web_no_bubble.scss"
/>
</xpath>
</template>
<template
id="assets_frontend"
name="web_no_bubble_assets_frontend"
inherit_id="web.assets_frontend"
>
<xpath expr="." position="inside">
<link
rel="stylesheet"
href="/web_no_bubble/static/src/css/web_no_bubble.scss"
/>
</xpath>
</template>
</data>
</odoo>