Skip to content
This repository has been archived by the owner on Sep 1, 2021. It is now read-only.

Commit

Permalink
Merge branch 'release/v20180617'
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreMiras committed Jun 16, 2018
2 parents 1a0ea7c + 5cf10a2 commit b416ea8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

[![Build Status](https://secure.travis-ci.org/AndreMiras/EtherollApp.png?branch=develop)](http://travis-ci.org/AndreMiras/EtherollApp)

<a href="https://github.com/AndreMiras/EtherollApp/releases/download/v20180531/Etheroll-2018.0531-debug.apk"><img src="https://www.scottishchildrenslottery.com/export/system/modules/com.assense.gaming.stv.template/resources/images/google-play-store.svg" width="200"></a>

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.

Expand Down
2 changes: 1 addition & 1 deletion buildozer.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions src/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [v20180617]

- Fix crash when deployed on SD, refs #96

## [v20180531]

- Handle wrong password error, refs #9
Expand Down
2 changes: 1 addition & 1 deletion src/etheroll/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2018.0531'
__version__ = '2018.0617'

0 comments on commit b416ea8

Please sign in to comment.