forked from LBRYCommunity/lbry-sdk
update docs
This commit is contained in:
parent
29dea4901e
commit
26d2347812
3 changed files with 16 additions and 11 deletions
|
@ -553,14 +553,17 @@ Args:
|
|||
Returns:
|
||||
(dict) Dictionary of lbry version information
|
||||
{
|
||||
'platform': (str) platform string
|
||||
'os_release': (str) os release string
|
||||
'os_system': (str) os name
|
||||
'build': (str) build type (e.g. "dev", "rc", "release"),
|
||||
'ip': (str) remote ip, if available,
|
||||
'lbrynet_update_available': (bool) whether there's an update available,
|
||||
'lbrynet_version': (str) lbrynet_version,
|
||||
'lbryum_version': (str) lbryum_version,
|
||||
'ui_version': (str) commit hash of ui version being used
|
||||
'os_release': (str) os release string
|
||||
'os_system': (str) os name
|
||||
'platform': (str) platform string
|
||||
'processor': (str) processor type,
|
||||
'python_version': (str) python version,
|
||||
'remote_lbrynet': (str) most recent lbrynet version available from github
|
||||
'remote_lbryum': (str) most recent lbryum version available from github
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -101,7 +101,6 @@ def make_context(platform, wallet):
|
|||
'app': {
|
||||
'name': 'lbrynet',
|
||||
'version': platform['lbrynet_version'],
|
||||
'ui_version': platform['ui_version'],
|
||||
'python_version': platform['python_version'],
|
||||
'build': platform['build'],
|
||||
'wallet': {
|
||||
|
|
|
@ -1215,14 +1215,17 @@ class Daemon(AuthJSONRPCServer):
|
|||
Returns:
|
||||
(dict) Dictionary of lbry version information
|
||||
{
|
||||
'platform': (str) platform string
|
||||
'os_release': (str) os release string
|
||||
'os_system': (str) os name
|
||||
'build': (str) build type (e.g. "dev", "rc", "release"),
|
||||
'ip': (str) remote ip, if available,
|
||||
'lbrynet_update_available': (bool) whether there's an update available,
|
||||
'lbrynet_version': (str) lbrynet_version,
|
||||
'lbryum_version': (str) lbryum_version,
|
||||
'ui_version': (str) commit hash of ui version being used
|
||||
'os_release': (str) os release string
|
||||
'os_system': (str) os name
|
||||
'platform': (str) platform string
|
||||
'processor': (str) processor type,
|
||||
'python_version': (str) python version,
|
||||
'remote_lbrynet': (str) most recent lbrynet version available from github
|
||||
'remote_lbryum': (str) most recent lbryum version available from github
|
||||
}
|
||||
"""
|
||||
|
||||
|
|
Loading…
Reference in a new issue