mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 17:55:27 +00:00
[cli] Hide and add warning to automatic bottle setup for now
Needs some more testing to see if this is actually viable.
This commit is contained in:
parent
8e4bb8d3dd
commit
e44998b786
|
@ -2188,6 +2188,8 @@ class LegendaryCLI:
|
||||||
logger.info('It is recommended to set up a bottle specifically for Legendary, see '
|
logger.info('It is recommended to set up a bottle specifically for Legendary, see '
|
||||||
'https://legendary.gl/crossover-setup for setup instructions.')
|
'https://legendary.gl/crossover-setup for setup instructions.')
|
||||||
elif args.download:
|
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():
|
if mac_is_crossover_running():
|
||||||
logger.error('CrossOver is still running, please quit it before proceeding.')
|
logger.error('CrossOver is still running, please quit it before proceeding.')
|
||||||
return
|
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('--bottle', dest='bottle', action='store', help=argparse.SUPPRESS)
|
||||||
eos_overlay_parser.add_argument('--app', dest='app', 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',
|
cx_parser.add_argument('--reset', dest='reset', action='store_true',
|
||||||
help='Reset default/app-specific crossover configuration')
|
help='Reset default/app-specific crossover configuration')
|
||||||
cx_parser.add_argument('--download', dest='download', action='store_true',
|
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='<path to .app>',
|
cx_parser.add_argument('--crossover-app', dest='crossover_app', action='store', metavar='<path to .app>',
|
||||||
help='Specify app to skip interactive selection')
|
help='Specify app to skip interactive selection')
|
||||||
cx_parser.add_argument('--crossover-bottle', dest='crossover_bottle', action='store', metavar='<bottle name>',
|
cx_parser.add_argument('--crossover-bottle', dest='crossover_bottle', action='store', metavar='<bottle name>',
|
||||||
|
|
Loading…
Reference in a new issue