Friday, December 23, 2022
7 changes · master
Enhancements to existing features
The mail app now shows the word "Space" when the spacebar is set as the push-to-talk key. This removes a confusing blank display and helps users understand their voice chat shortcut setting.
Original PR description
**Current behavior before PR:** When the `Push-to-talk` key is the "space" we show an "empty string", which is confusing and unclear. **Desired behavior after PR is merged:** We display `Space` string instead of empty space. Task-2794733 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update renames several internal interface components so their names consistently end with “View.” The change helps keep the codebase easier to maintain and reduces confusion for future development, with no expected direct impact on daily users.
Original PR description
\* calender, mrp, test_mail, website_slides **Description of the issue/feature this PR addresses:** All components should be suffixed with 'View'. All models corresponding to components should be suffixed with View and have the exact same name as the component. **This PR Renames:** Activity, ActivityBox, ActivityMenuContainer, ActivityMarkDonePopoverContent, AttachmentBox, AttachmentCard, AttachmentDeleteConfirm, AttachmentImage, AttachmentList, CallActionList, CallInviteRequestPopup, CallInviteRequestPopupList, CallOptionMenu, CallParticipantCard, CallParticipantVideo, CallSettingsMenu, CallSettingsMenuDevice, CallSystrayMenu, CallSystrayMenuContainer, ChannelInvitationFormSelectablePartner Task-2900038 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Test filtering by Odoo module now includes tests marked to run exclusively, not just regular or debug tests. This helps development teams get more complete and reliable test lists when focusing on a specific module.
Original PR description
Before this commit, when filtering tests by odoo module, tests registered with `QUnit.test` and `QUnit.debug` were listed, but not `QUnit.only`.
The website forum sample content was updated to use more general Odoo wording instead of referring specifically to Odoo v8. This keeps demo data current and avoids outdated version references in example forum content.
Original PR description
it is specified as v8, generalized the demo data content to use odoo, instead of odoo v8 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Studio now recognizes the Activity view as using Odoo's newer interface framework. This keeps Studio aligned with the main Odoo platform update and helps ensure a more consistent editing experience.
Original PR description
The `activity` view is converted to Owl in https://github.com/odoo/odoo/pull/107916. This commit register the activity view in Studio as converted in Owl.
This update renames internal interface components and their related models so they follow a consistent “View” naming pattern. It mainly improves maintainability and consistency for future development, with little to no direct impact on day-to-day users.
Original PR description
\* approvals, documents, knowledge, mail_enterprise, sign, voip **Description of the issue/feature this PR addresses:** All components should be suffixed with 'View'. All models corresponding to components should be suffixed with View and have the exact same name as the component. **This PR Renames:** Activity, ActivityBox, ActivityMenuContainer, ActivityMarkDonePopoverContent, AttachmentBox, AttachmentCard, AttachmentDeleteConfirm, AttachmentImage, AttachmentList, CallActionList, CallInviteRequestPopup, CallInviteRequestPopupList, CallOptionMenu, CallParticipantCard, CallParticipantVideo, CallSettingsMenu, CallSettingsMenuDevice, CallSystrayMenu, CallSystrayMenuContainer, ChannelInvitationFormSelectablePartner Task-2900038 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Odoo Studio styling was adjusted so list headers stay visually consistent when they remain visible during scrolling. This removes small display glitches and makes editing list views smoother for users.
Original PR description
This commit is the counter-part of odoo/odoo#107631 which makes the list view headers remain visible when the user scrolls. This created some small glitches in Studio which required some adapations. Task 1917230