19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:32:58 +01:00
parent 20e6dadd87
commit 4b94f0abc5
205 changed files with 24700 additions and 14614 deletions

View file

@ -9,46 +9,65 @@ Odoo Web tours.
========================
""",
'version': '0.1',
'version': '1.0',
'depends': ['web'],
'data': [
'security/ir.model.access.csv',
'security/ir.rule.csv',
'views/tour_views.xml'
'views/tour_views.xml',
],
'assets': {
'web.assets_common': [
'web_tour/static/src/scss/**/*',
'web_tour/static/src/js/running_tour_action_helper.js',
'web_tour/static/src/js/tip.js',
'web_tour/static/src/js/tour_manager.js',
'web_tour/static/src/js/tour_service.js',
'web_tour/static/src/js/tour_step_utils.js',
'web_tour/static/src/js/tour_utils.js',
'/web_tour/static/src/xml/tip.xml',
],
'web.assets_backend': [
'web_tour/static/src/debug/debug_manager.js',
'web_tour/static/src/debug/tour_dialog_component.js',
'web_tour/static/src/services/*.js',
'web_tour/static/src/debug/tour_dialog_component.xml',
'web_tour/static/src/scss/**/*',
'web_tour/static/src/js/tour_pointer/**/*',
'web_tour/static/src/js/utils/**/*',
'web_tour/static/src/js/tour_state.js',
'web_tour/static/src/js/tour_service.js',
'web_tour/static/src/js/tour_recorder/tour_recorder_state.js',
'web_tour/static/src/tour_utils.js',
'web_tour/static/src/js/onboarding_item.xml',
'web_tour/static/src/views/**/*',
'web_tour/static/src/widgets/**/*',
],
'web.assets_frontend': [
'web_tour/static/src/scss/**/*',
'web_tour/static/src/js/running_tour_action_helper.js',
'web_tour/static/src/js/tip.js',
'web_tour/static/src/js/tour_manager.js',
'web_tour/static/src/js/tour_pointer/**/*',
'web_tour/static/src/js/utils/**/*',
'web_tour/static/src/js/tour_state.js',
'web_tour/static/src/js/tour_service.js',
'web_tour/static/src/js/tour_step_utils.js',
'web_tour/static/src/js/tour_utils.js',
'/web_tour/static/src/xml/tip.xml',
'web_tour/static/src/js/public/**/*',
'web_tour/static/src/js/tour_recorder/tour_recorder_state.js',
'web_tour/static/src/tour_utils.js',
'web_tour/static/src/js/onboarding_item.xml',
],
'web.qunit_suite_tests': [
'web_tour/static/tests/**/*',
'web.assets_unit_tests': [
('include', 'web_tour.recorder'),
('include', 'web_tour.automatic'),
('include', 'web_tour.interactive'),
'web_tour/static/tests/*.test.js',
],
"web.assets_tests": [
'web_tour/static/src/js/tour_automatic/tour_helpers.js',
('include', 'web_tour.automatic')
],
'web_tour.common': [
'web/static/lib/hoot-dom/**/*',
'web_tour/static/src/js/tour_step.js',
],
'web_tour.interactive': [
('include', 'web_tour.common'),
'web_tour/static/src/js/tour_interactive/**/*',
],
'web_tour.automatic': [
('include', 'web_tour.common'),
'web_tour/static/src/js/tour_automatic/**/*',
],
'web_tour.recorder': [
('include', 'web_tour.common'),
'web_tour/static/src/js/tour_recorder/**/*',
'web_tour/static/src/views/**/*',
'web_tour/static/src/widgets/**/*',
],
},
'auto_install': True,
'author': 'Odoo S.A.',
'license': 'LGPL-3',
}