# -*- coding: utf-8 -*- # Repackaged for Fusion Apps by Nexa Systems Inc. (2026) — LGPL-3. # Upstream source: Odoo S.A. `iot` module (tag 19.0). # Changes from upstream: # * update.py — publisher_warranty IoT-Box reporter neutralised # * iot_handlers/lib/load_worldline_library.sh — removed (Worldline lib fetch from odoo.com) # No other functional changes — the module still runs Odoo's IoT pairing, # channel, device management UI, and handler-zip endpoint as upstream. { 'name': 'Internet of Things', 'version': '19.0.1.0.0', 'category': 'Administration/IoT', 'sequence': 250, 'summary': 'IoT Box management + device framework (repackaged for Fusion).', 'description': """ This module provides management of your IoT Boxes inside Odoo. Repackaged for community use by Nexa Systems Inc. — Fusion Apps product family. """, 'depends': ['mail', 'iot_base'], 'data': [ 'wizard/add_iot_box_views.xml', 'wizard/select_printers_views.xml', 'security/iot_security.xml', 'security/ir.model.access.csv', 'views/iot_views.xml', ], 'demo': [ 'demo/iot_demo.xml' ], 'installable': True, 'application': True, 'author': 'Nexa Systems Inc. (repackaged from Odoo S.A.)', 'license': 'LGPL-3', 'assets': { 'web.assets_backend': [ 'iot/static/src/**/*', ], 'web.assets_unit_tests': [ 'iot/static/src/network_utils/iot_websocket.js', 'iot/static/src/network_utils/iot_webrtc.js', 'iot/static/tests/unit/**/*', ], 'web.assets_tests': [ ('include', 'iot.assets_tests'), ], 'iot.assets_tests': [ 'iot/static/tests/tours/**/*', ], } }