6 changed files with 70 additions and 5 deletions
@ -0,0 +1,22 @@ |
|||
Automatic Developer Mode v9 |
|||
=========================== |
|||
|
|||
This module aims to reduce the repeated works of a Odoo Developer. |
|||
|
|||
Features |
|||
======== |
|||
|
|||
* Automatically Trigger Developer Mode. |
|||
* Showing Running DB On Left Top. |
|||
* Select a range of date limit(days) in integer form |
|||
* Update Modules Easily. |
|||
|
|||
|
|||
.. note:: |
|||
|
|||
# If you installed any other tool, This module may not work properly. |
|||
# There is a dev mode property missing issue with website module. |
|||
|
|||
Credits |
|||
======= |
|||
Nilmar Shereef @ cybrosys, shereef@cybrosys.in |
@ -0,0 +1,42 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################## |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# Copyright (C) 2009-TODAY Cybrosys Technologies(<http://www.cybrosys.com>). |
|||
# Author: Nilmar Shereef(<http://www.cybrosys.com>) |
|||
# you can modify it under the terms of the GNU LESSER |
|||
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
|||
# |
|||
# It is forbidden to publish, distribute, sublicense, or sell copies |
|||
# of the Software or modified copies of the Software. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. |
|||
# |
|||
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE |
|||
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. |
|||
# If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################## |
|||
{ |
|||
'name': "Automatic Developer Mode", |
|||
'summary': """Automatically Activate Developer Mode""", |
|||
'version': '9.0.2.0.0', |
|||
'author': 'Cybrosys Techno Solutions', |
|||
'website': "http://www.cybrosys.com", |
|||
'company': 'Cybrosys Techno Solutions', |
|||
'category': 'Tools', |
|||
'depends': ['base', 'web', 'base_setup'], |
|||
'data': [ |
|||
'views/web_view.xml', |
|||
'security/security_data.xml', |
|||
'views/developer_mode_view.xml', |
|||
'views/ir_rule_view.xml', |
|||
'data/cybro_developer_data.xml', |
|||
], |
|||
'images': ['static/description/banner.jpg'], |
|||
'installable': True, |
|||
'auto_install': False, |
|||
} |
Loading…
Reference in new issue