Wednesday, January 8, 2025
2 changes · saas-18.1
Enhancements to existing features
Odoo IoT boxes can now automatically print their status using Zebra label printers, in addition to Epson and STAR printers. This makes setup and troubleshooting easier for businesses that rely on Zebra hardware.
Original PR description
Before this commit, the IoT box would only automatically print its status using Epson or STAR printers. This commit adds status printing support for ZPL (Zebra) printers. task-4460563 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The IoT Box image now includes a more helpful Vim editor configuration for people working directly on the device. This makes maintenance easier by adding code highlighting, file type detection, a status bar, and mouse support in the editor.
Original PR description
This PR adds some features to the vim configuration used on the IoT Box (a new image is needed to make it work) 1. `filetype on` allows vim to detect the file extension and adjust syntax highglighting accordingly 2. `set laststatus=2` allows to display useful infobar at the bottom of the editor 3. `set mouse=a` enables the mouse in vim 4. `syntax on` uses colors to highlight code in vim