mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 23:45:44 +07:00

- code in the various menus added over time through the UI (queues, configuration, ...) - update / improve PR layout a tick - fix "outstanding forward ports" count on the dashboard - improve hover title / help on dashboard - add date of last modification (usually date of success / failure) - make casing more coherent (everything lowercase) - add explicit note that UTC date on staged at label is staged at datetime - rediscover yet again that the staging information is when hovering on the staging *except the staged at label* - improve `PullRequest.unstage` to always insert the PR at the start of the reason when cancelling the staging, for clarity / traceability Closes #560, closes #609
22 lines
556 B
Python
22 lines
556 B
Python
{
|
|
'name': 'merge bot',
|
|
'version': '1.7',
|
|
'depends': ['contacts', 'website'],
|
|
'data': [
|
|
'security/security.xml',
|
|
'security/ir.model.access.csv',
|
|
|
|
'data/merge_cron.xml',
|
|
'views/res_partner.xml',
|
|
'views/runbot_merge_project.xml',
|
|
'views/mergebot.xml',
|
|
'views/queues.xml',
|
|
'views/configuration.xml',
|
|
'views/templates.xml',
|
|
'models/project_freeze/views.xml',
|
|
],
|
|
'post_load': 'enable_sentry',
|
|
'pre_init_hook': '_check_citext',
|
|
'license': 'LGPL-3',
|
|
}
|