update docs

This commit is contained in:
Alex Grintsvayg 2017-03-15 16:31:58 -04:00
parent 29dea4901e
commit 26d2347812
3 changed files with 16 additions and 11 deletions

View file

@ -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
}
```

View file

@ -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': {

View file

@ -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
}
"""