From b8ae914758649e8b12a2e87de41ffd6e474fe53e Mon Sep 17 00:00:00 2001 From: Ahmet Altinisik Date: Mon, 18 Jan 2016 00:43:34 +0200 Subject: [PATCH] Update __openerp__.py --- web_hideleftmenu/__openerp__.py | 37 ++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 15 deletions(-) diff --git a/web_hideleftmenu/__openerp__.py b/web_hideleftmenu/__openerp__.py index c0767d5a..6ea1bcab 100644 --- a/web_hideleftmenu/__openerp__.py +++ b/web_hideleftmenu/__openerp__.py @@ -22,10 +22,8 @@ ############################################################################## { - 'name': "Web Hide Left Menu", - 'author': "Vauxoo", - 'category': "Hidden", - 'description': """ + "name": "Web Hide Left Menu", + "summary": """ Hide Left menu: =============== @@ -35,18 +33,27 @@ when you are analysing a bunch of data. Original module by Vauxoo, Migrated to V8.0 by Ahmet Altinisik """, - 'version': "8.0", - 'depends': ['web'], - 'js': [ - 'static/src/js/lib.js', + "version": "8.0.1.0.0", + "category": "Hidden", + "website": "https://odoo-community.org/", + "author": "Vauxoo, Odoo Community Association (OCA)", + "license": "AGPL-3", + "application": False, + "installable": True, + "external_dependencies": { + "python": [], + "bin": [], + }, + "depends": [ + "web", ], - 'css': [ - 'static/src/css/lib.css', + "js": [ + "static/src/js/lib.js", ], - 'qweb': [ - 'static/src/xml/lib.xml', + "css": [ + "static/src/css/lib.css", ], - 'installable': True, - 'auto_install': False, - 'web_preload': False, + "qweb": [ + "static/src/xml/lib.xml", + ] }