From 7c0c9d585c7bac7755f68f668ae45f05116fd40c Mon Sep 17 00:00:00 2001 From: Sam Schott Date: Sun, 23 Jun 2019 20:53:08 +0100 Subject: [PATCH] tweaks and version bump to v.0.1.2-dev0 --- README.md | 2 +- bin/maestral-gui | 3 +++ maestral/main.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 34e7ce33..ef7b292f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Dropbox. Meastral uses the Python SDK for the Dropbox API v2. ## Installation Download and install the Python package by running ```console -$ pip install git+https://github.com/SamSchott/maestral +$ pip install --upgrade git+https://github.com/SamSchott/maestral ``` in the command line. diff --git a/bin/maestral-gui b/bin/maestral-gui index 8bc45240..a8607f67 100755 --- a/bin/maestral-gui +++ b/bin/maestral-gui @@ -1,3 +1,6 @@ #!/usr/bin/env bash +# startup script for maestral +# environment setup or checks outside of python can be done here + maestral gui diff --git a/maestral/main.py b/maestral/main.py index 5d8118d6..510897c7 100644 --- a/maestral/main.py +++ b/maestral/main.py @@ -6,7 +6,7 @@ Created on Wed Oct 31 16:23:13 2018 @author: samschott """ -__version__ = "0.1.1" +__version__ = "0.1.2-dev0" __author__ = "Sam Schott" __url__ = "https://github.com/SamSchott/maestral"