summaryrefslogtreecommitdiffstats
path: root/config.h.in
diff options
context:
space:
mode:
authorForkk <forkk@forkk.net>2014-01-07 18:09:05 -0600
committerForkk <forkk@forkk.net>2014-01-07 18:09:05 -0600
commit3202b972f8dac05d4464eb46724b1bd703b9b21d (patch)
tree05d63b3945d8057d86fec899b9bd0dc533ee82ac /config.h.in
parent28cb66e85cad786f08b40cf242cb17a70d9e7432 (diff)
downloadMultiMC-3202b972f8dac05d4464eb46724b1bd703b9b21d.tar
MultiMC-3202b972f8dac05d4464eb46724b1bd703b9b21d.tar.gz
MultiMC-3202b972f8dac05d4464eb46724b1bd703b9b21d.tar.lz
MultiMC-3202b972f8dac05d4464eb46724b1bd703b9b21d.tar.xz
MultiMC-3202b972f8dac05d4464eb46724b1bd703b9b21d.zip
Rework version numbering system.
Again...
Diffstat (limited to 'config.h.in')
-rw-r--r--config.h.in12
1 files changed, 8 insertions, 4 deletions
diff --git a/config.h.in b/config.h.in
index 8df1fc75..16e9f54e 100644
--- a/config.h.in
+++ b/config.h.in
@@ -1,13 +1,17 @@
#pragma once
-// Minor and major version, used to communicate changes to users.
+// Version information
#define VERSION_MAJOR @MultiMC_VERSION_MAJOR@
#define VERSION_MINOR @MultiMC_VERSION_MINOR@
-
-// Build number, channel, and type -- number and channel are used by the updater, type is purely visual
+#define VERSION_HOTFIX @MultiMC_VERSION_HOTFIX@
#define VERSION_BUILD @MultiMC_VERSION_BUILD@
+#define VERSION_TYPE @MultiMC_VERSION_TYPE@
+
+// The version channel. This is used by the updater to determine what channel the current version came from.
#define VERSION_CHANNEL "@MultiMC_VERSION_CHANNEL@"
-#define VERSION_BUILD_TYPE "@MultiMC_VERSION_BUILD_TYPE@"
+
+// A short string identifying this build's platform. For example, "lin64" or "win32".
+#define BUILD_PLATFORM "@MultiMC_BUILD_PLATFORM@"
// URL for the updater's channel
#define CHANLIST_URL "@MultiMC_CHANLIST_URL@"