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: Returns:
(dict) Dictionary of lbry version information (dict) Dictionary of lbry version information
{ {
'platform': (str) platform string 'build': (str) build type (e.g. "dev", "rc", "release"),
'os_release': (str) os release string 'ip': (str) remote ip, if available,
'os_system': (str) os name 'lbrynet_update_available': (bool) whether there's an update available,
'lbrynet_version': (str) lbrynet_version, 'lbrynet_version': (str) lbrynet_version,
'lbryum_version': (str) lbryum_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_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': { 'app': {
'name': 'lbrynet', 'name': 'lbrynet',
'version': platform['lbrynet_version'], 'version': platform['lbrynet_version'],
'ui_version': platform['ui_version'],
'python_version': platform['python_version'], 'python_version': platform['python_version'],
'build': platform['build'], 'build': platform['build'],
'wallet': { 'wallet': {

View file

@ -1215,14 +1215,17 @@ class Daemon(AuthJSONRPCServer):
Returns: Returns:
(dict) Dictionary of lbry version information (dict) Dictionary of lbry version information
{ {
'platform': (str) platform string 'build': (str) build type (e.g. "dev", "rc", "release"),
'os_release': (str) os release string 'ip': (str) remote ip, if available,
'os_system': (str) os name 'lbrynet_update_available': (bool) whether there's an update available,
'lbrynet_version': (str) lbrynet_version, 'lbrynet_version': (str) lbrynet_version,
'lbryum_version': (str) lbryum_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_lbrynet': (str) most recent lbrynet version available from github
'remote_lbryum': (str) most recent lbryum version available from github
} }
""" """