diff --git a/README.md b/README.md index b9003442b..e501b322d 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ addon | version | maintainers | summary [iap_alternative_provider](iap_alternative_provider/) | 16.0.1.0.0 | [![sebastienbeau](https://github.com/sebastienbeau.png?size=30px)](https://github.com/sebastienbeau) | Base module for providing alternative provider for iap apps [jsonifier](jsonifier/) | 16.0.0.1.0 | | JSON-ify data for all models [letsencrypt](letsencrypt/) | 16.0.1.1.1 | [![hbrunn](https://github.com/hbrunn.png?size=30px)](https://github.com/hbrunn) | Request SSL certificates from letsencrypt.org -[module_analysis](module_analysis/) | 16.0.1.0.3 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | Add analysis tools regarding installed modules to know which installed modules comes from Odoo Core, OCA, or are custom modules +[module_analysis](module_analysis/) | 16.0.1.0.4 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | Add analysis tools regarding installed modules to know which installed modules comes from Odoo Core, OCA, or are custom modules [module_auto_update](module_auto_update/) | 16.0.1.0.2 | | Automatically update Odoo modules [module_change_auto_install](module_change_auto_install/) | 16.0.1.0.2 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | Customize auto installables modules by configuration [nsca_client](nsca_client/) | 16.0.1.0.0 | | Send passive alerts to monitor your Odoo application. diff --git a/module_analysis/README.rst b/module_analysis/README.rst index d3e949f6d..22091570a 100644 --- a/module_analysis/README.rst +++ b/module_analysis/README.rst @@ -7,7 +7,7 @@ Module Analysis !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:f8513f5b49d062610250e5784f52d2f47a40b573401c14c8304fb93c4343d146 + !! source digest: sha256:42cd3bc713aa055ca4fb7050c76a79505522464ae21344afd3afa412bda15b32 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/module_analysis/__manifest__.py b/module_analysis/__manifest__.py index 4cbc311d9..3ea662020 100644 --- a/module_analysis/__manifest__.py +++ b/module_analysis/__manifest__.py @@ -10,7 +10,7 @@ "author": "GRAP, Odoo Community Association (OCA)", "maintainers": ["legalsylvain"], "website": "https://github.com/OCA/server-tools", - "version": "16.0.1.0.3", + "version": "16.0.1.0.4", "license": "AGPL-3", "depends": ["base"], "data": [ diff --git a/module_analysis/static/description/index.html b/module_analysis/static/description/index.html index 6e2980bf1..a88c8a6e8 100644 --- a/module_analysis/static/description/index.html +++ b/module_analysis/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:f8513f5b49d062610250e5784f52d2f47a40b573401c14c8304fb93c4343d146 +!! source digest: sha256:42cd3bc713aa055ca4fb7050c76a79505522464ae21344afd3afa412bda15b32 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runboat

This module allows you to know ‘how much code’ is running on your Odoo @@ -448,16 +448,16 @@ developped for exemple,

If you want to analyse other data, (for exemple, having the number of HTML files), create a custom modules and overload the module model :

-from odoo import api, fields, models
+from odoo import api, fields, models
 
-class IrModuleModule(models.Model):
+class IrModuleModule(models.Model):
    _inherit = 'ir.module.module'
 
    xml_documentation_qty = fields.Integer(
       string='Quantity of Comments in XML Files')
 
   @api.model
-  def _get_analyse_settings(self):
+  def _get_analyse_settings(self):
       res = super()._get_analyse_settings()
       if not '.html' in res:
           res['.html'] = {}