Thursday, January 30, 2025
7 changes · saas-18.1
Resolved issues and error corrections
The update adds several missing emoji shortcuts, making it easier for users to insert common emojis such as coffee while typing. Emoji suggestions are also displayed with cleaner spacing, improving readability and consistency in the message composer and emoji picker.
Original PR description
This commit adds a few shortcodes to emojis that felt missing such as `:coffee:`. Also use single space in the emoji suggestion when an emoji has more than 1 shortcode, for consistency with emoji picker search placeholder and also `,` is distracting: emoji shortcodes have no whitespace so whitespace is enough of a separator.
Users now get a larger editing area when updating longer messages, especially in chatter conversations. This reduces cramped editing and makes it easier to review and adjust message content before saving.
Original PR description
Edit of message was limited to 100px of height, which is too narrow especially when editing a message in chatter. This 100px made sense when chat windows were small, but now there's no point to restrict as much. This commit increases to up to 4 times the height, so 400px, giving much more room to edit long messages. Before <img width="2557" alt="Screenshot 2025-01-30 at 16 17 23" src="https://github.com/user-attachments/assets/eee3e2a9-e8db-4c3a-a7b0-02999d9f4c0b" /> After <img width="2558" alt="Screenshot 2025-01-30 at 16 17 00" src="https://github.com/user-attachments/assets/52a32b90-f8ce-4c51-9842-62a0d61307ef" />
The search bar now places the default grouping option before other filters. This helps prevent users from accidentally deleting the default grouping with backspace after a typo, keeping list views organized as intended.
Original PR description
This commit simply shifts the default_group_by facet's position to the front so that users won't accidentally remove it using backspace (after a typo for example). task-4523387
Deleting a live chat channel no longer triggers an unexpected error. This improves reliability for teams managing live chat channels and prevents disruption during routine cleanup.
Original PR description
Task-4504442
The call participant collapse control is now easier to click by making the full button respond instead of only the small icon. This improves usability during calls without changing the button's visual position.
Original PR description
The click was on the icon rather than button, and since icon is very small this is quite hard to click. This commit moves click handler to button, and also increase the click area of button without affecting it's position. <img width="292" alt="Screenshot 2025-01-30 at 11 57 29" src="https://github.com/user-attachments/assets/c8c5a8cd-f463-4440-a9ec-66b42a878aaa" /> Before / After (click area) <img width="293" alt="Screenshot 2025-01-30 at 11 58 12" src="https://github.com/user-attachments/assets/4e9acb87-e9f8-406d-aa57-48039daa5db7" /> <img width="290" alt="Screenshot 2025-01-30 at 11 58 57 (2)" src="https://github.com/user-attachments/assets/9b00e5f4-eb02-435b-93ca-b503412727ec" />
The Overdue Invoices button on a partner now shows only sales documents, preventing miscellaneous accounting entries from appearing in that view. This helps users focus on the relevant overdue customer invoices and reduces confusion during follow-up.
Original PR description
When opening the Invoice Overdue through the partner form: 1 - Create over due MISC entries (through deferred entries for example) 2 - Open a partner 3 - Go the the Accounting tab 4 - Click the Overdue Invoices button -> Some MISC entries show while we only want to view sale document. This commit fixes that by adding a filter on the domain to reduce the search scope to only sale documents. task-4523037
A test for the Planning Gantt view was updated to match a related platform change in how default grouping filters are ordered. This helps keep automated quality checks reliable and reduces the risk of regressions in planning schedule views.
Original PR description
This commit adapts a test to cope with changes made in https://github.com/odoo/odoo/pull/195630. task-4523387