Monday, December 4, 2023
3 changes · 17.0
Enhancements to existing features
The mail push-to-talk browser extension now includes correctly sized icons and a required screenshot for Chrome Web Store publication. The documentation also notes that ChromeOS does not support global keyboard commands, helping set expectations for users on that platform.
Original PR description
In order to be published on the chrome extension store, an extension must provide at least one screenshot and a 128x128 icon. Until now, the extension assets only contained a 100x100 icon that was used as 128 and did not contain any screenshot. In order to ease updates on the chrome extension store, this commit updates the two icons used by this extension to match the expected dimensions and adds the required screenshot. At the same time, this commit updates the extension readme to warn about ChromeOS limitations (ChromeOS does not support global commands).
The point of sale receipt screen now shows a larger receipt preview, making it easier for cashiers to read and verify details before starting the next order. The new order button was resized to keep the screen layout balanced with the larger receipt.
Original PR description
This commit increase the receipt size on the receipt screen and shrink the new order button to fit the new size. Old:  New:  --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update adjusts the Calendar menu ordering so it stays in the expected position after upgrades. It helps avoid confusing menu shifts for users without requiring a separate upgrade script.
Original PR description
The sequence is equal to 10 and it is causing issues during upgrade. The order used by the menus is _order = sequence, id As the menu has a new xmlid, it will be placed after the existing one because if his sequence. We could 1) lower the sequence value 2) don't provide a sequence (menuitem is noupdate False) and update the value in the upgrade script. Proposal 1 is chosen as it does not require an upgrade script. taskid: 3618126 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr