Skip to content
This repository has been archived by the owner on May 3, 2021. It is now read-only.

Commit

Permalink
Bumping protocol version to 8.2.0 for steamvr plugin removal
Browse files Browse the repository at this point in the history
* Also fixed typo with version macro string
  • Loading branch information
HipsterSloth committed Mar 29, 2017
1 parent d4847a0 commit 2887179
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/psmoveprotocol/ProtocolVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2887179

Please sign in to comment.