lbry-sdk/lbrynet/__init__.py
Jack 5f49827bd2 fix lagging indicator and improve diagnostic
-make is_lagging more meaningful - it is set to true after 90 seconds
with no progress, this is to stop slow but steady catchups from
triggering it

-prevent situation where repeated shutdowns before wallet catchup
results in never receiving first run credits

-fix settings to write new defaults that aren’t already in the
configuration file

-report log of startup sequence if upload_log set to true

-redirect /view?name=lbry to the main UI page. This is to make the ui
accessible from a lbry:// link on linux
2016-04-17 19:54:04 -04:00

9 lines
151 B
Python

import logging
logging.getLogger(__name__).addHandler(logging.NullHandler())
version = (0, 2, 2)
__version__ = ".".join([str(x) for x in version])