Compare commits

...

1 Commits
0.7 ... 0.8

Author SHA1 Message Date
Paweł Kierski
a114c9721c Add Unknown for all enums 2019-02-22 11:26:17 +01:00
2 changed files with 8 additions and 5 deletions

View File

@@ -12,6 +12,7 @@ class Platform(Enum):
Battlenet = "battlenet" Battlenet = "battlenet"
class Feature(Enum): class Feature(Enum):
Unknown = "Unknown"
ImportInstalledGames = "ImportInstalledGames" ImportInstalledGames = "ImportInstalledGames"
ImportOwnedGames = "ImportOwnedGames" ImportOwnedGames = "ImportOwnedGames"
LaunchGame = "LaunchGame" LaunchGame = "LaunchGame"
@@ -24,16 +25,18 @@ class Feature(Enum):
VerifyGame = "VerifyGame" VerifyGame = "VerifyGame"
class LicenseType(Enum): class LicenseType(Enum):
SinglePurchase = "SinglePurchase" Unknown = "Unknown"
FreeToPlay = "FreeToPlay" SinglePurchase = "SinglePurchase"
OtherUserLicense = "OtherUserLicense" FreeToPlay = "FreeToPlay"
Unknown = "Unknown" OtherUserLicense = "OtherUserLicense"
class LocalGameState(Enum): class LocalGameState(Enum):
Unknown = "Unknown"
Installed = "Installed" Installed = "Installed"
Running = "Running" Running = "Running"
class PresenceState(Enum): class PresenceState(Enum):
Unknown = "Unknown"
Online = "online" Online = "online"
Offline = "offline" Offline = "offline"
Away = "away" Away = "away"

View File

@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name="galaxy.plugin.api", name="galaxy.plugin.api",
version="0.7", version="0.8",
description="Galaxy python plugin API", description="Galaxy python plugin API",
author='Galaxy team', author='Galaxy team',
author_email='galaxy@gog.com', author_email='galaxy@gog.com',