Friday, April 28, 2023
5 changes
Enhancements to existing features
The Swedish reporting tests were updated to match the latest tax and account naming taxonomy. This helps keep report validation reliable as naming conventions change, reducing the risk of false test failures without changing business workflows.
Original PR description
As the taxes name change with the new taxonomy, the tests must be slightly adapted to continue to use the same taxes Task-3052677 Task-3122530
The message shown to read-only users viewing restricted, unpublished knowledge articles has been reworded. This makes the article access status easier to understand by explaining that the article is not published and only specific people can access it.
Original PR description
This commit rewords the div added by the website_knowledge module inside the PermissionPanel. It now says : 'Article not Published Only specific people can access' This is changed for users that can only read the article with no editing rights task-3290824
This change updates an internal Discuss Enterprise performance test to account for an additional check of link preview status. It keeps automated quality checks aligned with current behavior, with no expected direct impact for end users.
Original PR description
Community: https://github.com/odoo/odoo/pull/99564
The Discuss-related components in Odoo Enterprise were adjusted to rely on fewer external dependencies and to load shared messaging components more directly. This helps simplify maintenance and can improve reliability for features that integrate with discussions, such as Approvals, Documents, Sign, and VoIP.
Original PR description
Task-2967711 Community: https://github.com/odoo/odoo/pull/99259
Dark mode button styling has been refined so secondary buttons are easier to distinguish from page backgrounds. Hover and active states now use brighter, more consistent colors, improving readability and usability across affected Odoo screens.
Original PR description
This PR introduces some minor changes to the dark mode buttons color. Previously, there was an issue with secondary buttons having a `$o-gray-200` background in light mode which is equal to `$o-view-background-color` in dark mode, so we couldn't distinguish buttons over the background. The methode used in this commit is to lighten a `$o-gray-*` variable to keep it consistent with our existing grayscale. There is also an improvement on the `hover` and `active` state of these secondary buttons. We were previously using `$o-white` as the background which becomes `$o-black`in dark mode. We now use a dark green color mixed with the action-color to get something lighter and brighter.