From 43556a047086d56e3764c3ce222fa6914cbfaae2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kierski?= Date: Fri, 1 Mar 2019 14:10:48 +0100 Subject: [PATCH] SDK-2586 Return "None" instead of "Unknown" state for local game for Origin --- galaxy/api/consts.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/galaxy/api/consts.py b/galaxy/api/consts.py index d359a1e..b1c7933 100644 --- a/galaxy/api/consts.py +++ b/galaxy/api/consts.py @@ -31,7 +31,7 @@ class LicenseType(Enum): OtherUserLicense = "OtherUserLicense" class LocalGameState(Enum): - Unknown = "Unknown" + None_ = "None" Installed = "Installed" Running = "Running" diff --git a/setup.py b/setup.py index e79381f..16e4fb9 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="galaxy.plugin.api", - version="0.10", + version="0.11", description="Galaxy python plugin API", author='Galaxy team', author_email='galaxy@gog.com',