[MIG] web_no_bubble: Migration to 15.0

pull/2097/head
Thanakrit Pintana 2021-11-26 11:13:26 +07:00
parent 4f7e9e0f5f
commit 9058b67555
4 changed files with 8 additions and 32 deletions

View File

@ -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>