X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/waydroid.git/blobdiff_plain/204403056e6c8adc14406be5e64c4f1996e185bc..2be58d19ad233e61d5ce1d3c3fbbe38261f783e6:/tools/config/__init__.py diff --git a/tools/config/__init__.py b/tools/config/__init__.py index 76a2162..002562e 100644 --- a/tools/config/__init__.py +++ b/tools/config/__init__.py @@ -12,7 +12,7 @@ from tools.config.save import save # # Exported variables (internal configuration) # -version = "1.3.4" +version = "1.4.2" tools_src = os.path.normpath(os.path.realpath(__file__) + "/../../..") # Keys saved in the config file (mostly what we ask in 'waydroid init') @@ -22,7 +22,8 @@ config_keys = ["arch", "system_datetime", "vendor_datetime", "suspend_action", - "mount_overlays"] + "mount_overlays", + "auto_adb"] # Config file/commandline default values # $WORK gets replaced with the actual value for args.work (which may be @@ -39,6 +40,7 @@ defaults = { ], "suspend_action": "freeze", "mount_overlays": "True", + "auto_adb": "True", } defaults["images_path"] = defaults["work"] + "/images" defaults["rootfs"] = defaults["work"] + "/rootfs"