Version 0.0.10

This commit is contained in:
derrod 2020-05-05 16:27:14 +02:00
parent b1ba25e2e0
commit 693ad3cefc
2 changed files with 24 additions and 46 deletions

View file

@ -149,40 +149,26 @@ positional arguments:
optional arguments: optional arguments:
-h, --help show this help message and exit -h, --help show this help message and exit
--base-path <path> Path for game installations (defaults to ~/legendary) --base-path <path> Path for game installations (defaults to ~/legendary)
--game-folder <path> Folder for game installation (defaults to folder in --game-folder <path> Folder for game installation (defaults to folder in metadata)
metadata)
--max-shared-memory <size> --max-shared-memory <size>
Maximum amount of shared memory to use (in MiB), Maximum amount of shared memory to use (in MiB), default: 1 GiB
default: 1 GiB --max-workers <num> Maximum amount of download workers, default: 2 * logical CPU
--max-workers <num> Maximum amount of download workers, default: 2 * --manifest <uri> Manifest URL or path to use instead of the CDN one (e.g. for downgrading)
logical CPU --old-manifest <uri> Manifest URL or path to use as the old one (e.g. for testing patching)
--manifest <uri> Manifest URL or path to use instead of the CDN one --base-url <url> Base URL to download from (e.g. to test or switch to a different CDNs)
(e.g. for downgrading)
--old-manifest <uri> Manifest URL or path to use as the old one (e.g. for
testing patching)
--base-url <url> Base URL to download from (e.g. to test or switch to a
different CDNs)
--force Ignore existing files (overwrite) --force Ignore existing files (overwrite)
--disable-patching Do not attempt to patch existing installations --disable-patching Do not attempt to patch existing installations (download entire changed file)
(download entire changed file) --download-only, --no-install
--download-only Do not mark game as intalled and do not run prereq Do not mark game as intalled and do not run prereq installers after download
installers after download --update-only Abort if game is not already installed (for automation)
--update-only Abort if game is not already installed (for --dlm-debug Set download manager and worker processes' loglevel to debug
automation)
--dlm-debug Set download manager and worker processes' loglevel to
debug
--platform <Platform> --platform <Platform>
Platform override for download (disables install) Platform override for download (disables install)
--prefix <prefix> Only fetch files whose path starts with <prefix> (case --prefix <prefix> Only fetch files whose path starts with <prefix> (case insensitive)
insensitive) --exclude <prefix> Exclude files starting with <prefix> (case insensitive)
--exclude <prefix> Exclude files starting with <prefix> (case --install-tag <tag> Only download files with the specified install tag (testing)
insensitive) --enable-reordering Enable reordering to attempt to optimize RAM usage during download
--install-tag <tag> Only download files with the specified install tag --dl-timeout <sec> Connection timeout for downloader (default: 10 seconds)
(testing)
--enable-reordering Enable reordering to attempt to optimize RAM usage
during download
--dl-timeout <sec> Connection timeout for downloader (default: 10
seconds)
Command: uninstall Command: uninstall
@ -205,19 +191,15 @@ positional arguments:
optional arguments: optional arguments:
-h, --help show this help message and exit -h, --help show this help message and exit
--offline Skip login and launch game without online --offline Skip login and launch game without online authentication
authentication
--skip-version-check Skip version check when launching game in online mode --skip-version-check Skip version check when launching game in online mode
--override-username <username> --override-username <username>
Override username used when launching the game (only Override username used when launching the game (only works with some titles)
works with some titles) --dry-run Print the command line that would have been used to launch the game and exit
--dry-run Print the command line that would have been used to
launch the game and exit
Command: list-games Command: list-games
usage: legendary list-games [-h] [--platform <Platform>] [--include-ue] [--csv] usage: legendary list-games [-h] [--platform <Platform>] [--include-ue] [--csv] [--tsv]
[--tsv]
optional arguments: optional arguments:
-h, --help show this help message and exit -h, --help show this help message and exit
@ -239,10 +221,7 @@ optional arguments:
Command: list-files Command: list-files
usage: legendary list-files [-h] [--force-download] [--platform <Platform>] usage: legendary list-files [-h] [--force-download] [--platform <Platform>] [--manifest <uri>] [--csv] [--tsv] [--hashlist] [--install-tag <tag>] [<App Name>]
[--manifest <uri>] [--csv] [--tsv] [--hashlist]
[--install-tag <tag>]
[<App Name>]
positional arguments: positional arguments:
<App Name> Name of the app <App Name> Name of the app
@ -255,8 +234,7 @@ optional arguments:
--manifest <uri> Manifest URL or path to use instead of the CDN one --manifest <uri> Manifest URL or path to use instead of the CDN one
--csv Output in CSV format --csv Output in CSV format
--tsv Output in TSV format --tsv Output in TSV format
--hashlist Output file hash list in hashcheck/sha1sum compatible --hashlist Output file hash list in hashcheck/sha1sum compatible format
format
--install-tag <tag> Show only files with specified install tag --install-tag <tag> Show only files with specified install tag
```` ````

View file

@ -1,4 +1,4 @@
"""Legendary!""" """Legendary!"""
__version__ = '0.0.9' __version__ = '0.0.10'
__codename__ = 'Questionable Ethics' __codename__ = 'Surface Tension'