3 Commits

Author SHA1 Message Date
Stijn Van Campenhout
8916261afd bump version 2021-07-23 10:36:50 +02:00
Stijn Van Campenhout
081db1ddc2 Merge remote-tracking branch 'origin/master'
# Conflicts:
#	rmapy/const.py
2021-07-23 10:35:59 +02:00
Stijn Van Campenhout
5c78598271 fix: auth url. See #25 2021-07-23 10:34:17 +02:00
2 changed files with 4 additions and 3 deletions

View File

@@ -1,7 +1,8 @@
RFC3339Nano = "%Y-%m-%dT%H:%M:%SZ"
USER_AGENT = "rmapy"
AUTH_BASE_URL = "https://webapp-production-dot-remarkable-production.appspot.com"
BASE_URL = "https://document-storage-production-dot-remarkable-production.appspot.com" # noqa
DEVICE_TOKEN_URL = "https://webapp-production-dot-remarkable-production.appspot.com/token/json/2/device/new"
USER_TOKEN_URL = "https://webapp-production-dot-remarkable-production.appspot.com/token/json/2/user/new"
DEVICE_TOKEN_URL = AUTH_BASE_URL + "/token/json/2/device/new"
USER_TOKEN_URL = AUTH_BASE_URL + "/token/json/2/user/new"
DEVICE = "desktop-windows"
SERVICE_MGR_URL = "https://service-manager-production-dot-remarkable-production.appspot.com" # noqa

View File

@@ -37,7 +37,7 @@ setup(
# For a discussion on single-sourcing the version across setup.py and the
# project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='0.3.0', # Required
version='0.3.1', # Required
# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field: