diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 4bbf3b4f..d2112b5c 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20180601.0 \ No newline at end of file +11.0.20180607.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 4cab49fd..7abf85f8 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -27,6 +27,7 @@ setuptools.setup( 'odoo11-addon-web_widget_bokeh_chart', 'odoo11-addon-web_widget_color', 'odoo11-addon-web_widget_datepicker_options', + 'odoo11-addon-web_widget_image_download', 'odoo11-addon-web_widget_many2many_tags_multi_selection', 'odoo11-addon-web_widget_x2many_2d_matrix', 'odoo11-addon-web_widget_x2many_2d_matrix_example', diff --git a/setup/web_widget_image_download/odoo/addons/web_widget_image_download b/setup/web_widget_image_download/odoo/addons/web_widget_image_download new file mode 120000 index 00000000..ab050eae --- /dev/null +++ b/setup/web_widget_image_download/odoo/addons/web_widget_image_download @@ -0,0 +1 @@ +../../../../web_widget_image_download \ No newline at end of file diff --git a/setup/web_widget_image_download/setup.cfg b/setup/web_widget_image_download/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup/web_widget_image_download/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/web_widget_image_download/setup.py b/setup/web_widget_image_download/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/web_widget_image_download/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)