From a114c9721c6aa0762df194223404433afc8ac43e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kierski?= Date: Fri, 22 Feb 2019 11:26:17 +0100 Subject: [PATCH] Add Unknown for all enums --- galaxy/api/consts.py | 11 +++++++---- setup.py | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/galaxy/api/consts.py b/galaxy/api/consts.py index c6969fd..d359a1e 100644 --- a/galaxy/api/consts.py +++ b/galaxy/api/consts.py @@ -12,6 +12,7 @@ class Platform(Enum): Battlenet = "battlenet" class Feature(Enum): + Unknown = "Unknown" ImportInstalledGames = "ImportInstalledGames" ImportOwnedGames = "ImportOwnedGames" LaunchGame = "LaunchGame" @@ -24,16 +25,18 @@ class Feature(Enum): VerifyGame = "VerifyGame" class LicenseType(Enum): - SinglePurchase = "SinglePurchase" - FreeToPlay = "FreeToPlay" - OtherUserLicense = "OtherUserLicense" - Unknown = "Unknown" + Unknown = "Unknown" + SinglePurchase = "SinglePurchase" + FreeToPlay = "FreeToPlay" + OtherUserLicense = "OtherUserLicense" class LocalGameState(Enum): + Unknown = "Unknown" Installed = "Installed" Running = "Running" class PresenceState(Enum): + Unknown = "Unknown" Online = "online" Offline = "offline" Away = "away" diff --git a/setup.py b/setup.py index 87f73ee..f6c1dc2 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="galaxy.plugin.api", - version="0.7", + version="0.8", description="Galaxy python plugin API", author='Galaxy team', author_email='galaxy@gog.com',