We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 142faf1 commit 982ac6aCopy full SHA for 982ac6a
src/doblib/__init__.py
@@ -1 +1 @@
1
-VERSION = "0.20.3"
+VERSION = "0.20.4"
src/doblib/env.py
@@ -245,6 +245,14 @@ def _init_odoo(self):
245
if self.odoo_version() >= (19,):
246
import odoo.init
247
248
+ # Odoo 19.0 automatically sets the addons/ folder using the
249
+ # `addons_community_dir` property of the config as a path for addons.
250
+ # This bypasses the blacklisting/whitelisting of modules for CE modules
251
+ # entirely. Just set it to the ADDON_PATH where every module gets a symlink
252
+ from odoo.tools.config import configmanager
253
+
254
+ configmanager.addons_community_dir = base.ADDON_PATH
255
256
return path
257
258
def odoo_version(self):
0 commit comments