Initial commit
This commit is contained in:
47
fusion_notes/__manifest__.py
Normal file
47
fusion_notes/__manifest__.py
Normal file
@@ -0,0 +1,47 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2026 Nexa Systems Inc.
|
||||
# License OPL-1 (Odoo Proprietary License v1.0)
|
||||
|
||||
{
|
||||
'name': 'Fusion Notes',
|
||||
'version': '19.0.1.0.0',
|
||||
'category': 'Productivity',
|
||||
'summary': 'Voice-to-text notes for Odoo chatter with AI-powered transcription',
|
||||
'description': """
|
||||
Fusion Notes
|
||||
============
|
||||
|
||||
Voice-to-text note logging for every Odoo chatter window.
|
||||
|
||||
Features:
|
||||
- One-click voice recording from any chatter
|
||||
- AI transcription via OpenAI Whisper
|
||||
- Optional AI formatting to professionally clean up notes
|
||||
- Browser Speech Recognition fallback
|
||||
- Review before posting or quick-post mode
|
||||
|
||||
Copyright 2026 Nexa Systems Inc.
|
||||
""",
|
||||
'author': 'Nexa Systems Inc.',
|
||||
'website': 'https://www.nexasystems.ca',
|
||||
'maintainer': 'Nexa Systems Inc.',
|
||||
'support': 'support@nexasystems.ca',
|
||||
'license': 'OPL-1',
|
||||
'depends': ['mail'],
|
||||
'data': [
|
||||
'data/ir_config_parameter_data.xml',
|
||||
'views/res_config_settings_views.xml',
|
||||
],
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'fusion_notes/static/src/scss/fusion_notes.scss',
|
||||
'fusion_notes/static/src/xml/voice_note_button.xml',
|
||||
'fusion_notes/static/src/js/voice_note_service.js',
|
||||
'fusion_notes/static/src/js/voice_note_button.js',
|
||||
],
|
||||
},
|
||||
'images': ['static/description/icon.png'],
|
||||
'installable': True,
|
||||
'auto_install': False,
|
||||
'application': True,
|
||||
}
|
||||
Reference in New Issue
Block a user