From e44998b786e8c4e9dd15560cf23e504dae3d0444 Mon Sep 17 00:00:00 2001 From: derrod Date: Sun, 2 Jan 2022 13:10:42 +0100 Subject: [PATCH] [cli] Hide and add warning to automatic bottle setup for now Needs some more testing to see if this is actually viable. --- legendary/cli.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/legendary/cli.py b/legendary/cli.py index 57fd6d4..10540e8 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -2188,6 +2188,8 @@ class LegendaryCLI: logger.info('It is recommended to set up a bottle specifically for Legendary, see ' 'https://legendary.gl/crossover-setup for setup instructions.') elif args.download: + logger.warning('This feature is experimental, and may not work properly. This is not supported by ' + 'CodeWeavers/CrossOver, please report issues only on the Legendary GitHub or Discord!') if mac_is_crossover_running(): logger.error('CrossOver is still running, please quit it before proceeding.') return @@ -2667,11 +2669,11 @@ def main(): eos_overlay_parser.add_argument('--bottle', dest='bottle', action='store', help=argparse.SUPPRESS) eos_overlay_parser.add_argument('--app', dest='app', action='store', help=argparse.SUPPRESS) - cx_parser.add_argument('--reset', dest='reset', action='store_true', help='Reset default/app-specific crossover configuration') cx_parser.add_argument('--download', dest='download', action='store_true', - help='Automatically download and set up a preconfigured bottle (experimental)') + # help='Automatically download and set up a preconfigured bottle (experimental)') + help=argparse.SUPPRESS) cx_parser.add_argument('--crossover-app', dest='crossover_app', action='store', metavar='', help='Specify app to skip interactive selection') cx_parser.add_argument('--crossover-bottle', dest='crossover_bottle', action='store', metavar='',