mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 17:55:27 +00:00
Version 0.0.7
This commit is contained in:
parent
3a08d526d5
commit
8e93b4923d
25
README.md
25
README.md
|
@ -104,7 +104,7 @@ $ legendary launch Anemone
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
````
|
````
|
||||||
usage: legendary [-h] [-v] [-y] [-V] {auth,download,uninstall,launch,list-games,list-installed,list-files} ...
|
usage: legendary [-h] [-v] [-y] [-V] {auth,install,download,update,uninstall,launch,list-games,list-installed,list-files} ...
|
||||||
|
|
||||||
Legendary v0.0.X - "Codename"
|
Legendary v0.0.X - "Codename"
|
||||||
|
|
||||||
|
@ -115,9 +115,10 @@ optional arguments:
|
||||||
-V Print version and exit
|
-V Print version and exit
|
||||||
|
|
||||||
Commands:
|
Commands:
|
||||||
{auth,download,uninstall,launch,list-games,list-installed,list-files}
|
{auth,install,download,update,uninstall,launch,list-games,list-installed,list-files}
|
||||||
auth Authenticate with EPIC
|
auth Authenticate with EPIC
|
||||||
download Download a game
|
install (download,update)
|
||||||
|
Download a game
|
||||||
uninstall Uninstall (delete) a game
|
uninstall Uninstall (delete) a game
|
||||||
launch Launch a game
|
launch Launch a game
|
||||||
list-games List available (installable) games
|
list-games List available (installable) games
|
||||||
|
@ -134,8 +135,10 @@ optional arguments:
|
||||||
--import Import EGS authentication data
|
--import Import EGS authentication data
|
||||||
|
|
||||||
|
|
||||||
Command: download
|
Command: install
|
||||||
usage: legendary download <App Name> [options]
|
usage: legendary install <App Name> [options]
|
||||||
|
|
||||||
|
Aliases: download, update
|
||||||
|
|
||||||
positional arguments:
|
positional arguments:
|
||||||
<App Name> Name of the app
|
<App Name> Name of the app
|
||||||
|
@ -173,6 +176,10 @@ optional arguments:
|
||||||
insensitive)
|
insensitive)
|
||||||
--install-tag <tag> Only download files with the specified install tag
|
--install-tag <tag> Only download files with the specified install tag
|
||||||
(testing)
|
(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
|
||||||
|
@ -230,9 +237,9 @@ 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]
|
[--manifest <uri>] [--csv] [--tsv] [--hashlist]
|
||||||
[--install-tag <prefix>]
|
[--install-tag <tag>]
|
||||||
[<App Name>]
|
[<App Name>]
|
||||||
|
|
||||||
positional arguments:
|
positional arguments:
|
||||||
<App Name> Name of the app
|
<App Name> Name of the app
|
||||||
|
@ -248,8 +255,6 @@ optional arguments:
|
||||||
--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
|
||||||
|
|
||||||
|
|
||||||
````
|
````
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
"""Legendary!"""
|
"""Legendary!"""
|
||||||
|
|
||||||
__version__ = '0.0.6'
|
__version__ = '0.0.7'
|
||||||
__codename__ = 'Residue Processing'
|
__codename__ = 'Questionable Ethics'
|
||||||
|
|
Loading…
Reference in a new issue