Sunday, September 15, 2024
3 changes · master
Enhancements to existing features
The website setup flow now offers an option to import an existing website using the website scraper, helping users recreate their current site more quickly. This beta feature is controlled by a setting and limits generated pages to 10 while it is being tested.
Original PR description
ICP `website_generator.enable` needs to be set to true for it to work. The amount of generated pages is limited to 10 during the beta. task-3339551
This update standardizes how translated text is prepared across many Odoo Enterprise apps, using a shared lazy translation approach. It helps keep user-facing messages ready for accurate localization while reducing translation maintenance issues behind the scenes.
Original PR description
Use LazyTranslate. odoo/odoo#174844
Several apps now use Odoo’s own dropdown menu component instead of an older third-party library. This reduces reliance on outdated technology and helps keep forms and website flows more maintainable without changing the intended user experience.
Original PR description
With this commit, we are removing the `Select2 library`, as it relies on `jQuery`. We are now using our custom `select_menu`component, which is built on `Owl` and does not require jQuery.