summaryrefslogtreecommitdiffstats
path: root/config.h.in
diff options
context:
space:
mode:
authorAndrew <forkk@forkk.net>2013-12-09 12:04:05 -0600
committerAndrew <forkk@forkk.net>2013-12-09 12:04:05 -0600
commit7f52bed9e3f559adcbcf3f3c1c7ac2251964db8c (patch)
tree52097b57dc7d18ec4e35ef3a8e554af2d91545e8 /config.h.in
parent9410dd042ea62224fa3e0eb3b525abbdf0c316ee (diff)
parent220e07aef4a34dca9f31ae0c5bb994e5c594125d (diff)
downloadMultiMC-7f52bed9e3f559adcbcf3f3c1c7ac2251964db8c.tar
MultiMC-7f52bed9e3f559adcbcf3f3c1c7ac2251964db8c.tar.gz
MultiMC-7f52bed9e3f559adcbcf3f3c1c7ac2251964db8c.tar.lz
MultiMC-7f52bed9e3f559adcbcf3f3c1c7ac2251964db8c.tar.xz
MultiMC-7f52bed9e3f559adcbcf3f3c1c7ac2251964db8c.zip
Merge branch 'feature_updater' into develop
Diffstat (limited to 'config.h.in')
-rw-r--r--config.h.in18
1 files changed, 10 insertions, 8 deletions
diff --git a/config.h.in b/config.h.in
index 34841817..b58dc322 100644
--- a/config.h.in
+++ b/config.h.in
@@ -1,16 +1,18 @@
+// Minor and major version, used to communicate changes to users.
#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_BUILD @MultiMC_VERSION_BUILD@
+#define VERSION_CHANNEL "@MultiMC_VERSION_CHANNEL@"
#define VERSION_BUILD_TYPE "@MultiMC_VERSION_BUILD_TYPE@"
-#define GIT_COMMIT "@MultiMC_GIT_COMMIT@"
-
-#define VERSION_STR "@MultiMC_VERSION_STRING@"
-
-#define x86 1
-#define x64 2
+// URL for the updater's channel
+#define CHANLIST_URL "@MultiMC_CHANLIST_URL@"
-#define ARCH @MultiMC_ARCH@
+// The commit hash of this build
+#define GIT_COMMIT "@MultiMC_GIT_COMMIT@"
-#define USE_HTTPS @MultiMC_USE_HTTPS@
+// This is printed on start to standard output
+#define VERSION_STR "@MultiMC_VERSION_STRING@"