From 5d502b144a820692468e69113c9e9a931265a9c6 Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Fri, 1 Jun 2018 00:12:01 +0200 Subject: [PATCH 1/5] Adds APK download to README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) 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. From 604f5c632c307efbef698f84cef632f529024c41 Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Sun, 3 Jun 2018 22:16:29 +0200 Subject: [PATCH 2/5] find_library when deployed external storage fixes #96 https://github.com/kivy/python-for-android/pull/1291 --- src/CHANGELOG.md | 4 ++++ src/etheroll/utils.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 953168c..236579a 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [Unreleased] + + - 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: From 40c33c7a910bb52c335873b03ffb6be129034e38 Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Fri, 8 Jun 2018 00:44:19 +0200 Subject: [PATCH 3/5] Removes leftover docker build command This line was forgotten and should not be required since the previous is already doing the build. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) 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 From 17d7dc9bfc4192a3d3e4b7f00b2281e4b6825f7e Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Sat, 16 Jun 2018 23:59:37 +0200 Subject: [PATCH 4/5] Fixes exclude_dirs The root path is `source.dir`. --- buildozer.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 5cf10a26dcb9810068403dda9c27b75dda261c2d Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Sun, 17 Jun 2018 00:50:42 +0200 Subject: [PATCH 5/5] v20180617 --- src/CHANGELOG.md | 2 +- src/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 236579a..4593031 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [Unreleased] +## [v20180617] - Fix crash when deployed on SD, refs #96 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'