3
0
Fork 0

[MIG]web_widget_image_download: Migration to 15.0

17.0
manu 2022-04-27 16:32:14 +02:00
parent 89efe8d9f3
commit 53c78e1085
3 changed files with 11 additions and 20 deletions

View File

@ -3,14 +3,21 @@
{
"name": "Web Widget - Image Download",
"summary": "Allows to download any image from its widget",
"version": "14.0.1.0.0",
"version": "15.0.1.0.0",
"category": "web",
"website": "https://github.com/OCA/web",
"author": "Tecnativa, Odoo Community Association (OCA), Kaushal Prajapati",
"license": "LGPL-3",
"application": False,
"installable": True,
"data": ["views/assets.xml"],
"depends": ["web"],
"qweb": ["static/src/xml/web_widget_image_download.xml"],
"assets": {
"web.assets_backend": [
"web_widget_image_download/static/src/js/**/*",
"web_widget_image_download/static/src/scss/**/*",
],
"web.assets_qweb": [
"web_widget_image_download/static/src/xml/**/*",
],
},
}

View File

@ -8,3 +8,4 @@
* Kaushal Prajapati <kbprajapati@live.com>
* Peerapong Supasompob <peerapong.supasompob@gmail.com>
* Manuel Regidor <manuel.regidor@sygel.es>

View File

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2016 Flavio Corpa <flavio.corpa@tecnativa.com>
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). -->
<odoo>
<template id="assets_backend" inherit_id="web.assets_backend">
<xpath expr=".">
<link
rel="stylesheet"
href="/web_widget_image_download/static/src/scss/web_widget_image_download.scss"
/>
<script
type="text/javascript"
src="/web_widget_image_download/static/src/js/web_widget_image_download.js"
/>
</xpath>
</template>
</odoo>