Skip to content

Commit

Permalink
Introduce snapshot version for versions not yet released (ie built fr…
Browse files Browse the repository at this point in the history
…om source at any point). The official release should not be a snapshot version.
  • Loading branch information
Elime1 committed Jun 26, 2020
1 parent f53e9ec commit ae62b0c
Show file tree
Hide file tree
Showing 3 changed files with 2,051 additions and 2,039 deletions.
7 changes: 5 additions & 2 deletions source/definitions.h
Expand Up @@ -25,8 +25,8 @@
// Version info
// xxyyzzt (major, minor, subversion)
#define __RME_VERSION_MAJOR__ 3
#define __RME_VERSION_MINOR__ 6
#define __RME_SUBVERSION__ 1
#define __RME_VERSION_MINOR__ 7
#define __RME_SUBVERSION__ 0

#define __LIVE_NET_VERSION__ 5

Expand All @@ -43,6 +43,9 @@
#ifdef __EXPERIMENTAL__
# define __RME_VERSION__ std::string(i2s(__RME_VERSION_MAJOR__) + "." + i2s(__RME_VERSION_MINOR__) + "." + i2s(__RME_SUBVERSION__) + " BETA")
# define __W_RME_VERSION__ (wxString() << __RME_VERSION_MAJOR__ << "." << __RME_VERSION_MINOR__ << "." << __RME_SUBVERSION__ << " BETA")
#elif __SNAPSHOT__
# define __RME_VERSION__ std::string(i2s(__RME_VERSION_MAJOR__) + "." + i2s(__RME_VERSION_MINOR__) + "." + i2s(__RME_SUBVERSION__) + " - SNAPSHOT")
# define __W_RME_VERSION__ (wxString() << __RME_VERSION_MAJOR__ << "." << __RME_VERSION_MINOR__ << "." << __RME_SUBVERSION__ << " - SNAPSHOT")
#else
# define __RME_VERSION__ std::string(i2s(__RME_VERSION_MAJOR__) + "." + i2s(__RME_VERSION_MINOR__) + "." + i2s(__RME_SUBVERSION__))
# define __W_RME_VERSION__ (wxString() << __RME_VERSION_MAJOR__ << "." << __RME_VERSION_MINOR__ << "." << __RME_SUBVERSION__)
Expand Down

0 comments on commit ae62b0c

Please sign in to comment.