Compare commits

...

1 Commits
0.10 ... 0.11

Author SHA1 Message Date
Paweł Kierski
43556a0470 SDK-2586 Return "None" instead of "Unknown" state for local game for Origin 2019-03-01 14:10:48 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ class LicenseType(Enum):
OtherUserLicense = "OtherUserLicense"
class LocalGameState(Enum):
Unknown = "Unknown"
None_ = "None"
Installed = "Installed"
Running = "Running"

View File

@@ -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',