From 34831b5afeba054939e12fde7910391dd51c153c Mon Sep 17 00:00:00 2001 From: Aungkokolin1997 Date: Wed, 29 Nov 2023 14:09:44 +0630 Subject: [PATCH] [MIG] mail_hide_send_message: Migration to 16.0 --- mail_hide_send_message/README.rst | 12 ++++++------ mail_hide_send_message/__manifest__.py | 4 ++-- mail_hide_send_message/static/description/index.html | 8 ++++---- .../odoo/addons/mail_hide_send_message | 1 + setup/mail_hide_send_message/setup.py | 6 ++++++ 5 files changed, 19 insertions(+), 12 deletions(-) create mode 120000 setup/mail_hide_send_message/odoo/addons/mail_hide_send_message create mode 100644 setup/mail_hide_send_message/setup.py diff --git a/mail_hide_send_message/README.rst b/mail_hide_send_message/README.rst index 3a3eeb7b..2468e37c 100644 --- a/mail_hide_send_message/README.rst +++ b/mail_hide_send_message/README.rst @@ -16,9 +16,9 @@ Mail Hide Send Message .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 -.. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Fmi7--custom-lightgray.png?logo=github - :target: https://github.com/qrtl/mi7-custom/tree/15.0/mail_hide_send_message - :alt: qrtl/mi7-custom +.. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Faxls--custom-lightgray.png?logo=github + :target: https://github.com/qrtl/axls-custom/tree/16.0/mail_hide_send_message + :alt: qrtl/axls-custom |badge1| |badge2| |badge3| @@ -33,10 +33,10 @@ users from accidentally sending messages to clients. Bug Tracker =========== -Bugs are tracked on `GitHub Issues `_. +Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -51,6 +51,6 @@ Authors Maintainers ----------- -This module is part of the `qrtl/mi7-custom `_ project on GitHub. +This module is part of the `qrtl/axls-custom `_ project on GitHub. You are welcome to contribute. diff --git a/mail_hide_send_message/__manifest__.py b/mail_hide_send_message/__manifest__.py index c2e285b8..31014285 100644 --- a/mail_hide_send_message/__manifest__.py +++ b/mail_hide_send_message/__manifest__.py @@ -6,10 +6,10 @@ "license": "AGPL-3", "author": "Quartile Limited", "website": "https://www.quartile.co", - "version": "15.0.1.0.0", + "version": "16.0.1.0.0", "depends": ["mail"], "assets": { - "web.assets_qweb": [ + "web.assets_backend": [ "mail_hide_send_message/static/src/components/chatter_topbar/chatter_topbar.xml", ], }, diff --git a/mail_hide_send_message/static/description/index.html b/mail_hide_send_message/static/description/index.html index f60015ca..a77617bc 100644 --- a/mail_hide_send_message/static/description/index.html +++ b/mail_hide_send_message/static/description/index.html @@ -369,7 +369,7 @@

Mail Hide Send Message

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:4c11a0763718a1ff397296ea2cdb590a9df9a361961be6bf36b072398a422c21 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 qrtl/mi7-custom

+

Beta License: AGPL-3 qrtl/axls-custom

This module hides ‘Send message’ button in chatter to prevent internal users from accidentally sending messages to clients.

Table of contents

@@ -385,10 +385,10 @@

Mail Hide Send Message

Bug Tracker

-

Bugs are tracked on GitHub Issues. +

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed -feedback.

+feedback.

Do not contact contributors directly about support or help with technical issues.

@@ -401,7 +401,7 @@

Authors

Maintainers

-

This module is part of the qrtl/mi7-custom project on GitHub.

+

This module is part of the qrtl/axls-custom project on GitHub.

You are welcome to contribute.

diff --git a/setup/mail_hide_send_message/odoo/addons/mail_hide_send_message b/setup/mail_hide_send_message/odoo/addons/mail_hide_send_message new file mode 120000 index 00000000..85c1b07e --- /dev/null +++ b/setup/mail_hide_send_message/odoo/addons/mail_hide_send_message @@ -0,0 +1 @@ +../../../../mail_hide_send_message \ No newline at end of file diff --git a/setup/mail_hide_send_message/setup.py b/setup/mail_hide_send_message/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/mail_hide_send_message/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)