Browse Source

[FIX] Review comments

12.0-mig-module_prototyper
Maxime Chambreuil 9 years ago
committed by Nicolas JEUDY
parent
commit
3268d6dbb7
  1. 3
      module_prototyper/README.rst
  2. 2
      module_prototyper/__openerp__.py
  3. 2
      module_prototyper/models/module_prototyper.py

3
module_prototyper/README.rst

@ -58,6 +58,7 @@ Known issues / Roadmap
* `#104`_ - Include controllers.py and templates.xml from scaffold. * `#104`_ - Include controllers.py and templates.xml from scaffold.
* Attach images to the prototype and export them to be used in the 'images' module manifest. * Attach images to the prototype and export them to be used in the 'images' module manifest.
* Export data and demo data
* Export reports * Export reports
* Export workflows, nodes, transitions, actions * Export workflows, nodes, transitions, actions
* Export groups, access rights and record rules * Export groups, access rights and record rules
@ -71,7 +72,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_. Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
In case of trouble, please check there if your issue has already been reported. In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
`here <https://github.com/OCA/server-tools/issues/new?body=module:%20module_prototyper%0Aversion:%200.3%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
`here <https://github.com/OCA/server-tools/issues/new?body=module:%20module_prototyper%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Credits Credits
======= =======

2
module_prototyper/__openerp__.py

@ -22,7 +22,7 @@
{ {
'name': 'Module Prototyper', 'name': 'Module Prototyper',
'version': '8.0.0.0.3',
'version': '8.0.0.3.0',
'author': 'Savoir-faire Linux, Odoo Community Association (OCA)', 'author': 'Savoir-faire Linux, Odoo Community Association (OCA)',
'maintainer': 'Savoir-faire Linux', 'maintainer': 'Savoir-faire Linux',
'website': 'http://www.savoirfairelinux.com', 'website': 'http://www.savoirfairelinux.com',

2
module_prototyper/models/module_prototyper.py

@ -109,7 +109,7 @@ class ModulePrototyper(models.Model):
version = fields.Char( version = fields.Char(
'Version', 'Version',
size=9, size=9,
default='8.0.0.0.1',
default='8.0.1.0.0',
help=('Enter the version of your module with 5 digits') help=('Enter the version of your module with 5 digits')
) )
auto_install = fields.Boolean( auto_install = fields.Boolean(

Loading…
Cancel
Save