From 28871792b9ba910a2d1ab8e46af8652b5f00882a Mon Sep 17 00:00:00 2001 From: HipsterSloth Date: Wed, 29 Mar 2017 12:14:56 -0700 Subject: [PATCH] Bumping protocol version to 8.2.0 for steamvr plugin removal * Also fixed typo with version macro string --- src/psmoveprotocol/ProtocolVersion.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/psmoveprotocol/ProtocolVersion.h b/src/psmoveprotocol/ProtocolVersion.h index 13acfad9..36bb4ee4 100644 --- a/src/psmoveprotocol/ProtocolVersion.h +++ b/src/psmoveprotocol/ProtocolVersion.h @@ -12,17 +12,17 @@ #define PSM_VERSION_MAJOR 9 #define PSM_VERSION_PHASE alpha #define PSM_VERSION_MINOR 8 -#define PSM_VERSION_RELEASE 1 +#define PSM_VERSION_RELEASE 2 #define PSM_VERSION_HOTFIX 0 /// "Product.Major-Phase Minor.Release" #if !defined(PSM_VERSION_STRING) - #define PSM_VERSION_STRING PSM_STRINGIZE(PSM_PRODUCT_VERSION.PSM_MAJOR_VERSION-PSM_PHASE PSM_MINOR_VERSION.PSM_VERSION_RELEASE) + #define PSM_VERSION_STRING PSM_STRINGIZE(PSM_VERSION_PRODUCT.PSM_VERSION_MAJOR-PSM_VERSION_PHASE PSM_VERSION_MINOR.PSM_VERSION_RELEASE) #endif /// "Product.Major-Phase Minor.Release.Hotfix" #if !defined(PSM_DETAILED_VERSION_STRING) - #define PSM_DETAILED_VERSION_STRING PSM_STRINGIZE(PSM_PRODUCT_VERSION.PSM_MAJOR_VERSION-PSM_PHASE PSM_MINOR_VERSION.PSM_VERSION_RELEASE.PSM_VERSION_HOTFIX) + #define PSM_DETAILED_VERSION_STRING PSM_STRINGIZE(PSM_VERSION_PRODUCT.PSM_VERSION_MAJOR-PSM_VERSION_PHASE PSM_VERSION_MINOR.PSM_VERSION_RELEASE.PSM_VERSION_HOTFIX) #endif #endif // PROTOCOL_VERSION_H