diff --git a/.travis.yml b/.travis.yml index a99454e..bd3869c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,6 @@ env: install: - docker build --tag=$TAG --file=$DOCKERFILE . - - docker build --tag=etheroll-linux --file=dockerfiles/Dockerfile-linux . script: - travis_wait docker run $TAG $COMMAND diff --git a/README.md b/README.md index 6f727e3..9558e3d 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ [![Build Status](https://secure.travis-ci.org/AndreMiras/EtherollApp.png?branch=develop)](http://travis-ci.org/AndreMiras/EtherollApp) + + Provably fair dice game running on the [Ethereum blockchain](https://etheroll.com/#/smart-contract). Built with Python, [Kivy](https://github.com/kivy/kivy) and love. diff --git a/buildozer.spec b/buildozer.spec index 33cb4dc..7a18c48 100644 --- a/buildozer.spec +++ b/buildozer.spec @@ -23,7 +23,7 @@ source.include_exts = py,png,jpg,kv,atlas,md,json # (list) List of directory to exclude (let empty to not exclude anything) #source.exclude_dirs = tests, bin -source.exclude_dirs = bin, venv, src/python-for-android +source.exclude_dirs = python-for-android # (list) List of exclusions using pattern matching #source.exclude_patterns = license,images/*/*.jpg diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 953168c..4593031 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [v20180617] + + - Fix crash when deployed on SD, refs #96 + ## [v20180531] - Handle wrong password error, refs #9 diff --git a/src/etheroll/utils.py b/src/etheroll/utils.py index 2b27dce..b2c8bbd 100644 --- a/src/etheroll/utils.py +++ b/src/etheroll/utils.py @@ -176,7 +176,7 @@ def find_library(name): pythonforandroid/recipes/python2/patches/ctypes-find-library-updated.patch """ # Check the user app lib dir - app_root = os.path.abspath('./').split(os.path.sep)[0:4] + app_root = os.path.abspath('../../').split(os.path.sep) lib_search = os.path.sep.join(app_root) + os.path.sep + 'lib' for filename in os.listdir(lib_search): if filename.endswith('.so') and name in filename: diff --git a/src/version.py b/src/version.py index 4e8f683..4a14c07 100644 --- a/src/version.py +++ b/src/version.py @@ -1 +1 @@ -__version__ = '2018.0531' +__version__ = '2018.0617'