Skip to content

Commit

Permalink
Merge pull request #30 from swat69/master
Browse files Browse the repository at this point in the history
version 4.0.3
  • Loading branch information
2lazy2debug authored Apr 3, 2021
2 parents fcfb24f + 2aa31f7 commit 9629a8b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion contrib/build-wine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN dpkg --add-architecture i386 && \

RUN apt-get update -q && \
apt-get install -qy \
git=1:2.17.1-1ubuntu0.7 \
git=1:2.17.1-1ubuntu0.8 \
p7zip-full=16.02+dfsg-6 \
make=4.1-9.1ubuntu1 \
mingw-w64=5.0.3-1 \
Expand Down
6 changes: 3 additions & 3 deletions electrum/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,11 +534,11 @@ def user_dir():
if 'ANDROID_DATA' in os.environ:
return android_data_dir()
elif os.name == 'posix':
return os.path.join(os.environ["HOME"], ".electrum-xvg")
return os.path.join(os.environ["HOME"], ".electrum_xvg")
elif "APPDATA" in os.environ:
return os.path.join(os.environ["APPDATA"], "Electrum-xvg")
return os.path.join(os.environ["APPDATA"], "Electrum_XVG")
elif "LOCALAPPDATA" in os.environ:
return os.path.join(os.environ["LOCALAPPDATA"], "Electrum-xvg")
return os.path.join(os.environ["LOCALAPPDATA"], "Electrum_XVG")
else:
#raise Exception("No home directory found in environment variables.")
return
Expand Down
4 changes: 2 additions & 2 deletions electrum/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ELECTRUM_VERSION = '4.0.2' # version of the client package
APK_VERSION = '4.0.2.0' # read by buildozer.spec
ELECTRUM_VERSION = '4.0.3' # version of the client package
APK_VERSION = '4.0.3.0' # read by buildozer.spec

PROTOCOL_VERSION = '1.4' # protocol version requested

Expand Down

0 comments on commit 9629a8b

Please sign in to comment.