Crash reporting

This commit is contained in:
Akkadius
2023-01-23 02:12:52 -06:00
parent 140fa3e96e
commit 35b624034d
3 changed files with 110 additions and 13 deletions
+13 -13
View File
@@ -18,14 +18,22 @@
*
*/
#ifndef _EQEMU_VERSION_H
#define _EQEMU_VERSION_H
#ifndef EQEMU_VERSION_H
#define EQEMU_VERSION_H
#define LOGIN_VERSION "0.8.0"
#define EQEMU_PROTOCOL_VERSION "0.3.10"
#define CURRENT_VERSION "2.0"
// Build variables
// these get injected during the build pipeline
#define CURRENT_VERSION "22.1.0-dev" // always append -dev to the current version for custom-builds
#define LOGIN_VERSION "0.8.0"
#define COMPILE_DATE __DATE__
#define COMPILE_TIME __TIME__
#ifndef WIN32
#define LAST_MODIFIED __TIME__
#else
#define LAST_MODIFIED __TIMESTAMP__
#endif
/**
* Every time a Database SQL is added to Github increment CURRENT_BINARY_DATABASE_VERSION
@@ -37,13 +45,5 @@
#define CURRENT_BINARY_DATABASE_VERSION 9217
#define CURRENT_BINARY_BOTS_DATABASE_VERSION 9037
#define COMPILE_DATE __DATE__
#define COMPILE_TIME __TIME__
#ifndef WIN32
#define LAST_MODIFIED __TIME__
#else
#define LAST_MODIFIED __TIMESTAMP__
#endif
#endif